webrat/spec/api/within_spec.rb

57 lines
1.4 KiB
Ruby

require File.expand_path(File.dirname(__FILE__) + "/../spec_helper")
describe "within" do
before do
@session = Webrat::TestSession.new
end
it "should click links within a scope" do
@session.response_body = <<-EOS
<a href="/page1">Link</a>
<div id="container">
<a href="/page2">Link</a>
</div>
EOS
@session.should_receive(:get).with("/page2", {})
@session.within "#container" do
@session.click_link "Link"
end
end
it "should submit forms within a scope" do
@session.response_body = <<-EOS
<form id="form1" action="/form1">
<label>Email: <input type="text" name="email" />
<input type="submit" value="Add" />
</form>
<form id="form2" action="/form2">
<label>Email: <input type="text" name="email" />
<input type="submit" value="Add" />
</form>
EOS
@session.should_receive(:get).with("/form2", "email" => "test@example.com")
@session.within "#form2" do
@session.fill_in "Email", :with => "test@example.com"
@session.click_button
end
end
it "should not find buttons outside of the scope" do
@session.response_body = <<-EOS
<form action="/form1">
<input type="submit" value="Add" />
</form>
<form id="form2" action="/form2">
</form>
EOS
@session.within "#form2" do
lambda {
@session.click_button
}.should raise_error
end
end
end