5

我无法用 vcr 录制任何内容,我有这样的设置:

spec_helper.rb

require 'vcr'
VCR.configure do |c|
  c.cassette_library_dir = 'spec/cassettes'
  c.hook_into :webmock
  c.configure_rspec_metadata!
  c.default_cassette_options = { :record => :new_episodes }
end

并测试:

describe SomeClass do
  describe '#foo', vcr: true do
    it 'should do http request', do
      expect(subject.do_request).to be_true
    end
  end
end

运行该规范会导致:

.HTTPI executes HTTP GET using the net_http adapter
SOAP request: (...)

就像没有录像机一样。不幸的是,文档中没有任何内容。我发现这里报告了类似的问题,但要求httpi没有任何效果。应该怎么做才能让这个工作?

4

1 回答 1

7

为了让 VCR 记录正确匹配的 SOAP 请求,我需要指定更多匹配器供它使用。由于使用 SOAP,url 端点通常是相同的,但每个请求的正文内容/标题不同。注意,:method、:uri、:headers。你也可以让它在 body 上匹配,但这对于我的用例来说已经足够了,因为我们的 headers 每个请求都非常详细。我正在使用这个:

VCR.configure do |c|
  c.hook_into :webmock # fakeweb fails with savon
  c.ignore_hosts 'www.some-url.com'
  c.configure_rspec_metadata!
  c.ignore_localhost                        = true
  c.cassette_library_dir                    = 'spec/support/vcr_cassettes'
  c.allow_http_connections_when_no_cassette = true
  c.default_cassette_options                = { allow_playback_repeats: true, match_requests_on: [:method, :uri, :headers] }
  # c.debug_logger                            = File.open(Rails.root.join('log/vcr.log'), 'w')
end

然后我用空哈希标记规范,以防我想覆盖全局 VCR 配置,例如:

describe SomeClass do
  describe '#foo', vcr: {} do
    # test something
  end
end

最后,您可以让 VCR/Webmock 忽略的请求越多,调试起来就越容易。因此,如果您有很多 JS 调用或类似的请求,请将这些请求添加到 'ignore_hosts' 选项。我在全局配置中的最后一行显示了如何让 VCR 记录它在做什么,这也很有帮助。

于 2013-12-19T23:28:13.747 回答