webrat/spec/selects_spec.rb

144 lines
5.1 KiB
Ruby
Raw Normal View History

2008-04-23 14:54:07 +00:00
require File.expand_path(File.dirname(__FILE__) + "/spec_helper")
2008-03-02 20:14:52 +00:00
2008-04-23 14:54:07 +00:00
describe "selects" do
before do
2008-03-02 20:14:52 +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-23 14:54:07 +00:00
it "should_fail_if_option_not_found" do
2008-03-02 20:14:52 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="get" action="/login">
<select name="month"><option value="1">January</option></select>
</form>
EOS
2008-04-07 04:52:49 +00:00
2008-04-23 14:54:07 +00:00
lambda { @session.selects "February", :from => "month" }.should raise_error
2008-03-02 20:14:52 +00:00
end
2008-04-23 14:54:07 +00:00
it "should_fail_if_option_not_found_in_list_specified_by_element_name" do
2008-03-02 20:14:52 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="get" action="/login">
<select name="month"><option value="1">January</option></select>
<select name="year"><option value="2008">2008</option></select>
</form>
EOS
2008-04-23 14:54:07 +00:00
lambda { @session.selects "February", :from => "year" }.should raise_error
2008-03-02 20:14:52 +00:00
end
2008-04-23 14:54:07 +00:00
it "should_fail_if_specified_list_not_found" do
2008-03-02 20:14:52 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="get" action="/login">
<select name="month"><option value="1">January</option></select>
</form>
EOS
2008-04-23 14:54:07 +00:00
lambda { @session.selects "February", :from => "year" }.should raise_error
2008-03-02 20:14:52 +00:00
end
2008-04-23 14:54:07 +00:00
it "should_send_value_from_option" do
2008-03-02 20:14:52 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<select name="month"><option value="1">January</option></select>
<input type="submit" />
</form>
EOS
@session.expects(:post_via_redirect).with("/login", "month" => "1")
2008-04-07 04:52:49 +00:00
@session.selects "January", :from => "month"
2008-03-02 20:14:52 +00:00
@session.clicks_button
end
2008-04-13 23:02:35 +00:00
2008-04-23 14:54:07 +00:00
it "should_work_with_empty_select_lists" do
2008-04-13 23:02:35 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<select name="month"></select>
<input type="submit" />
</form>
EOS
@session.expects(:post_via_redirect).with("/login", 'month' => '')
@session.clicks_button
end
2008-03-02 20:14:52 +00:00
2008-04-23 14:54:07 +00:00
it "should_work_without_specifying_the_field_name_or_label" do
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<select name="month"><option value="1">January</option></select>
<input type="submit" />
</form>
EOS
@session.expects(:post_via_redirect).with("/login", "month" => "1")
@session.selects "January"
@session.clicks_button
end
2008-04-23 14:54:07 +00:00
it "should_send_value_from_option_in_list_specified_by_name" do
2008-03-02 20:14:52 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<select name="start_month"><option value="s1">January</option></select>
<select name="end_month"><option value="e1">January</option></select>
<input type="submit" />
</form>
EOS
@session.expects(:post_via_redirect).with("/login", "start_month" => "s1", "end_month" => "e1")
2008-03-02 20:14:52 +00:00
@session.selects "January", :from => "end_month"
@session.clicks_button
end
2008-04-23 14:54:07 +00:00
it "should_send_value_from_option_in_list_specified_by_label" do
2008-03-02 20:14:52 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<label for="start_month">Start Month</label>
<select id="start_month" name="start_month"><option value="s1">January</option></select>
<label for="end_month">End Month</label>
<select id="end_month" name="end_month"><option value="e1">January</option></select>
<input type="submit" />
</form>
EOS
@session.expects(:post_via_redirect).with("/login", "start_month" => "s1", "end_month" => "e1")
2008-03-02 20:14:52 +00:00
@session.selects "January", :from => "End Month"
@session.clicks_button
end
2008-04-23 14:54:07 +00:00
it "should_use_option_text_if_no_value" do
2008-03-02 20:14:52 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<select name="month"><option>January</option></select>
<input type="submit" />
</form>
EOS
@session.expects(:post_via_redirect).with("/login", "month" => "January")
2008-04-07 04:52:49 +00:00
@session.selects "January", :from => "month"
2008-03-02 20:14:52 +00:00
@session.clicks_button
end
2008-04-12 21:22:20 +00:00
2008-04-23 14:54:07 +00:00
it "should_find_option_by_regexp" do
2008-04-12 21:22:20 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<select name="month"><option>January</option></select>
<input type="submit" />
</form>
EOS
@session.expects(:post_via_redirect).with("/login", "month" => "January")
@session.selects(/jan/i)
@session.clicks_button
end
2008-04-23 14:54:07 +00:00
it "should_find_option_by_regexp_in_list_specified_by_label" do
2008-04-12 21:22:20 +00:00
@response.stubs(:body).returns(<<-EOS)
<form method="post" action="/login">
<label for="start_month">Start Month</label>
<select id="start_month" name="start_month"><option value="s1">January</option></select>
<label for="end_month">End Month</label>
<select id="end_month" name="end_month"><option value="e1">January</option></select>
<input type="submit" />
</form>
EOS
@session.expects(:post_via_redirect).with("/login", "start_month" => "s1", "end_month" => "e1")
@session.selects(/jan/i, :from => "End Month")
@session.clicks_button
end
2008-03-02 20:14:52 +00:00
end