如何使用外部服务验证来存根模型

时间:2017-11-20 12:55:24

标签: ruby-on-rails validation rspec stub

此处我们有一个具有多个验证的客户模型,其中一个验证访问外部服务以验证此人是否存在。

在这里我们测试所有验证:

describe Customer do

   it 'is not valid without a name' do
      customer = build_stubbed(:customer, name: nil)
      customer.valid?
      asserts...
   end

   it 'is not valid without a full name' do
      customer = build_stubbed(:customer, name: 'Test')
      customer.valid?
      asserts...
   end

   if 'should check if user really exists' do
      customer = build_stubbed(:customer, doc_id: '00000000')
      customer.valid?
      asserts....
   end

   other tests...

最后一项使用doc_id测试外部服务验证,以检查该人是否存在,但是这里每个测试都运行所有验证,所以我应该在之前使用stub_request服务请求还是在每次测试中将其存根?

1 个答案:

答案 0 :(得分:1)

您应该使用context来指定哪个测试使用stup,哪个不使用stup。例如,建议here。这样,您就可以拥有方法存根的上下文,并在其他上下文中使用外部服务测试验证。