File: regexp_matches.rb

package info (click to toggle)
ruby-mocha 2.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,540 kB
  • sloc: ruby: 11,899; javascript: 477; makefile: 14
file content (48 lines) | stat: -rw-r--r-- 1,423 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
require 'mocha/parameter_matchers/base'

module Mocha
  module ParameterMatchers
    # Matches any object that matches +regexp+.
    #
    # @param [Regexp] regexp regular expression to match.
    # @return [RegexpMatches] parameter matcher.
    #
    # @see Expectation#with
    #
    # @example Actual parameter is matched by specified regular expression.
    #   object = mock()
    #   object.expects(:method_1).with(regexp_matches(/e/))
    #   object.method_1('hello')
    #   # no error raised
    #
    # @example Actual parameter is not matched by specified regular expression.
    #   object = mock()
    #   object.expects(:method_1).with(regexp_matches(/a/))
    #   object.method_1('hello')
    #   # error raised, because method_1 was not called with a parameter that matched the
    #   # regular expression
    def regexp_matches(regexp)
      RegexpMatches.new(regexp)
    end

    # Parameter matcher which matches if specified regular expression matches actual paramter.
    class RegexpMatches < Base
      # @private
      def initialize(regexp)
        @regexp = regexp
      end

      # @private
      def matches?(available_parameters)
        parameter = available_parameters.shift
        return false unless parameter.respond_to?(:=~)
        parameter =~ @regexp
      end

      # @private
      def mocha_inspect
        "regexp_matches(#{@regexp.mocha_inspect})"
      end
    end
  end
end