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
|
require File.expand_path('../../../test_helper', __FILE__)
require 'mocha/parameter_matchers/has_keys'
require 'mocha/parameter_matchers/instance_methods'
require 'mocha/inspect'
class HasKeysTest < Mocha::TestCase
include Mocha::ParameterMatchers
def test_should_match_hash_including_specified_keys
matcher = has_keys(:key_1, :key_2)
assert matcher.matches?([{ key_1: 1, key_2: 2, key_3: 3 }])
end
def test_should_not_match_hash_not_including_specified_keys
matcher = has_keys(:key_1, :key_2)
assert !matcher.matches?([{ key_3: 3 }])
end
def test_should_not_match_hash_not_including_all_keys
matcher = has_keys(:key_1, :key_2)
assert !matcher.matches?([{ key_1: 1, key_3: 3 }])
end
def test_should_describe_matcher
matcher = has_keys(:key_1, :key_2)
assert_equal 'has_keys(:key_1, :key_2)', matcher.mocha_inspect
end
def test_should_match_hash_including_specified_key_with_nested_key_matcher
matcher = has_keys(equals(:key_1), equals(:key_2))
assert matcher.matches?([{ key_1: 1, key_2: 2 }])
end
def test_should_not_match_hash_not_including_specified_keys_with_nested_key_matchers
matcher = has_keys(equals(:key_1), equals(:key2))
assert !matcher.matches?([{ key_2: 2 }])
end
def test_should_not_raise_error_on_empty_arguments
matcher = has_keys(:key_1, :key_2)
assert_nothing_raised { matcher.matches?([]) }
end
def test_should_not_match_on_empty_arguments
matcher = has_keys(:key_1, :key_2)
assert !matcher.matches?([])
end
def test_should_not_raise_error_on_argument_that_does_not_respond_to_keys
matcher = has_keys(:key_1, :key_2)
assert_nothing_raised { matcher.matches?([:key_1]) }
end
def test_should_not_match_on_argument_that_does_not_respond_to_keys
matcher = has_keys(:key_1, :key_2)
assert !matcher.matches?([:key_1])
end
def test_should_raise_argument_error_if_no_keys_are_supplied
e = assert_raises(ArgumentError) { has_keys }
assert_equal 'No arguments. Expecting at least one.', e.message
end
end
|