teamcapybara--capybara/lib/capybara/queries/title_query.rb

40 lines
1.0 KiB
Ruby
Raw Normal View History

2016-03-08 00:52:19 +00:00
# frozen_string_literal: true
2018-01-08 20:23:54 +00:00
module Capybara
# @api private
module Queries
class TitleQuery < BaseQuery
2016-08-17 23:14:39 +00:00
def initialize(expected_title, **options)
@expected_title = expected_title.is_a?(Regexp) ? expected_title : expected_title.to_s
@options = options
2017-05-28 15:54:55 +00:00
super(@options)
@search_regexp = Capybara::Helpers.to_regexp(@expected_title, all_whitespace: true, exact: options.fetch(:exact, false))
assert_valid_keys
end
def resolves_for?(node)
2018-01-13 21:06:03 +00:00
(@actual_title = node.title).match(@search_regexp)
end
def failure_message
failure_message_helper
end
def negative_failure_message
failure_message_helper(' not')
end
2018-01-09 22:05:50 +00:00
private
def failure_message_helper(negated = '')
2018-01-08 20:23:54 +00:00
verb = @expected_title.is_a?(Regexp) ? 'match' : 'include'
"expected #{@actual_title.inspect}#{negated} to #{verb} #{@expected_title.inspect}"
end
def valid_keys
2018-01-08 20:23:54 +00:00
%i[wait exact]
end
end
end
end