webrat/spec/chooses_spec.rb

84 lines
2.8 KiB
Ruby
Raw Normal View History

2008-04-23 14:54:07 +00:00
require File.expand_path(File.dirname(__FILE__) + "/spec_helper")
2008-04-07 17:48:45 +00:00
2008-04-23 14:54:07 +00:00
describe "chooses" do
before do
2008-04-07 17:48:45 +00:00
@session = ActionController::Integration::Session.new
@session.stubs(:assert_response)
@session.stubs(:get_via_redirect)
@session.stubs(:response).returns(@response=mock)
end
2008-04-27 16:45:01 +00:00
it "should fail if no radio buttons found" do
2008-04-07 17:48:45 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
</form>
EOS
2008-04-23 14:54:07 +00:00
lambda { @session.chooses "first option" }.should raise_error
2008-04-07 17:48:45 +00:00
end
2008-04-27 16:45:01 +00:00
it "should fail if input is not a radio button" do
2008-04-07 17:48:45 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<input type="text" name="first_option" />
</form>
EOS
2008-04-23 14:54:07 +00:00
lambda { @session.chooses "first_option" }.should raise_error
2008-04-07 17:48:45 +00:00
end
2008-04-27 16:45:01 +00:00
it "should check rails style radio buttons" do
2008-04-07 17:48:45 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="get" action="/login">
<input id="user_gender_male" name="user[gender]" type="radio" value="M" />
<label for="user_gender_male">Male</label>
<input id="user_gender_female" name="user[gender]" type="radio" value="F" />
<label for="user_gender_female">Female</label>
<input type="submit" />
</form>
EOS
@session.expects(:get_via_redirect).with("/login", "user" => {"gender" => "M"})
@session.chooses "Male"
@session.clicks_button
end
2008-04-27 16:45:01 +00:00
it "should only submit last chosen value" do
2008-04-07 17:48:45 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="get" action="/login">
<input id="user_gender_male" name="user[gender]" type="radio" value="M" />
<label for="user_gender_male">Male</label>
<input id="user_gender_female" name="user[gender]" type="radio" value="F" />
<label for="user_gender_female">Female</label>
<input type="submit" />
</form>
EOS
@session.expects(:get_via_redirect).with("/login", "user" => {"gender" => "M"})
@session.chooses "Female"
@session.chooses "Male"
@session.clicks_button
end
2008-04-27 16:45:01 +00:00
it "should result in the value on being posted if not specified" do
2008-04-07 17:48:45 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<input type="radio" name="first_option" />
<input type="submit" />
</form>
EOS
@session.expects(:post_via_redirect).with("/login", "first_option" => "on")
@session.chooses "first_option"
@session.clicks_button
end
2008-04-27 16:45:01 +00:00
it "should result in the value on being posted if not specified and checked by default" do
2008-04-07 17:48:45 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<input type="radio" name="first_option" checked="checked"/>
<input type="submit" />
</form>
EOS
@session.expects(:post_via_redirect).with("/login", "first_option" => "on")
@session.clicks_button
end
2008-04-27 16:45:01 +00:00
end