views:

593

answers:

3

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?

+1  A: 

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.

Ariejan
+1  A: 

If I understand what you are trying to do correctly, have a look at FakeWeb.

theIV
+2  A: 

The wiki also has some tips on stubbing.