Sha256: 3be0667126426744d4c33b1780e731d6082b6d9ccca7f45021caa2d6573f2412

Contents?: true

Size: 1.6 KB

Versions: 7

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true
require 'addressable/uri'

module Capybara
  # @api private
  module Queries
    class CurrentPathQuery < BaseQuery
      def initialize(expected_path, options = {})
        @expected_path = expected_path
        @options = {
          url: false,
          only_path: false }.merge(options)
        assert_valid_keys
      end

      def resolves_for?(session)
        @actual_path = if options[:url]
          session.current_url
        else
          uri = ::Addressable::URI.parse(session.current_url)

          if options[:only_path]
            uri.path unless uri.nil? # Ensure the parsed url isn't nil.
          else
            uri.request_uri unless uri.nil? # Ensure the parsed url isn't nil.
          end
        end

        if @expected_path.is_a? Regexp
          @actual_path.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]
      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

7 entries across 6 versions & 3 rubygems

Version Path
tdiary-5.0.5 vendor/bundle/gems/capybara-2.13.0/lib/capybara/queries/current_path_query.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/capybara-2.13.0/lib/capybara/queries/current_path_query.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/capybara-2.14.0/lib/capybara/queries/current_path_query.rb
capybara-2.14.0 lib/capybara/queries/current_path_query.rb
tdiary-5.0.4 vendor/bundle/gems/capybara-2.13.0/lib/capybara/queries/current_path_query.rb
capybara-2.13.0 lib/capybara/queries/current_path_query.rb
capybara-2.12.1 lib/capybara/queries/current_path_query.rb