我有一个使用自定义身份验证 gem 的 Rails 4 应用程序,它根据第三方 API 对用户进行身份验证。该应用程序需要对网站上的大多数操作进行身份验证(访问者可以做的很少)。
我正在尝试使用 VCR 记录在所有集成测试的身份验证期间发出的 api 请求,但我可以在 SO 和 Relish 文档中找到的所有示例仅涵盖如何在“描述执行”规范中使用 Rspec 执行此操作,如此处所引用:
https://www.relishapp.com/vcr/vcr/v/1-6-0/docs/test-frameworks/usage-with-rspec
由于没有客户参与这个项目,我正在使用 Rspec 和 Capybara 而不是 Cucumber 编写集成测试,所以我的测试使用的是“功能/场景”格式,如下所示:
feature 'posts' do
scenario 'a user can log in' do
# use vcr for api request
sign_in_user # refers to a method that handles the api call to log in a user, which is what I would like VCR to record.
expect(page).to have_content("User signed in successfully")
end
end
使用文档中描述的命令:
use_vcr_cassette
在“场景”块内,返回错误:
Failure/Error: use_vcr_cassette
undefined local variable or method `use_vcr_cassette' for #<RSpec::ExampleGroups::Posts:0x007fb858369c38>
我按照文档在我的 spec/rails_helper.rb (包含在 spec/spec_helper.rb 中)中设置了 VCR ......基本上看起来像这样:
require 'vcr'
VCR.configure do |c|
c.cassette_library_dir = 'support/vcr_cassettes'
c.hook_into :webmock
end
显然,将 gem 'vcr' 添加到了我的 Gemfile 开发/测试组中,它是控制台和 binding.pry 中的一个测试内部的东西。
有人在 Rspec 功能中使用过 VCR 吗?或者对我可以做些什么作为解决方法有任何建议?
提前致谢