我有一个非常简单的控制器,它使用 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 配置的代码:
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 盒式磁带。所有其他使用网络调用的测试都可以正常工作,但是在使用 Feedjira 的测试中,vcr 似乎没有检测到网络调用。为什么?