webrat/spec/public/select_spec.rb

250 lines
7.7 KiB
Ruby
Raw Normal View History

require File.expand_path(File.dirname(__FILE__) + "/../spec_helper")
2008-03-02 20:14:52 +00:00
describe "select" do
it "should fail with a helpful message when option not found" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-03-02 20:14:52 +00:00
<form method="get" action="/login">
<select name="month"><option value="1">January</option></select>
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:30:12 +00:00
lambda { select "February", :from => "month" }.should raise_error(Webrat::NotFoundError,
2009-04-08 00:30:12 +00:00
"The 'February' option was not found in the \"month\" select box")
2008-03-02 20:14:52 +00:00
end
2009-04-08 00:30:12 +00:00
2008-04-27 16:45:01 +00:00
it "should fail if option not found in list specified by element name" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-03-02 20:14:52 +00:00
<form method="get" action="/login">
<select name="month"><option value="1">January</option></select>
<select name="year"><option value="2008">2008</option></select>
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
2008-04-23 14:54:07 +00:00
lambda { select "February", :from => "year" }.should raise_error(Webrat::NotFoundError)
2008-03-02 20:14:52 +00:00
end
2009-04-08 00:30:12 +00:00
2008-04-27 16:45:01 +00:00
it "should fail if specified list not found" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-03-02 20:14:52 +00:00
<form method="get" action="/login">
<select name="month"><option value="1">January</option></select>
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
2008-04-23 14:54:07 +00:00
lambda { select "February", :from => "year" }.should raise_error(Webrat::NotFoundError)
2008-03-02 20:14:52 +00:00
end
2009-04-08 00:30:12 +00:00
it "should fail if the select is disabled" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
<form method="post" action="/login">
<select name="month" disabled="disabled"><option value="1">January</option></select>
<input type="submit" />
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
lambda { select "January", :from => "month" }.should raise_error(Webrat::DisabledFieldError)
end
2009-04-08 00:30:12 +00:00
2008-04-27 16:45:01 +00:00
it "should send value from option" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-03-02 20:14:52 +00:00
<form method="post" action="/login">
<select name="month"><option value="1">January</option></select>
<input type="submit" />
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:37:26 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", "month" => "1")
select "January", :from => "month"
2008-11-23 05:22:49 +00:00
click_button
2008-03-02 20:14:52 +00:00
end
2008-04-13 23:02:35 +00:00
2008-05-17 00:22:41 +00:00
it "should send values with HTML encoded ampersands" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-05-17 00:22:41 +00:00
<form method="post" action="/login">
<select name="encoded"><option value="A &amp; B">Encoded</option></select>
<input type="submit" />
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:37:26 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", "encoded" => "A & B")
select "Encoded", :from => "encoded"
2008-11-23 05:22:49 +00:00
click_button
2008-05-17 00:22:41 +00:00
end
2008-04-27 16:45:01 +00:00
it "should work with empty select lists" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-04-13 23:02:35 +00:00
<form method="post" action="/login">
<select name="month"></select>
<input type="submit" />
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:37:26 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", 'month' => '')
2008-11-23 05:22:49 +00:00
click_button
2008-04-13 23:02:35 +00:00
end
2009-04-08 00:30:12 +00:00
2008-04-27 16:45:01 +00:00
it "should work without specifying the field name or label" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
<form method="post" action="/login">
<select name="month"><option value="1">January</option></select>
<input type="submit" />
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:37:26 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", "month" => "1")
select "January"
2008-11-23 05:22:49 +00:00
click_button
end
2009-04-08 00:30:12 +00:00
2008-04-27 16:45:01 +00:00
it "should send value from option in list specified by name" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-03-02 20:14:52 +00:00
<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>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:37:26 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", "start_month" => "s1", "end_month" => "e1")
select "January", :from => "end_month"
2008-11-23 05:22:49 +00:00
click_button
2008-03-02 20:14:52 +00:00
end
2009-04-08 00:30:12 +00:00
2008-04-27 16:45:01 +00:00
it "should send value from option in list specified by label" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-03-02 20:14:52 +00:00
<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>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:37:26 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", "start_month" => "s1", "end_month" => "e1")
select "January", :from => "End Month"
2008-11-23 05:22:49 +00:00
click_button
2008-03-02 20:14:52 +00:00
end
2009-04-08 00:30:12 +00:00
2008-04-27 16:45:01 +00:00
it "should use option text if no value" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-03-02 20:14:52 +00:00
<form method="post" action="/login">
<select name="month"><option>January</option></select>
<input type="submit" />
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:37:26 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", "month" => "January")
select "January", :from => "month"
2008-11-23 05:22:49 +00:00
click_button
2008-03-02 20:14:52 +00:00
end
2008-04-12 21:22:20 +00:00
2008-04-27 16:45:01 +00:00
it "should find option by regexp" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-04-12 21:22:20 +00:00
<form method="post" action="/login">
<select name="month"><option>January</option></select>
<input type="submit" />
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:37:26 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", "month" => "January")
select /jan/i
2008-11-23 05:22:49 +00:00
click_button
2008-04-12 21:22:20 +00:00
end
2009-04-08 00:30:12 +00:00
it "should fail if no option matching the regexp exists" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
<form method="post" action="/login">
<select name="month"><option>January</option></select>
<input type="submit" />
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:30:12 +00:00
lambda {
select /feb/i
}.should raise_error(Webrat::NotFoundError)
end
2008-04-12 21:22:20 +00:00
2008-04-27 16:45:01 +00:00
it "should find option by regexp in list specified by label" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-04-12 21:22:20 +00:00
<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>
</html>
2008-11-23 05:22:49 +00:00
HTML
2009-04-08 00:37:26 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", "start_month" => "s1", "end_month" => "e1")
select /jan/i, :from => "End Month"
2008-11-23 05:22:49 +00:00
click_button
2008-04-12 21:22:20 +00:00
end
2009-04-08 00:30:12 +00:00
it "should properly handle submitting HTML entities in select values" do
pending "needs bug fix" do
with_html <<-HTML
<html>
<form method="post" action="/login">
<select name="month"><option>Peanut butter &amp; jelly</option></select>
<input type="submit" />
</form>
</html>
HTML
2009-04-08 00:37:26 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", "month" => "Peanut butter & jelly")
click_button
end
end
2009-04-08 00:30:12 +00:00
it "should properly handle locating with HTML entities in select values" do
pending "needs bug fix" do
with_html <<-HTML
<html>
<form method="post" action="/login">
<select name="month"><option>Peanut butter &amp; jelly</option></select>
<input type="submit" />
</form>
</html>
HTML
2009-04-08 00:30:12 +00:00
lambda {
select "Peanut butter & jelly"
}.should_not raise_error(Webrat::NotFoundError)
end
end
it "should submit duplicates selected options as a single value" do
with_html <<-HTML
<html>
<form method="post" action="/login">
<select name="clothes"><option value="pants" selected="selected">pants</option><option value="pants" selected="selected">pants</option></select>
<input type="submit" />
</form>
</html>
HTML
2009-05-11 04:16:38 +00:00
webrat_session.should_receive(:post).with("http://www.example.com/login", "clothes" => "pants")
click_button
end
2008-03-02 20:14:52 +00:00
end