Reputation: 11069
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?
Upvotes: 7
Views: 6238
Reputation: 25774
If I understand what you are trying to do correctly, have a look at FakeWeb.
Upvotes: 2
Reputation: 11069
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.
Upvotes: 4