teamcapybara--capybara/lib/capybara/rspec/matchers.rb

147 lines
3.5 KiB
Ruby
Raw Normal View History

module Capybara
module RSpecMatchers
class HaveSelector
def initialize(*args)
@args = args
end
def matches?(actual)
@actual = wrap(actual)
@actual.has_selector?(*@args)
end
def does_not_match?(actual)
@actual = wrap(actual)
@actual.has_no_selector?(*@args)
end
def failure_message_for_should
2011-02-10 15:59:26 +00:00
if normalized.failure_message
2011-02-10 16:15:28 +00:00
normalized.failure_message.call(@actual, normalized)
else
2011-02-06 19:07:12 +00:00
"expected #{selector_name} to return something"
end
end
def failure_message_for_should_not
2011-02-06 19:07:12 +00:00
"expected #{selector_name} not to return anything"
end
def selector_name
2011-02-10 15:59:26 +00:00
name = "#{normalized.name} #{normalized.locator.inspect}"
name << " with text #{normalized.options[:text].inspect}" if normalized.options[:text]
2011-02-06 19:07:12 +00:00
name
end
def wrap(actual)
if actual.respond_to?("has_selector?")
actual
else
Capybara.string(actual.to_s)
end
end
def normalized
@normalized ||= Capybara::Selector.normalize(*@args)
end
end
class HaveMatcher
attr_reader :name, :locator, :options, :failure_message, :actual
def initialize(name, locator, options={}, &block)
@name = name
@locator = locator
@options = options
@failure_message = block
end
def arguments
if options.empty? then [locator] else [locator, options] end
end
def matches?(actual)
@actual = wrap(actual)
@actual.send(:"has_#{name}?", *arguments)
end
def does_not_match?(actual)
@actual = wrap(actual)
@actual.send(:"has_no_#{name}?", *arguments)
end
def failure_message_for_should
if failure_message
failure_message.call(actual, self)
else
"expected #{selector_name} to return something"
end
end
def failure_message_for_should_not
"expected #{selector_name} not to return anything"
end
def selector_name
selector_name = "#{name} #{locator.inspect}"
selector_name << " with text #{options[:text].inspect}" if options[:text]
selector_name
end
def wrap(actual)
if actual.respond_to?("has_selector?")
actual
else
Capybara.string(actual.to_s)
end
end
end
def have_selector(*args)
HaveSelector.new(*args)
end
def have_xpath(xpath, options={})
HaveMatcher.new(:xpath, xpath, options)
end
def have_css(css, options={})
HaveMatcher.new(:css, css, options)
end
2011-02-10 16:15:28 +00:00
def have_content(text)
HaveMatcher.new(:content, text.to_s) do |page, matcher|
%(expected there to be content #{matcher.locator.inspect} in #{page.text.inspect})
end
2011-02-10 16:15:28 +00:00
end
2011-02-13 16:04:13 +00:00
def have_link(locator, options={})
HaveMatcher.new(:link, locator, options)
2011-02-13 16:04:13 +00:00
end
2011-03-25 09:54:52 +00:00
def have_button(locator)
HaveMatcher.new(:button, locator)
end
def have_field(locator, options={})
HaveMatcher.new(:field, locator, options)
end
def have_checked_field(locator)
HaveMatcher.new(:checked_field, locator)
end
def have_unchecked_field(locator)
HaveMatcher.new(:unchecked_field, locator)
2011-03-25 09:54:52 +00:00
end
def have_select(locator, options={})
HaveMatcher.new(:select, locator, options)
end
def have_table(locator, options={})
HaveMatcher.new(:table, locator, options)
end
end
end