Feedjira:VCR没有录音带

时间:2014-08-26 21:28:49

标签: ruby-on-rails rss feed vcr feedjira

我有一个非常简单的控制器,使用Feedjira从rss中获取一些数据。我想通过记录RSS响应来测试这个控制器。这是控制器代码:

  def index
    @news = Feedjira::Feed.fetch_and_parse URI.encode("http://news.google.com/news/feeds?q=\"#{query}\"&output=rss")
  end

和我的规范测试:

it "should assign news feed", :vcr do
  get :index
  assigns(:news).entries.size.should == 6
  assigns(:news).entries[0].title.should == "First item title"
end

和vcd config的代码:

VCR.configure do |c|
  c.cassette_library_dir = Rails.root.join("spec", "vcr")
  c.hook_into :fakeweb
  c.ignore_localhost = true
end

RSpec.configure do |c|
  c.treat_symbols_as_metadata_keys_with_true_values = true
  c.around(:each, :vcr) do |example|
    name = example.metadata[:full_description].split(/\s+/, 2).join("/").underscore.gsub(/[^\w\/]+/, "_")
    options = example.metadata.slice(:record, :match_requests_on).except(:example_group)
    VCR.use_cassette(name, options) { example.call }
  end
end

由于某些未知原因,VCR cassete未在此特定测试中记录。使用Web调用的所有其他测试都在工作,但是使用Feedjira的这个测试似乎vcr没有检测到网络调用。为什么?

2 个答案:

答案 0 :(得分:0)

根据Feedjira's home page,它使用curb而不是Net::HTTP来发出HTTP请求:

  

Feedjira的一个重要目标是使用快速获取速度   libcurl-multi通过curb gem。

VCR只能使用FakeWeb挂钩Net::HTTP个请求。要加入限制请求,您需要使用hook_into :webmock代替。

答案 1 :(得分:0)

从Feedjira 2.0中的this commit开始,Feedjira使用法拉第,这意味着您可以按照Faraday readme中的测试指南或使用VCR。

Feedjira现在也在内部使用VCR。 Example

例如,你可以在像这样的rspec例子中使用vcr,

it 'fetches and parses the feed' do
  VCR.use_cassette('success') do
    feed = Feedjira::Feed.fetch_and_parse 'http://feedjira.com/blog/feed.xml'
    expect(feed.last_modified).to eq('Fri, 07 Oct 2016 14:37:00 GMT')
  end
end