1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/lib/capybara/queries/current_path_query.rb

56 lines
1.4 KiB
Ruby
Raw Normal View History

2016-03-07 19:52:19 -05:00
# frozen_string_literal: true
2016-01-27 17:20:47 -05:00
require 'addressable/uri'
2015-08-24 01:14:48 -04:00
module Capybara
# @api private
module Queries
class CurrentPathQuery < BaseQuery
2016-08-17 19:14:39 -04:00
def initialize(expected_path, **options)
2017-05-28 11:54:55 -04:00
super(options)
2015-08-24 01:14:48 -04:00
@expected_path = expected_path
@options = {
url: !@expected_path.is_a?(Regexp) && !::Addressable::URI.parse(@expected_path || "").hostname.nil?,
2017-10-08 17:56:17 -04:00
ignore_query: false
}.merge(options)
2015-08-24 01:14:48 -04:00
assert_valid_keys
end
def resolves_for?(session)
uri = ::Addressable::URI.parse(session.current_url)
uri.query = nil if uri && options[:ignore_query]
2015-08-24 01:14:48 -04:00
@actual_path = if options[:url]
uri.to_s
2015-08-24 01:14:48 -04:00
else
2017-10-08 17:56:17 -04:00
uri && uri.request_uri
2015-08-24 01:14:48 -04:00
end
if @expected_path.is_a? Regexp
@actual_path.to_s.match(@expected_path)
2015-08-24 01:14:48 -04:00
else
2017-01-26 19:10:51 -05:00
::Addressable::URI.parse(@expected_path) == ::Addressable::URI.parse(@actual_path)
2015-08-24 01:14:48 -04:00
end
end
def failure_message
failure_message_helper
end
def negative_failure_message
failure_message_helper(' not')
end
private
def failure_message_helper(negated = '')
verb = (@expected_path.is_a?(Regexp))? 'match' : 'equal'
"expected #{@actual_path.inspect}#{negated} to #{verb} #{@expected_path.inspect}"
end
def valid_keys
2017-10-08 17:56:17 -04:00
[:wait, :url, :ignore_query]
2015-08-24 01:14:48 -04:00
end
end
end
end