使用 VCR / WebMock 时如何允许 Web 请求?

发布于 2024-11-27 03:44:19 字数 276 浏览 0 评论 0原文

我目前正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

舂唻埖巳落 2024-12-04 03:44:19

您可以使用 Cucumber 的 BeforeAfter 挂钩来完成此操作。只需使用类似这样的方法禁用 VCR:

Before('@live') do
  VCR.eject_cassette
  VCR.turn_off!
end

这可能具体取决于您如何将 VCR 与黄瓜测试集成。

You can do this with cucumber's Before and After hooks. Just disable VCR using something like this:

Before('@live') do
  VCR.eject_cassette
  VCR.turn_off!
end

This may be dependent on exactly how you are integrating VCR with your cucumber tests though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文