Sha256: a7cb6f3db86aac95d694b6ca3ab2fef34f1bf15691557252a86ca92ca922accd
Contents?: true
Size: 1.85 KB
Versions: 4
Compression:
Stored size: 1.85 KB
Contents
# frozen_string_literal: true require 'addressable/uri' module Capybara # @api private module Queries class CurrentPathQuery < BaseQuery def initialize(expected_path, options = {}) super(options) @expected_path = expected_path warn "DEPRECATED: The :only_path option is deprecated in favor of the :ignore_query option" if options.has_key?(:only_path) @options = { url: !@expected_path.is_a?(Regexp) && !::Addressable::URI.parse(@expected_path || "").hostname.nil?, only_path: false, ignore_query: false }.merge(options) assert_valid_keys end def resolves_for?(session) uri = ::Addressable::URI.parse(session.current_url) uri.query = nil if uri && options[:ignore_query] @actual_path = if options[:url] uri.to_s else if options[:only_path] uri && uri.path else uri && uri.request_uri end end if @expected_path.is_a? Regexp @actual_path.to_s.match(@expected_path) else ::Addressable::URI.parse(@expected_path) == ::Addressable::URI.parse(@actual_path) 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 [:wait, :url, :only_path, :ignore_query] end def assert_valid_keys super if options[:url] && options[:only_path] raise ArgumentError, "the :url and :only_path options cannot both be true" end end end end end
Version data entries
4 entries across 3 versions & 2 rubygems