2017-06-29 15:13:47 -04:00
|
|
|
module Capybara
|
|
|
|
module RSpecMatchers
|
|
|
|
module Compound
|
|
|
|
include ::RSpec::Matchers::Composable
|
|
|
|
|
|
|
|
def and(matcher)
|
2018-01-09 17:05:50 -05:00
|
|
|
Capybara::RSpecMatchers::Compound::And.new(self, matcher)
|
2017-06-29 15:13:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def and_then(matcher)
|
|
|
|
::RSpec::Matchers::BuiltIn::Compound::And.new(self, matcher)
|
|
|
|
end
|
|
|
|
|
|
|
|
def or(matcher)
|
|
|
|
Capybara::RSpecMatchers::Compound::Or.new(self, matcher)
|
|
|
|
end
|
|
|
|
|
|
|
|
class CapybaraEvaluator
|
2018-01-08 15:23:54 -05:00
|
|
|
def initialize(actual, matcher1, matcher2)
|
2018-01-09 17:05:50 -05:00
|
|
|
@actual = actual
|
|
|
|
@matcher1 = matcher1
|
|
|
|
@matcher2 = matcher2
|
2017-06-29 15:13:47 -04:00
|
|
|
@match_results = Hash.new { |h, matcher| h[matcher] = matcher.matches?(@actual) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def matcher_matches?(matcher)
|
|
|
|
@match_results[matcher]
|
|
|
|
end
|
|
|
|
|
|
|
|
def reset
|
|
|
|
@match_results.clear
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class And < ::RSpec::Matchers::BuiltIn::Compound::And
|
|
|
|
private
|
|
|
|
|
|
|
|
def match(_expected, actual)
|
2018-01-09 17:05:50 -05:00
|
|
|
@evaluator = CapybaraEvaluator.new(actual, matcher_1, matcher_2)
|
2017-06-29 15:13:47 -04:00
|
|
|
syncer = sync_element(actual)
|
|
|
|
begin
|
|
|
|
syncer.synchronize do
|
|
|
|
@evaluator.reset
|
2018-01-09 17:05:50 -05:00
|
|
|
raise ::Capybara::ElementNotFound unless [matcher_1_matches?, matcher_2_matches?].all?
|
2017-06-29 15:13:47 -04:00
|
|
|
true
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def sync_element(el)
|
|
|
|
if el.respond_to? :synchronize
|
|
|
|
el
|
|
|
|
elsif el.respond_to? :current_scope
|
|
|
|
el.current_scope
|
|
|
|
else
|
|
|
|
Capybara.string(el)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Or < ::RSpec::Matchers::BuiltIn::Compound::Or
|
|
|
|
private
|
|
|
|
|
|
|
|
def match(_expected, actual)
|
2018-01-09 17:05:50 -05:00
|
|
|
@evaluator = CapybaraEvaluator.new(actual, matcher_1, matcher_2)
|
2017-06-29 15:13:47 -04:00
|
|
|
syncer = sync_element(actual)
|
|
|
|
begin
|
|
|
|
syncer.synchronize do
|
|
|
|
@evaluator.reset
|
2018-01-09 17:05:50 -05:00
|
|
|
raise ::Capybara::ElementNotFound unless [matcher_1_matches?, matcher_2_matches?].any?
|
2017-06-29 15:13:47 -04:00
|
|
|
true
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def sync_element(el)
|
|
|
|
if el.respond_to? :synchronize
|
|
|
|
el
|
|
|
|
elsif el.respond_to? :current_scope
|
|
|
|
el.current_scope
|
|
|
|
else
|
|
|
|
Capybara.string(el)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|