我正在使用stubby4j来存根一些服务端点。我目前正在对那些非常重且模拟起来不那么复杂的那些进行存根,但我想为其余的端点调用真正的服务。
像这样的东西:
/heavy-call-1 => stub service
/heavy-call-2 => stub service
/lightweight-call-1 => real service
/lightweight-call-2 => real service
有没有办法用这个工具来实现这一点,或者我应该考虑使用不同的工具吗?
你实际上可以让 stubby 调用真正的服务并第一次记录响应,所以接下来的请求将使用这个记录的响应。您可以通过在 yaml 文件中的存根响应正文中指定一个 URL,如下所示:
- request:
url: /1.1/direct_messages.json
query:
since_id: 240136858829479935
count: 1
response:
headers:
content-type: application/json
body: https://api.twitter.com/1.1/direct_messages.json?since_id=240136858829479935&count=1
您可以在 stubby github 文档中找到更多信息:https ://stubby4j.com/#key-features和https://stubby4j.com/docs/http_endpoint_configuration_howto.html#record-and-replay
希望这可以帮助!
你在使用 webpack 吗?如果是这样,您可以匹配不同的域。例如:
const config = merge(common, {
devtool: 'inline-source-map',
mode: 'development',
devServer: {
historyApiFallback: true,
port: 3000,
hot: true,
proxy: [
{ path: '/heavy-all-1 ', target: 'http://localhost:8882' }, //stubby
],
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('development'),
}),
],
});
并且没有描述前缀的 URL 不会被存根。