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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
|
module RSpec
module Mocks
# ArgumentMatchers are placeholders that you can include in message
# expectations to match arguments against a broader check than simple
# equality.
#
# With the exception of `any_args` and `no_args`, they all match against
# the arg in same position in the argument list.
#
# @see ArgumentListMatcher
module ArgumentMatchers
class AnyArgsMatcher
def description
"any args"
end
end
class AnyArgMatcher
def initialize(ignore)
end
def ==(other)
true
end
end
class NoArgsMatcher
def description
"no args"
end
end
class RegexpMatcher
def initialize(regexp)
@regexp = regexp
end
def ==(value)
Regexp === value ? value == @regexp : value =~ @regexp
end
end
class BooleanMatcher
def initialize(ignore)
end
def ==(value)
[true,false].include?(value)
end
end
class HashIncludingMatcher
def initialize(expected)
@expected = expected
end
def ==(actual)
@expected.all? {|k,v| actual.has_key?(k) && v == actual[k]}
rescue NoMethodError
false
end
def description
"hash_including(#{@expected.inspect.sub(/^\{/,"").sub(/\}$/,"")})"
end
end
class HashExcludingMatcher
def initialize(expected)
@expected = expected
end
def ==(actual)
@expected.none? {|k,v| actual.has_key?(k) && v == actual[k]}
rescue NoMethodError
false
end
def description
"hash_not_including(#{@expected.inspect.sub(/^\{/,"").sub(/\}$/,"")})"
end
end
class DuckTypeMatcher
def initialize(*methods_to_respond_to)
@methods_to_respond_to = methods_to_respond_to
end
def ==(value)
@methods_to_respond_to.all? {|message| value.respond_to?(message)}
end
end
class MatcherMatcher
def initialize(matcher)
@matcher = matcher
end
def ==(value)
@matcher.matches?(value)
end
end
class EqualityProxy
def initialize(given)
@given = given
end
def ==(expected)
@given == expected
end
end
class InstanceOf
def initialize(klass)
@klass = klass
end
def ==(actual)
actual.instance_of?(@klass)
end
end
class KindOf
def initialize(klass)
@klass = klass
end
def ==(actual)
actual.kind_of?(@klass)
end
end
# Matches any args at all. Supports a more explicit variation of
# `object.should_receive(:message)`
#
# @example
#
# object.should_receive(:message).with(any_args)
def any_args
AnyArgsMatcher.new
end
# Matches any argument at all.
#
# @example
#
# object.should_receive(:message).with(anything)
def anything
AnyArgMatcher.new(nil)
end
# Matches no arguments.
#
# @example
#
# object.should_receive(:message).with(no_args)
def no_args
NoArgsMatcher.new
end
# Matches if the actual argument responds to the specified messages.
#
# @example
#
# object.should_receive(:message).with(duck_type(:hello))
# object.should_receive(:message).with(duck_type(:hello, :goodbye))
def duck_type(*args)
DuckTypeMatcher.new(*args)
end
# Matches a boolean value.
#
# @example
#
# object.should_receive(:message).with(boolean())
def boolean
BooleanMatcher.new(nil)
end
# Matches a hash that includes the specified key(s) or key/value pairs.
# Ignores any additional keys.
#
# @example
#
# object.should_receive(:message).with(hash_including(:key => val))
# object.should_receive(:message).with(hash_including(:key))
# object.should_receive(:message).with(hash_including(:key, :key2 => val2))
def hash_including(*args)
HashIncludingMatcher.new(anythingize_lonely_keys(*args))
end
# Matches a hash that doesn't include the specified key(s) or key/value.
#
# @example
#
# object.should_receive(:message).with(hash_excluding(:key => val))
# object.should_receive(:message).with(hash_excluding(:key))
# object.should_receive(:message).with(hash_excluding(:key, :key2 => :val2))
def hash_excluding(*args)
HashExcludingMatcher.new(anythingize_lonely_keys(*args))
end
alias_method :hash_not_including, :hash_excluding
# Matches if `arg.instance_of?(klass)`
#
# @example
#
# object.should_receive(:message).with(instance_of(Thing))
def instance_of(klass)
InstanceOf.new(klass)
end
alias_method :an_instance_of, :instance_of
# Matches if `arg.kind_of?(klass)`
# @example
#
# object.should_receive(:message).with(kind_of(Thing))
def kind_of(klass)
KindOf.new(klass)
end
alias_method :a_kind_of, :kind_of
private
def anythingize_lonely_keys(*args)
hash = args.last.class == Hash ? args.delete_at(-1) : {}
args.each { | arg | hash[arg] = anything }
hash
end
end
end
end
|