require File.expand_path(File.dirname(__FILE__) + "/../spec_helper") describe "select" do it "should fail with a helpful message when option not found" do with_html <<-HTML
HTML lambda { select "February", :from => "month" }.should raise_error(Webrat::NotFoundError, "The 'February' option was not found in the \"month\" select box") end it "should fail if option not found in list specified by element name" do with_html <<-HTML
HTML lambda { select "February", :from => "year" }.should raise_error(Webrat::NotFoundError) end it "should fail if specified list not found" do with_html <<-HTML
HTML lambda { select "February", :from => "year" }.should raise_error(Webrat::NotFoundError) end it "should fail if the select is disabled" do with_html <<-HTML
HTML lambda { select "January", :from => "month" }.should raise_error(Webrat::DisabledFieldError) end it "should send value from option" do with_html <<-HTML
HTML webrat_session.should_receive(:post).with("/login", "month" => "1") select "January", :from => "month" click_button end it "should send values with HTML encoded ampersands" do with_html <<-HTML
HTML webrat_session.should_receive(:post).with("/login", "encoded" => "A & B") select "Encoded", :from => "encoded" click_button end it "should work with empty select lists" do with_html <<-HTML
HTML webrat_session.should_receive(:post).with("/login", 'month' => '') click_button end it "should work without specifying the field name or label" do with_html <<-HTML
HTML webrat_session.should_receive(:post).with("/login", "month" => "1") select "January" click_button end it "should send value from option in list specified by name" do with_html <<-HTML
HTML webrat_session.should_receive(:post).with("/login", "start_month" => "s1", "end_month" => "e1") select "January", :from => "end_month" click_button end it "should send value from option in list specified by label" do with_html <<-HTML
HTML webrat_session.should_receive(:post).with("/login", "start_month" => "s1", "end_month" => "e1") select "January", :from => "End Month" click_button end it "should use option text if no value" do with_html <<-HTML
HTML webrat_session.should_receive(:post).with("/login", "month" => "January") select "January", :from => "month" click_button end it "should find option by regexp" do with_html <<-HTML
HTML webrat_session.should_receive(:post).with("/login", "month" => "January") select /jan/i click_button end it "should fail if no option matching the regexp exists" do with_html <<-HTML
HTML lambda { select /feb/i }.should raise_error(Webrat::NotFoundError) end it "should find option by regexp in list specified by label" do with_html <<-HTML
HTML webrat_session.should_receive(:post).with("/login", "start_month" => "s1", "end_month" => "e1") select /jan/i, :from => "End Month" click_button end it "should properly handle submitting HTML entities in select values" do pending "needs bug fix" do with_html <<-HTML
HTML webrat_session.should_receive(:post).with("/login", "month" => "Peanut butter & jelly") click_button end end it "should properly handle locating with HTML entities in select values" do pending "needs bug fix" do with_html <<-HTML
HTML lambda { select "Peanut butter & jelly" }.should_not raise_error(Webrat::NotFoundError) end end end