Search code examples
ruby-on-railstestingcucumberwebrat

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?


Solution

  • 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.