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

354 lines
10 KiB
Ruby
Raw Normal View History

2016-03-08 00:52:19 +00:00
# frozen_string_literal: true
module Capybara
module RSpecMatchers
2013-02-16 09:02:32 +00:00
class Matcher
if defined?(::RSpec::Expectations::Version)
require 'capybara/rspec/compound'
include ::Capybara::RSpecMatchers::Compound
end
2016-11-21 21:58:12 +00:00
attr_reader :failure_message, :failure_message_when_negated
2013-02-16 09:02:32 +00:00
def wrap(actual)
@context_el = if actual.respond_to?("has_selector?")
2013-02-16 09:02:32 +00:00
actual
else
Capybara.string(actual.to_s)
end
end
2016-11-18 18:56:47 +00:00
2016-11-18 23:22:04 +00:00
private
def wrap_matches?(actual)
2016-11-18 18:56:47 +00:00
yield(wrap(actual))
rescue Capybara::ExpectationNotMet => e
@failure_message = e.message
return false
end
2016-11-18 23:22:04 +00:00
def wrap_does_not_match?(actual)
2016-11-18 18:56:47 +00:00
yield(wrap(actual))
rescue Capybara::ExpectationNotMet => e
@failure_message_when_negated = e.message
return false
end
def session_query_args
if @args.last.is_a? Hash
@args.last[:session_options] = session_options
else
@args.push(session_options: session_options)
end
@args
end
def session_options
2017-05-28 15:54:55 +00:00
@context_el ||= nil
if @context_el.respond_to? :session_options
@context_el.session_options
elsif @context_el.respond_to? :current_scope
@context_el.current_scope.session_options
else
Capybara.session_options
end
end
2013-02-16 09:02:32 +00:00
end
class HaveSelector < Matcher
def initialize(*args, &filter_block)
@args = args
@filter_block = filter_block
end
def matches?(actual)
2016-11-18 23:22:04 +00:00
wrap_matches?(actual){ |el| el.assert_selector(*@args, &@filter_block) }
end
def does_not_match?(actual)
2016-11-18 23:22:04 +00:00
wrap_does_not_match?(actual){ |el| el.assert_no_selector(*@args, &@filter_block) }
2011-02-06 19:07:12 +00:00
end
def description
"have #{query.description}"
end
def query
@query ||= Capybara::Queries::SelectorQuery.new(*session_query_args, &@filter_block)
end
end
class HaveAllSelectors < Matcher
def initialize(*args, &filter_block)
@args = args
@filter_block = filter_block
end
def matches?(actual)
wrap_matches?(actual){ |el| el.assert_all_of_selectors(*@args, &@filter_block) }
end
def does_not_match?(actual)
raise ArgumentError, "The have_all_selectors matcher does not support use with not_to/should_not"
end
def description
"have all selectors"
end
end
class HaveNoSelectors < Matcher
def initialize(*args, &filter_block)
@args = args
@filter_block = filter_block
end
def matches?(actual)
wrap_matches?(actual){ |el| el.assert_none_of_selectors(*@args, &@filter_block) }
end
def does_not_match?(actual)
raise ArgumentError, "The have_none_of_selectors matcher does not support use with not_to/should_not"
end
def description
"have no selectors"
end
end
2016-11-18 23:22:04 +00:00
class MatchSelector < HaveSelector
def matches?(actual)
wrap_matches?(actual) { |el| el.assert_matches_selector(*@args, &@filter_block) }
end
def does_not_match?(actual)
wrap_does_not_match?(actual) { |el| el.assert_not_matches_selector(*@args, &@filter_block) }
end
def description
"match #{query.description}"
end
def query
@query ||= Capybara::Queries::MatchQuery.new(*session_query_args, &@filter_block)
2016-11-18 23:22:04 +00:00
end
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
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)
2016-11-18 23:22:04 +00:00
wrap_matches?(actual) { |el| el.assert_text(*@args) }
end
def does_not_match?(actual)
2016-11-18 23:22:04 +00:00
wrap_does_not_match?(actual) { |el| el.assert_no_text(*@args) }
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
end
2013-02-16 09:02:32 +00:00
class HaveTitle < Matcher
attr_reader :title
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)
2016-11-18 23:22:04 +00:00
wrap_matches?(actual) { |el| el.assert_title(*@args) }
2013-02-16 09:02:32 +00:00
end
def does_not_match?(actual)
2016-11-18 23:22:04 +00:00
wrap_does_not_match?(actual) { |el| el.assert_no_title(*@args) }
2013-02-16 09:02:32 +00:00
end
def description
"have title #{title.inspect}"
2013-02-16 09:02:32 +00:00
end
end
2015-08-24 05:14:48 +00:00
class HaveCurrentPath < Matcher
attr_reader :current_path
def initialize(*args)
@args = args
# are set just for backwards compatability
@current_path = args.first
end
def matches?(actual)
2016-11-18 23:22:04 +00:00
wrap_matches?(actual) { |el| el.assert_current_path(*@args) }
2015-08-24 05:14:48 +00:00
end
def does_not_match?(actual)
2016-11-18 23:22:04 +00:00
wrap_does_not_match?(actual) { |el| el.assert_no_current_path(*@args) }
2015-08-24 05:14:48 +00:00
end
def description
"have current path #{current_path.inspect}"
end
end
class BecomeClosed
def initialize(options)
@options = options
end
def matches?(window)
@window = window
@wait_time = Capybara::Queries::BaseQuery.wait(@options, window.session.config.default_max_wait_time)
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
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for whether the element(s) matching a given selector exist
# See {Capybara::Node::Matcher#assert_selector}
def have_selector(*args, &optional_filter_block)
HaveSelector.new(*args, &optional_filter_block)
end
# RSpec matcher for whether the element(s) matching a group of selectors exist
# See {Capybara::Node::Matcher#assert_all_of_selectors}
def have_all_of_selectors(*args, &optional_filter_block)
HaveAllSelectors.new(*args, &optional_filter_block)
end
# RSpec matcher for whether no element(s) matching a group of selectors exist
# See {Capybara::Node::Matcher#assert_none_of_selectors}
def have_none_of_selectors(*args, &optional_filter_block)
HaveNoSelectors.new(*args, &optional_filter_block)
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for whether the current element matches a given selector
# See {Capybara::Node::Matchers#assert_matches_selector}
2016-11-18 23:22:04 +00:00
def match_selector(*args, &optional_filter_block)
MatchSelector.new(*args, &optional_filter_block)
end
2016-08-17 20:51:32 +00:00
::RSpec::Matchers.define_negated_matcher :not_match_selector, :match_selector if defined?(::RSpec::Matchers)
2017-06-07 17:32:01 +00:00
# RSpec matcher for whether elements(s) matching a given xpath selector exist
# See {Capybara::Node::Matchers#has_xpath?}
2016-08-17 23:14:39 +00:00
def have_xpath(xpath, **options, &optional_filter_block)
HaveSelector.new(:xpath, xpath, options, &optional_filter_block)
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for whether the current element matches a given xpath selector
2016-08-17 23:14:39 +00:00
def match_xpath(xpath, **options, &optional_filter_block)
2016-11-18 23:22:04 +00:00
MatchSelector.new(:xpath, xpath, options, &optional_filter_block)
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for whether elements(s) matching a given css selector exist
# See {Capybara::Node::Matchers#has_css?}
2016-08-17 23:14:39 +00:00
def have_css(css, **options, &optional_filter_block)
HaveSelector.new(:css, css, options, &optional_filter_block)
end
2011-02-10 16:15:28 +00:00
2017-06-07 17:32:01 +00:00
# RSpec matcher for whether the current element matches a given css selector
2016-08-17 23:14:39 +00:00
def match_css(css, **options, &optional_filter_block)
2016-11-18 23:22:04 +00:00
MatchSelector.new(:css, css, options, &optional_filter_block)
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for text on the page
# See {Capybara::SessionMatchers#assert_text}
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
2016-08-17 23:14:39 +00:00
def have_title(title, **options)
HaveTitle.new(title, options)
2013-02-16 09:02:32 +00:00
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for the current path
# See {Capybara::SessionMatchers#assert_current_path}
2016-08-17 23:14:39 +00:00
def have_current_path(path, **options)
2015-08-24 05:14:48 +00:00
HaveCurrentPath.new(path, options)
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for links
# See {Capybara::Node::Matchers#has_link?}
2016-10-03 21:50:23 +00:00
def have_link(locator=nil, **options, &optional_filter_block)
HaveSelector.new(:link, locator, options, &optional_filter_block)
2011-02-13 16:04:13 +00:00
end
2011-03-25 09:54:52 +00:00
2017-06-07 17:32:01 +00:00
# RSpec matcher for buttons
# See {Capybara::Node::Matchers#has_button?}
2016-10-03 21:50:23 +00:00
def have_button(locator=nil, **options, &optional_filter_block)
HaveSelector.new(:button, locator, options, &optional_filter_block)
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for links
# See {Capybara::Node::Matchers#has_field?}
2016-10-03 21:50:23 +00:00
def have_field(locator=nil, **options, &optional_filter_block)
HaveSelector.new(:field, locator, options, &optional_filter_block)
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for checked fields
# See {Capybara::Node::Matchers#has_checked_field?}
2016-08-17 23:14:39 +00:00
def have_checked_field(locator=nil, **options, &optional_filter_block)
2016-10-04 18:10:29 +00:00
HaveSelector.new(:field, locator, options.merge(checked: true), &optional_filter_block)
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for unchecked fields
# See {Capybara::Node::Matchers#has_unchecked_field?}
2016-08-17 23:14:39 +00:00
def have_unchecked_field(locator=nil, **options, &optional_filter_block)
2016-10-04 18:10:29 +00:00
HaveSelector.new(:field, locator, options.merge(unchecked: true), &optional_filter_block)
2011-03-25 09:54:52 +00:00
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for select elements
# See {Capybara::Node::Matchers#has_select?}
2016-10-03 21:50:23 +00:00
def have_select(locator=nil, **options, &optional_filter_block)
HaveSelector.new(:select, locator, options, &optional_filter_block)
end
2017-06-07 17:32:01 +00:00
# RSpec matcher for table elements
# See {Capybara::Node::Matchers#has_table?}
2016-10-03 21:50:23 +00:00
def have_table(locator=nil, **options, &optional_filter_block)
HaveSelector.new(:table, locator, options, &optional_filter_block)
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
2016-08-17 23:14:39 +00:00
def become_closed(**options)
BecomeClosed.new(options)
end
end
end