0

我已经在互联网上搜索了这个问题的答案,包括关于 SO 的大多数其他“建议”问题。

我在 rspec 中配置了 VCR,但是在运行测试时,VCR 从不记录磁带(磁带目录保持为空)并且每次都运行 HTTP 请求。

我的 VCR 配置如下所示:

VCR.configure do |c|
  c.cassette_library_dir = Rails.root.join('spec', 'vcr_cassettes')
  c.hook_into :faraday
  c.default_cassette_options = { record: :new_episodes }
  c.configure_rspec_metadata!
  c.allow_http_connections_when_no_cassette = true
  c.ignore_hosts 'api.linkedin.com'
  c.debug_logger = $stderr
end

我正在使用faraday,因为我正在使用的 LinkedIn gem ( https://github.com/bobbrez/linkedin2 ) 已经faraday用于发出请求。我正在运行的测试规范如下所示:

describe API::V1::Connections, type: :request do
  subject { LinkedIn::Client.new scope: %i(r_network) }

  describe 'GET /api/v1/connections/:username', vcr: { cassette_name: 'profile' } do
    it 'fetches the user profile' do
      profile = subject.profile
      expect(profile).not_to be_nil
    end
  end
end

它每次都通过,但只有在每次都发出 API 请求之后。VCR 调试日志在每次运行规范时都显示完全相同的内容:

[Cassette: 'profile'] Initialized with options: {:record=>:new_episodes, :match_requests_on=>[:method, :uri, :headers], :allow_unused_http_interactions=>true, :serialize_with=>:yaml, :persist_with=>:file_system}
[faraday] Handling request: [get https://api.linkedin.com/v1/people/~:(connections)?oauth2_access_token=xxxx&format=json {"User-Agent"=>["Faraday v0.9.0"]}] (disabled: false)
[faraday] Identified request type (ignored) for [get https://api.linkedin.com/v1/people/~:(connections)?oauth2_access_token=xxxx&format=json {"User-Agent"=>["Faraday v0.9.0"]}]

它似乎应该录制磁带,但目录.yml中没有出现任何文件spec/vcr_cassettes

(使用 Rails 4、rspec 3、vcr 2.9)

4

1 回答 1

3

您已将 VCR 配置为忽略'api.linkedin.com'使用此行发出的请求:

c.ignore_hosts 'api.linkedin.com'

...这会阻止它记录这些请求。

于 2014-06-20T06:46:54.080 回答