使用 VCR / WebMock 时如何允许 Web 请求?
我目前正在使用 RSpec2、Cucumber 和 VCR(通过 WebMock),一切都运行良好。
对于 VCR,通常所有请求都会被记录下来,然后根据记录的磁带重放。
现在我想在某些情况下允许真正的网络请求:
- 在 Cucumber 中,我设置了一个“实时”配置文件,它运行任何标记有
@live
的测试。对于这些测试(并且仅限于这些测试),我希望允许真正的网络请求。 - 我想时不时地针对真实的 api 运行测试并忽略录音
I'm currently using RSpec2, Cucumber and VCR (via WebMock), and everything's working great.
With VCR normally all requests are recorded and then replayed against the recorded cassettes.
Now I want to allow real web requests in some scenarios:
- In Cucumber, I've setup a "live" profile which runs any test tagged with
@live
. For these tests – and these tests only – I'd like to allow real web requests. - I want from time to time run the tests against the real api and ignore the recordings
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Cucumber 的
Before
和After
挂钩来完成此操作。只需使用类似这样的方法禁用 VCR:这可能具体取决于您如何将 VCR 与黄瓜测试集成。
You can do this with cucumber's
Before
andAfter
hooks. Just disable VCR using something like this:This may be dependent on exactly how you are integrating VCR with your cucumber tests though.