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

214 lines
5.6 KiB
Ruby
Raw Normal View History

module Capybara
module RSpecMatchers
2013-02-16 09:02:32 +00:00
class Matcher
include ::RSpec::Matchers::Composable if defined?(::RSpec::Expectations::Version) && RSpec::Expectations::Version::STRING.to_f >= 3.0
2013-02-16 09:02:32 +00:00
def wrap(actual)
if actual.respond_to?("has_selector?")
actual
else
Capybara.string(actual.to_s)
end
end
end
class HaveSelector < Matcher
attr_reader :failure_message, :failure_message_when_negated
def initialize(*args)
@args = args
end
def matches?(actual)
2012-07-09 11:39:57 +00:00
wrap(actual).assert_selector(*@args)
rescue Capybara::ExpectationNotMet => e
@failure_message = e.message
return false
end
def does_not_match?(actual)
2012-07-09 11:39:57 +00:00
wrap(actual).assert_no_selector(*@args)
rescue Capybara::ExpectationNotMet => e
@failure_message_when_negated = e.message
return false
2011-02-06 19:07:12 +00:00
end
def description
"have #{query.description}"
end
def query
@query ||= Capybara::Query.new(*@args)
end
# RSpec 2 compatibility:
alias_method :failure_message_for_should, :failure_message
alias_method :failure_message_for_should_not, :failure_message_when_negated
end
2013-02-16 09:02:32 +00:00
class HaveText < Matcher
2013-03-03 23:04:23 +00:00
attr_reader :type, :content, :options
attr_reader :failure_message, :failure_message_when_negated
2013-03-03 23:04:23 +00:00
def initialize(*args)
@args = args.dup
# are set just for backwards compatability
@type = args.shift if args.first.is_a?(Symbol)
@content = args.shift
@options = (args.first.is_a?(Hash))? args.first : {}
end
def matches?(actual)
wrap(actual).assert_text(*@args)
rescue Capybara::ExpectationNotMet => e
@failure_message = e.message
return false
end
def does_not_match?(actual)
wrap(actual).assert_no_text(*@args)
rescue Capybara::ExpectationNotMet => e
@failure_message_when_negated = e.message
return false
end
def description
2013-03-03 23:04:23 +00:00
"text #{format(content)}"
end
2013-03-03 23:04:23 +00:00
def format(content)
content = Capybara::Helpers.normalize_whitespace(content) unless content.is_a? Regexp
content.inspect
end
# RSpec 2 compatibility:
alias_method :failure_message_for_should, :failure_message
alias_method :failure_message_for_should_not, :failure_message_when_negated
end
2013-02-16 09:02:32 +00:00
class HaveTitle < Matcher
attr_reader :title
attr_reader :failure_message, :failure_message_when_negated
def initialize(*args)
@args = args
# are set just for backwards compatability
@title = args.first
2013-02-16 09:02:32 +00:00
end
def matches?(actual)
wrap(actual).assert_title(*@args)
rescue Capybara::ExpectationNotMet => e
@failure_message = e.message
return false
2013-02-16 09:02:32 +00:00
end
def does_not_match?(actual)
wrap(actual).assert_no_title(*@args)
rescue Capybara::ExpectationNotMet => e
@failure_message_when_negated = e.message
return false
2013-02-16 09:02:32 +00:00
end
def description
"have title #{title.inspect}"
2013-02-16 09:02:32 +00:00
end
# RSpec 2 compatibility:
alias_method :failure_message_for_should, :failure_message
alias_method :failure_message_for_should_not, :failure_message_when_negated
2013-02-16 09:02:32 +00:00
end
class BecomeClosed
def initialize(options)
@wait_time = Capybara::Query.new(options).wait
end
def matches?(window)
@window = window
start_time = Capybara::Helpers.monotonic_time
2014-06-26 18:55:45 +00:00
while window.exists?
return false if (Capybara::Helpers.monotonic_time - start_time) > @wait_time
sleep 0.05
end
2014-06-26 18:55:45 +00:00
true
end
def failure_message
"expected #{@window.inspect} to become closed after #{@wait_time} seconds"
end
def failure_message_when_negated
"expected #{@window.inspect} not to become closed after #{@wait_time} seconds"
end
# RSpec 2 compatibility:
alias_method :failure_message_for_should, :failure_message
alias_method :failure_message_for_should_not, :failure_message_when_negated
end
def have_selector(*args)
HaveSelector.new(*args)
end
def have_xpath(xpath, options={})
HaveSelector.new(:xpath, xpath, options)
end
2013-03-03 23:04:23 +00:00
def have_css(css, options={})
HaveSelector.new(:css, css, options)
end
2011-02-10 16:15:28 +00:00
2013-03-03 23:04:23 +00:00
def have_text(*args)
HaveText.new(*args)
end
2013-03-03 23:04:23 +00:00
alias_method :have_content, :have_text
2011-02-13 16:04:13 +00:00
def have_title(title, options = {})
HaveTitle.new(title, options)
2013-02-16 09:02:32 +00:00
end
def have_link(locator, options={})
HaveSelector.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, options={})
HaveSelector.new(:button, locator, options)
end
def have_field(locator, options={})
HaveSelector.new(:field, locator, options)
end
def have_checked_field(locator, options={})
HaveSelector.new(:field, locator, options.merge(:checked => true))
end
def have_unchecked_field(locator, options={})
HaveSelector.new(:field, locator, options.merge(:unchecked => true))
2011-03-25 09:54:52 +00:00
end
def have_select(locator, options={})
HaveSelector.new(:select, locator, options)
end
def have_table(locator, options={})
HaveSelector.new(:table, locator, options)
end
##
# Wait for window to become closed.
# @example
# expect(window).to become_closed(wait: 0.8)
# @param options [Hash] optional param
# @option options [Numeric] :wait (Capybara.default_max_wait_time) Maximum wait time
def become_closed(options = {})
BecomeClosed.new(options)
end
end
end