2011-02-04 08:47:15 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
require 'capybara/dsl'
|
|
|
|
require 'capybara/rspec_matchers'
|
|
|
|
|
|
|
|
Capybara.app = TestApp
|
|
|
|
|
|
|
|
describe Capybara::RSpecMatchers do
|
|
|
|
include Capybara
|
|
|
|
include Capybara::RSpecMatchers
|
|
|
|
|
|
|
|
describe "have_css matcher" do
|
|
|
|
context "on a string" do
|
|
|
|
context "with should" do
|
|
|
|
it "passes if has_css? returns true" do
|
|
|
|
"<h1>Text</h1>".should have_css('h1')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_css? returns false" do
|
|
|
|
expect do
|
|
|
|
"<h1>Text</h1>".should have_css('h2')
|
|
|
|
end.to raise_error(/expected css "h2" to return something/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with should_not" do
|
|
|
|
it "passes if has_no_css? returns true" do
|
|
|
|
"<h1>Text</h1>".should_not have_css('h2')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_no_css? returns false" do
|
|
|
|
expect do
|
|
|
|
"<h1>Text</h1>".should_not have_css('h1')
|
|
|
|
end.to raise_error(/expected css "h1" not to return anything/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "on a page or node" do
|
|
|
|
before do
|
|
|
|
visit('/with_html')
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with should" do
|
|
|
|
it "passes if has_css? returns true" do
|
|
|
|
page.should have_css('h1')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_css? returns false" do
|
|
|
|
expect do
|
|
|
|
page.should have_css('h1#doesnotexist')
|
2011-02-04 10:40:26 -05:00
|
|
|
end.to raise_error(/expected css "h1#doesnotexist" to return something/)
|
2011-02-04 08:47:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with should_not" do
|
|
|
|
it "passes if has_no_css? returns true" do
|
|
|
|
page.should_not have_css('h1#doesnotexist')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_no_css? returns false" do
|
|
|
|
expect do
|
|
|
|
page.should_not have_css('h1')
|
2011-02-04 10:40:26 -05:00
|
|
|
end.to raise_error(/expected css "h1" not to return anything/)
|
2011-02-04 08:47:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "have_xpath matcher" do
|
|
|
|
context "on a string" do
|
|
|
|
context "with should" do
|
|
|
|
it "passes if has_css? returns true" do
|
|
|
|
"<h1>Text</h1>".should have_xpath('//h1')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_css? returns false" do
|
|
|
|
expect do
|
|
|
|
"<h1>Text</h1>".should have_xpath('//h2')
|
|
|
|
end.to raise_error(%r(expected xpath "//h2" to return something))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with should_not" do
|
|
|
|
it "passes if has_no_css? returns true" do
|
|
|
|
"<h1>Text</h1>".should_not have_xpath('//h2')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_no_css? returns false" do
|
|
|
|
expect do
|
|
|
|
"<h1>Text</h1>".should_not have_xpath('//h1')
|
|
|
|
end.to raise_error(%r(expected xpath "//h1" not to return anything))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "on a page or node" do
|
|
|
|
before do
|
|
|
|
visit('/with_html')
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with should" do
|
|
|
|
it "passes if has_css? returns true" do
|
|
|
|
page.should have_xpath('//h1')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_css? returns false" do
|
|
|
|
expect do
|
|
|
|
page.should have_xpath("//h1[@id='doesnotexist']")
|
|
|
|
end.to raise_error(%r(expected xpath "//h1\[@id='doesnotexist'\]" to return something))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with should_not" do
|
|
|
|
it "passes if has_no_css? returns true" do
|
|
|
|
page.should_not have_xpath('//h1[@id="doesnotexist"]')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_no_css? returns false" do
|
|
|
|
expect do
|
|
|
|
page.should_not have_xpath('//h1')
|
|
|
|
end.to raise_error(%r(expected xpath "//h1" not to return anything))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "have_selector matcher" do
|
|
|
|
context "on a string" do
|
|
|
|
context "with should" do
|
|
|
|
it "passes if has_css? returns true" do
|
|
|
|
"<h1>Text</h1>".should have_selector('//h1')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_css? returns false" do
|
|
|
|
expect do
|
|
|
|
"<h1>Text</h1>".should have_selector('//h2')
|
2011-02-04 10:40:26 -05:00
|
|
|
end.to raise_error(%r(expected xpath "//h2" to return something))
|
2011-02-04 08:47:15 -05:00
|
|
|
end
|
2011-02-04 10:56:27 -05:00
|
|
|
|
|
|
|
it "fails with the selector's failure_message if set" do
|
|
|
|
Capybara.add_selector(:monkey) do
|
|
|
|
xpath { |num| ".//*[contains(@id, 'monkey')][#{num}]" }
|
|
|
|
failure_message { |node| node.all(".//*[contains(@id, 'monkey')]").map { |node| node.text }.sort.join(', ') }
|
|
|
|
end
|
|
|
|
expect do
|
|
|
|
'<h1 id="monkey_paul">Monkey John</h1>'.should have_selector(:monkey, 14)
|
|
|
|
end.to raise_error("Monkey John")
|
|
|
|
end
|
2011-02-04 08:47:15 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context "with should_not" do
|
|
|
|
it "passes if has_no_css? returns true" do
|
2011-02-04 10:40:26 -05:00
|
|
|
"<h1>Text</h1>".should_not have_selector(:css, 'h2')
|
2011-02-04 08:47:15 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_no_css? returns false" do
|
|
|
|
expect do
|
2011-02-04 10:40:26 -05:00
|
|
|
"<h1>Text</h1>".should_not have_selector(:css, 'h1')
|
|
|
|
end.to raise_error(%r(expected css "h1" not to return anything))
|
2011-02-04 08:47:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "on a page or node" do
|
|
|
|
before do
|
|
|
|
visit('/with_html')
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with should" do
|
|
|
|
it "passes if has_css? returns true" do
|
|
|
|
page.should have_selector('//h1')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_css? returns false" do
|
|
|
|
expect do
|
|
|
|
page.should have_selector("//h1[@id='doesnotexist']")
|
2011-02-04 10:40:26 -05:00
|
|
|
end.to raise_error(%r(expected xpath "//h1\[@id='doesnotexist'\]" to return something))
|
2011-02-04 08:47:15 -05:00
|
|
|
end
|
2011-02-04 10:56:27 -05:00
|
|
|
|
|
|
|
it "fails with the selector's failure_message if set" do
|
|
|
|
Capybara.add_selector(:monkey) do
|
|
|
|
xpath { |num| ".//*[contains(@id, 'monkey')][#{num}]" }
|
|
|
|
failure_message { |node| node.all(".//*[contains(@id, 'monkey')]").map { |node| node.text }.sort.join(', ') }
|
|
|
|
end
|
|
|
|
expect do
|
|
|
|
page.should have_selector(:monkey, 14)
|
|
|
|
end.to raise_error("Monkey John, Monkey Paul")
|
|
|
|
end
|
2011-02-04 08:47:15 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context "with should_not" do
|
|
|
|
it "passes if has_no_css? returns true" do
|
2011-02-04 10:40:26 -05:00
|
|
|
page.should_not have_selector(:css, 'h1#doesnotexist')
|
2011-02-04 08:47:15 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if has_no_css? returns false" do
|
|
|
|
expect do
|
2011-02-04 10:40:26 -05:00
|
|
|
page.should_not have_selector(:css, 'h1')
|
|
|
|
end.to raise_error(%r(expected css "h1" not to return anything))
|
2011-02-04 08:47:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|