Sha256: 04621b6c46c98590537cde051a2497137437f8f0a23d48097c9bd79f3dcc190f

Contents?: true

Size: 1.63 KB

Versions: 21

Compression:

Stored size: 1.63 KB

Contents

require 'mocha/parameter_matchers/base'
require 'mocha/parameter_matchers/all_of'
require 'mocha/parameter_matchers/has_entry'

module Mocha
  module ParameterMatchers
    # Matches +Hash+ containing all +entries+.
    #
    # @param [Hash] entries expected +Hash+ entries.
    # @return [HasEntries] parameter matcher.
    #
    # @see Expectation#with
    #
    # @example Actual parameter contains all expected entries.
    #   object = mock()
    #   object.expects(:method_1).with(has_entries('key_1' => 1, 'key_2' => 2))
    #   object.method_1('key_1' => 1, 'key_2' => 2, 'key_3' => 3)
    #   # no error raised
    #
    # @example Actual parameter does not contain all expected entries.
    #   object = mock()
    #   object.expects(:method_1).with(has_entries('key_1' => 1, 'key_2' => 2))
    #   object.method_1('key_1' => 1, 'key_2' => 99)
    #   # error raised, because method_1 was not called with Hash containing entries: 'key_1' => 1, 'key_2' => 2
    #
    def has_entries(entries) # rubocop:disable Naming/PredicateName
      HasEntries.new(entries)
    end

    # Parameter matcher which matches when actual parameter contains all expected +Hash+ entries.
    class HasEntries < Base
      # @private
      def initialize(entries)
        @entries = entries
      end

      # @private
      def matches?(available_parameters)
        parameter = available_parameters.shift
        has_entry_matchers = @entries.map { |key, value| HasEntry.new(key, value) }
        AllOf.new(*has_entry_matchers).matches?([parameter])
      end

      # @private
      def mocha_inspect
        "has_entries(#{@entries.mocha_inspect})"
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
mocha-2.4.2 lib/mocha/parameter_matchers/has_entries.rb
mocha-2.4.1 lib/mocha/parameter_matchers/has_entries.rb
mocha-2.4.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-2.2.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-2.1.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-2.0.4 lib/mocha/parameter_matchers/has_entries.rb
mocha-2.0.3 lib/mocha/parameter_matchers/has_entries.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/mocha-2.0.2/lib/mocha/parameter_matchers/has_entries.rb
mocha-2.0.2 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.16.1 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.15.1 lib/mocha/parameter_matchers/has_entries.rb
mocha-2.0.1 lib/mocha/parameter_matchers/has_entries.rb
mocha-2.0.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.16.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-2.0.0.alpha.1 lib/mocha/parameter_matchers/has_entries.rb
mocha-2.0.0.alpha lib/mocha/parameter_matchers/has_entries.rb
mocha-1.15.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.14.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.13.0 lib/mocha/parameter_matchers/has_entries.rb
mocha-1.12.0 lib/mocha/parameter_matchers/has_entries.rb