How to test a redirect with Shoulda
I was trying to test if the controller was redirecting but I was getting a 200 (success) instead of 302. With a standard Unit::Test it was working ok. Then, by printing the response body I so that with Shoulda I was getting a 200 with the text:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html><body>You are being <a href="http://test.host/configurations/46/edit">redirected</a>.</body></html> |
So I decided to test if the response was a link (a tag) with redirected as text of the link:
assert_select "a", "redirected"
This is the code showing the same test, one with Unit::Test, the other with Shoulda:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
context "should destroy participation" do | |
setup do | |
@configuration = Factory.create :configuration, :status => 'LIVE' | |
@p = Factory.create :participation, :configuration => @configuration | |
@admin = Factory.create :participant, :admin => true | |
login_as @admin | |
end | |
should "delete :destroy participations" do | |
assert_difference('Participation.count', -1) do | |
delete :destroy, :id => @p.to_param | |
end | |
assert_select "a", "redirected" | |
end | |
end | |
test "should destroy" do | |
@configuration = Factory.create :configuration, :status => 'LIVE' | |
@p = Factory.create :participation, :configuration => @configuration | |
@admin = Factory.create :participant, :admin => true | |
login_as @admin | |
assert_difference('Participation.count', -1) do | |
delete :destroy, :id => @p.to_param | |
end | |
assert_redirected_to(:controller => "configurations", | |
:action => "edit", | |
:id => @configuration.id) | |
assert_equal 'The host has been unassociated.', flash[:notice] | |
end |