Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to mock/stub a model in Cucumber tests

The scenario is as follows. My Order model has an after_create that contacts a remote payment gateway to retrieve a payment URL. In my Cucumber tests I don't want to perform this action, but return an arbitrary URL. My current cucumber tests looks like this:

Given there is a product "Product X" When I enter my credentials And I click "Order Now" Then I should be redirected to "arbitrary url"

The problem is where/how do I make sure that my order model sets the url correctly and does not contact the remote payment gateway?

like image 589
Ariejan Avatar asked Sep 07 '09 09:09

Ariejan


2 Answers

The wiki also has some tips on stubbing.

like image 191
Aslak Hellesøy Avatar answered Sep 18 '22 23:09

Aslak Hellesøy


In features/support/env.rb I monkey-patched my Order model to set the arbitrary URL. This could possible be done with Mocha or something else as well, but there is not point in this case.

In my steps I can check the response for the correct redirect like this:

Then /^I should be redirected to the payment gateway$/ do
  response.status.should eql("302 Found")
  response.location.should eql(Order.last.payment_url)
end

Hope this helps for others as well. I'd still like to know if there's a better/cleaner way of achieving this goal.

like image 36
Ariejan Avatar answered Sep 21 '22 23:09

Ariejan