webrat/spec/api/selects_spec.rb

166 lines
5.6 KiB
Ruby
Raw Normal View History

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
@session = Webrat::TestSession.new
2008-03-02 20:14:52 +00:00
end
2008-04-27 16:45:01 +00:00
it "should fail if option not found" do
@session.response_body = <<-EOS
2008-03-02 20:14:52 +00:00
<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-27 16:45:01 +00:00
it "should fail if option not found in list specified by element name" do
@session.response_body = <<-EOS
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>
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-27 16:45:01 +00:00
it "should fail if specified list not found" do
@session.response_body = <<-EOS
2008-03-02 20:14:52 +00:00
<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-27 16:45:01 +00:00
it "should send value from option" do
@session.response_body = <<-EOS
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>
EOS
2008-07-25 23:11:56 +00:00
@session.should_receive(:post).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-05-17 00:22:41 +00:00
it "should send values with HTML encoded ampersands" do
@session.response_body = <<-EOS
<form method="post" action="/login">
<select name="encoded"><option value="A &amp; B">Encoded</option></select>
<input type="submit" />
</form>
EOS
2008-07-25 23:11:56 +00:00
@session.should_receive(:post).with("/login", "encoded" => "A & B")
2008-05-17 00:22:41 +00:00
@session.selects "Encoded", :from => "encoded"
@session.clicks_button
end
2008-04-27 16:45:01 +00:00
it "should work with empty select lists" do
@session.response_body = <<-EOS
2008-04-13 23:02:35 +00:00
<form method="post" action="/login">
<select name="month"></select>
<input type="submit" />
</form>
EOS
2008-07-25 23:11:56 +00:00
@session.should_receive(:post).with("/login", 'month' => '')
2008-04-13 23:02:35 +00:00
@session.clicks_button
end
2008-03-02 20:14:52 +00:00
2008-04-27 16:45:01 +00:00
it "should work without specifying the field name or label" do
@session.response_body = <<-EOS
<form method="post" action="/login">
<select name="month"><option value="1">January</option></select>
<input type="submit" />
</form>
EOS
2008-07-25 23:11:56 +00:00
@session.should_receive(:post).with("/login", "month" => "1")
@session.selects "January"
@session.clicks_button
end
2008-04-27 16:45:01 +00:00
it "should send value from option in list specified by name" do
@session.response_body = <<-EOS
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>
EOS
2008-07-25 23:11:56 +00:00
@session.should_receive(:post).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-27 16:45:01 +00:00
it "should send value from option in list specified by label" do
@session.response_body = <<-EOS
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>
EOS
2008-07-25 23:11:56 +00:00
@session.should_receive(:post).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-27 16:45:01 +00:00
it "should use option text if no value" do
@session.response_body = <<-EOS
2008-03-02 20:14:52 +00:00
<form method="post" action="/login">
<select name="month"><option>January</option></select>
<input type="submit" />
</form>
EOS
2008-07-25 23:11:56 +00:00
@session.should_receive(:post).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-27 16:45:01 +00:00
it "should find option by regexp" do
@session.response_body = <<-EOS
2008-04-12 21:22:20 +00:00
<form method="post" action="/login">
<select name="month"><option>January</option></select>
<input type="submit" />
</form>
EOS
2008-07-25 23:11:56 +00:00
@session.should_receive(:post).with("/login", "month" => "January")
2008-04-12 21:22:20 +00:00
@session.selects(/jan/i)
@session.clicks_button
end
it "should fail if no option matching the regexp exists" do
@session.response_body = <<-EOS
<form method="post" action="/login">
<select name="month"><option>January</option></select>
<input type="submit" />
</form>
EOS
lambda {
@session.selects(/feb/i)
}.should raise_error
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
@session.response_body = <<-EOS
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>
EOS
2008-07-25 23:11:56 +00:00
@session.should_receive(:post).with("/login", "start_month" => "s1", "end_month" => "e1")
2008-04-12 21:22:20 +00:00
@session.selects(/jan/i, :from => "End Month")
@session.clicks_button
end
2008-03-02 20:14:52 +00:00
end