mocha 0.10.5 → 1.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/FUNDING.yml +1 -0
- data/.rubocop.yml +61 -0
- data/.rubocop_todo.yml +27 -0
- data/.yardopts +24 -0
- data/CONTRIBUTING.md +7 -0
- data/COPYING.md +3 -0
- data/Gemfile +2 -2
- data/{MIT-LICENSE.rdoc → MIT-LICENSE.md} +1 -1
- data/README.md +363 -0
- data/{RELEASE.rdoc → RELEASE.md} +436 -35
- data/Rakefile +87 -87
- data/gemfiles/Gemfile.minitest.latest +2 -2
- data/gemfiles/Gemfile.test-unit.latest +6 -2
- data/init.rb +1 -3
- data/lib/mocha/any_instance_method.rb +12 -45
- data/lib/mocha/api.rb +199 -131
- data/lib/mocha/argument_iterator.rb +6 -10
- data/lib/mocha/backtrace_filter.rb +1 -5
- data/lib/mocha/block_matcher.rb +31 -0
- data/lib/mocha/cardinality.rb +77 -66
- data/lib/mocha/central.rb +27 -18
- data/lib/mocha/change_state_side_effect.rb +3 -7
- data/lib/mocha/class_methods.rb +62 -0
- data/lib/mocha/configuration.rb +399 -46
- data/lib/mocha/debug.rb +12 -0
- data/lib/mocha/deprecation.rb +11 -12
- data/lib/mocha/detection/mini_test.rb +23 -0
- data/lib/mocha/detection/test_unit.rb +27 -0
- data/lib/mocha/error_with_filtered_backtrace.rb +13 -0
- data/lib/mocha/exception_raiser.rb +8 -10
- data/lib/mocha/expectation.rb +290 -151
- data/lib/mocha/expectation_error.rb +6 -13
- data/lib/mocha/expectation_error_factory.rb +35 -0
- data/lib/mocha/expectation_list.rb +22 -22
- data/lib/mocha/hooks.rb +42 -0
- data/lib/mocha/in_state_ordering_constraint.rb +3 -7
- data/lib/mocha/inspect.rb +35 -43
- data/lib/mocha/instance_method.rb +12 -21
- data/lib/mocha/integration/assertion_counter.rb +13 -0
- data/lib/mocha/integration/mini_test/adapter.rb +52 -0
- data/lib/mocha/integration/mini_test/exception_translation.rb +1 -7
- data/lib/mocha/integration/mini_test/nothing.rb +19 -0
- data/lib/mocha/integration/mini_test/version_13.rb +35 -25
- data/lib/mocha/integration/mini_test/version_140.rb +35 -26
- data/lib/mocha/integration/mini_test/version_141.rb +43 -34
- data/lib/mocha/integration/mini_test/version_142_to_172.rb +44 -35
- data/lib/mocha/integration/mini_test/version_200.rb +45 -36
- data/lib/mocha/integration/mini_test/version_201_to_222.rb +44 -35
- data/lib/mocha/integration/mini_test/version_2110_to_2111.rb +70 -0
- data/lib/mocha/integration/mini_test/version_2112_to_320.rb +73 -0
- data/lib/mocha/integration/mini_test/version_230_to_2101.rb +68 -0
- data/lib/mocha/integration/mini_test.rb +51 -49
- data/lib/mocha/integration/monkey_patcher.rb +24 -0
- data/lib/mocha/integration/test_unit/adapter.rb +50 -0
- data/lib/mocha/integration/test_unit/gem_version_200.rb +39 -29
- data/lib/mocha/integration/test_unit/gem_version_201_to_202.rb +39 -29
- data/lib/mocha/integration/test_unit/gem_version_203_to_220.rb +39 -29
- data/lib/mocha/integration/test_unit/gem_version_230_to_250.rb +68 -0
- data/lib/mocha/integration/test_unit/nothing.rb +19 -0
- data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +39 -29
- data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +40 -30
- data/lib/mocha/integration/test_unit.rb +45 -51
- data/lib/mocha/integration.rb +6 -33
- data/lib/mocha/invocation.rb +77 -0
- data/lib/mocha/is_a.rb +0 -2
- data/lib/mocha/logger.rb +2 -6
- data/lib/mocha/macos_version.rb +5 -0
- data/lib/mocha/method_matcher.rb +6 -10
- data/lib/mocha/minitest.rb +8 -0
- data/lib/mocha/mock.rb +266 -79
- data/lib/mocha/mockery.rb +104 -106
- data/lib/mocha/names.rb +10 -20
- data/lib/mocha/not_initialized_error.rb +7 -0
- data/lib/mocha/object_methods.rb +169 -0
- data/lib/mocha/parameter_matchers/all_of.rb +18 -14
- data/lib/mocha/parameter_matchers/any_of.rb +19 -14
- data/lib/mocha/parameter_matchers/any_parameters.rb +14 -13
- data/lib/mocha/parameter_matchers/anything.rb +17 -14
- data/lib/mocha/parameter_matchers/base.rb +33 -31
- data/lib/mocha/parameter_matchers/equals.rb +18 -13
- data/lib/mocha/parameter_matchers/equivalent_uri.rb +58 -0
- data/lib/mocha/parameter_matchers/has_entries.rb +19 -14
- data/lib/mocha/parameter_matchers/has_entry.rb +58 -26
- data/lib/mocha/parameter_matchers/has_key.rb +18 -13
- data/lib/mocha/parameter_matchers/has_keys.rb +53 -0
- data/lib/mocha/parameter_matchers/has_value.rb +18 -13
- data/lib/mocha/parameter_matchers/includes.rb +80 -19
- data/lib/mocha/parameter_matchers/instance_methods.rb +18 -0
- data/lib/mocha/parameter_matchers/instance_of.rb +18 -13
- data/lib/mocha/parameter_matchers/is_a.rb +20 -14
- data/lib/mocha/parameter_matchers/kind_of.rb +20 -13
- data/lib/mocha/parameter_matchers/not.rb +19 -14
- data/lib/mocha/parameter_matchers/optionally.rb +23 -17
- data/lib/mocha/parameter_matchers/regexp_matches.rb +16 -12
- data/lib/mocha/parameter_matchers/responds_with.rb +17 -11
- data/lib/mocha/parameter_matchers/yaml_equivalent.rb +15 -9
- data/lib/mocha/parameter_matchers.rb +4 -5
- data/lib/mocha/parameters_matcher.rb +11 -14
- data/lib/mocha/raised_exception.rb +11 -0
- data/lib/mocha/receivers.rb +45 -0
- data/lib/mocha/return_values.rb +11 -15
- data/lib/mocha/ruby_version.rb +4 -0
- data/lib/mocha/sequence.rb +21 -17
- data/lib/mocha/setup.rb +14 -0
- data/lib/mocha/single_return_value.rb +5 -8
- data/lib/mocha/singleton_class.rb +9 -0
- data/lib/mocha/state_machine.rb +69 -67
- data/lib/mocha/stubbed_method.rb +125 -0
- data/lib/mocha/stubbing_error.rb +6 -14
- data/lib/mocha/test_unit.rb +8 -0
- data/lib/mocha/thrower.rb +6 -8
- data/lib/mocha/thrown_object.rb +12 -0
- data/lib/mocha/version.rb +1 -1
- data/lib/mocha/yield_parameters.rb +12 -22
- data/lib/mocha.rb +8 -3
- data/mocha.gemspec +43 -34
- data/yard-templates/default/layout/html/google_analytics.erb +8 -0
- data/yard-templates/default/layout/html/setup.rb +5 -0
- metadata +123 -268
- data/COPYING.rdoc +0 -3
- data/README.rdoc +0 -54
- data/examples/misc.rb +0 -43
- data/examples/mocha.rb +0 -25
- data/examples/stubba.rb +0 -64
- data/gemfiles/Gemfile.minitest.1.3.0 +0 -7
- data/gemfiles/Gemfile.minitest.1.4.0 +0 -7
- data/gemfiles/Gemfile.minitest.1.4.1 +0 -7
- data/gemfiles/Gemfile.minitest.1.4.2 +0 -7
- data/gemfiles/Gemfile.minitest.2.0.0 +0 -7
- data/gemfiles/Gemfile.minitest.2.0.1 +0 -7
- data/gemfiles/Gemfile.minitest.2.3.0 +0 -7
- data/gemfiles/Gemfile.test-unit.2.0.0 +0 -8
- data/gemfiles/Gemfile.test-unit.2.0.1 +0 -7
- data/gemfiles/Gemfile.test-unit.2.0.3 +0 -7
- data/lib/mocha/class_method.rb +0 -98
- data/lib/mocha/integration/mini_test/assertion_counter.rb +0 -23
- data/lib/mocha/integration/mini_test/version_230_to_262.rb +0 -59
- data/lib/mocha/integration/test_unit/assertion_counter.rb +0 -23
- data/lib/mocha/integration/test_unit/gem_version_230_to_240.rb +0 -58
- data/lib/mocha/module_method.rb +0 -16
- data/lib/mocha/multiple_yields.rb +0 -20
- data/lib/mocha/no_yields.rb +0 -11
- data/lib/mocha/object.rb +0 -223
- data/lib/mocha/options.rb +0 -1
- data/lib/mocha/parameter_matchers/object.rb +0 -15
- data/lib/mocha/parameter_matchers/query_string.rb +0 -47
- data/lib/mocha/pretty_parameters.rb +0 -28
- data/lib/mocha/single_yield.rb +0 -18
- data/lib/mocha/standalone.rb +0 -1
- data/lib/mocha/unexpected_invocation.rb +0 -18
- data/lib/mocha_standalone.rb +0 -2
- data/lib/stubba.rb +0 -4
- data/test/acceptance/acceptance_test_helper.rb +0 -41
- data/test/acceptance/api_test.rb +0 -139
- data/test/acceptance/bug_18914_test.rb +0 -43
- data/test/acceptance/bug_21465_test.rb +0 -34
- data/test/acceptance/bug_21563_test.rb +0 -25
- data/test/acceptance/exception_rescue_test.rb +0 -55
- data/test/acceptance/expectations_on_multiple_methods_test.rb +0 -55
- data/test/acceptance/expected_invocation_count_test.rb +0 -232
- data/test/acceptance/failure_messages_test.rb +0 -64
- data/test/acceptance/issue_65_test.rb +0 -63
- data/test/acceptance/issue_70_test.rb +0 -55
- data/test/acceptance/minitest_test.rb +0 -162
- data/test/acceptance/mocha_example_test.rb +0 -98
- data/test/acceptance/mocha_test_result_test.rb +0 -84
- data/test/acceptance/mock_test.rb +0 -100
- data/test/acceptance/mock_with_initializer_block_test.rb +0 -51
- data/test/acceptance/mocked_methods_dispatch_test.rb +0 -78
- data/test/acceptance/multiple_expectations_failure_message_test.rb +0 -68
- data/test/acceptance/optional_parameters_test.rb +0 -70
- data/test/acceptance/parameter_matcher_test.rb +0 -300
- data/test/acceptance/partial_mocks_test.rb +0 -47
- data/test/acceptance/raise_exception_test.rb +0 -39
- data/test/acceptance/return_value_test.rb +0 -52
- data/test/acceptance/sequence_test.rb +0 -192
- data/test/acceptance/states_test.rb +0 -70
- data/test/acceptance/stub_any_instance_method_test.rb +0 -198
- data/test/acceptance/stub_class_method_defined_on_active_record_association_proxy_test.rb +0 -106
- data/test/acceptance/stub_class_method_defined_on_class_test.rb +0 -72
- data/test/acceptance/stub_class_method_defined_on_module_test.rb +0 -75
- data/test/acceptance/stub_class_method_defined_on_superclass_test.rb +0 -75
- data/test/acceptance/stub_everything_test.rb +0 -56
- data/test/acceptance/stub_instance_method_defined_on_active_record_association_proxy_test.rb +0 -93
- data/test/acceptance/stub_instance_method_defined_on_class_and_aliased_test.rb +0 -69
- data/test/acceptance/stub_instance_method_defined_on_class_test.rb +0 -66
- data/test/acceptance/stub_instance_method_defined_on_kernel_module_test.rb +0 -75
- data/test/acceptance/stub_instance_method_defined_on_module_test.rb +0 -75
- data/test/acceptance/stub_instance_method_defined_on_object_class_test.rb +0 -75
- data/test/acceptance/stub_instance_method_defined_on_singleton_class_test.rb +0 -70
- data/test/acceptance/stub_instance_method_defined_on_superclass_test.rb +0 -72
- data/test/acceptance/stub_module_method_test.rb +0 -163
- data/test/acceptance/stub_test.rb +0 -52
- data/test/acceptance/stubba_example_test.rb +0 -102
- data/test/acceptance/stubba_test.rb +0 -15
- data/test/acceptance/stubba_test_result_test.rb +0 -66
- data/test/acceptance/stubbing_error_backtrace_test.rb +0 -64
- data/test/acceptance/stubbing_method_unnecessarily_test.rb +0 -65
- data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +0 -130
- data/test/acceptance/stubbing_non_existent_class_method_test.rb +0 -157
- data/test/acceptance/stubbing_non_existent_instance_method_test.rb +0 -147
- data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +0 -130
- data/test/acceptance/stubbing_non_public_class_method_test.rb +0 -163
- data/test/acceptance/stubbing_non_public_instance_method_test.rb +0 -143
- data/test/acceptance/stubbing_on_non_mock_object_test.rb +0 -64
- data/test/acceptance/throw_test.rb +0 -45
- data/test/acceptance/unstubbing_test.rb +0 -151
- data/test/deprecation_disabler.rb +0 -15
- data/test/execution_point.rb +0 -36
- data/test/method_definer.rb +0 -24
- data/test/mini_test_result.rb +0 -83
- data/test/simple_counter.rb +0 -13
- data/test/test_helper.rb +0 -11
- data/test/test_runner.rb +0 -50
- data/test/unit/any_instance_method_test.rb +0 -136
- data/test/unit/array_inspect_test.rb +0 -16
- data/test/unit/backtrace_filter_test.rb +0 -19
- data/test/unit/cardinality_test.rb +0 -56
- data/test/unit/central_test.rb +0 -100
- data/test/unit/change_state_side_effect_test.rb +0 -41
- data/test/unit/class_method_test.rb +0 -260
- data/test/unit/configuration_test.rb +0 -38
- data/test/unit/date_time_inspect_test.rb +0 -21
- data/test/unit/exception_raiser_test.rb +0 -42
- data/test/unit/expectation_list_test.rb +0 -71
- data/test/unit/expectation_test.rb +0 -480
- data/test/unit/hash_inspect_test.rb +0 -16
- data/test/unit/in_state_ordering_constraint_test.rb +0 -43
- data/test/unit/method_matcher_test.rb +0 -23
- data/test/unit/mock_test.rb +0 -312
- data/test/unit/mockery_test.rb +0 -150
- data/test/unit/multiple_yields_test.rb +0 -18
- data/test/unit/no_yields_test.rb +0 -18
- data/test/unit/object_inspect_test.rb +0 -38
- data/test/unit/object_test.rb +0 -87
- data/test/unit/parameter_matchers/all_of_test.rb +0 -26
- data/test/unit/parameter_matchers/any_of_test.rb +0 -26
- data/test/unit/parameter_matchers/anything_test.rb +0 -21
- data/test/unit/parameter_matchers/equals_test.rb +0 -25
- data/test/unit/parameter_matchers/has_entries_test.rb +0 -51
- data/test/unit/parameter_matchers/has_entry_test.rb +0 -96
- data/test/unit/parameter_matchers/has_key_test.rb +0 -55
- data/test/unit/parameter_matchers/has_value_test.rb +0 -57
- data/test/unit/parameter_matchers/includes_test.rb +0 -44
- data/test/unit/parameter_matchers/instance_of_test.rb +0 -25
- data/test/unit/parameter_matchers/is_a_test.rb +0 -25
- data/test/unit/parameter_matchers/kind_of_test.rb +0 -25
- data/test/unit/parameter_matchers/not_test.rb +0 -26
- data/test/unit/parameter_matchers/regexp_matches_test.rb +0 -46
- data/test/unit/parameter_matchers/responds_with_test.rb +0 -25
- data/test/unit/parameter_matchers/stub_matcher.rb +0 -27
- data/test/unit/parameter_matchers/yaml_equivalent_test.rb +0 -25
- data/test/unit/parameters_matcher_test.rb +0 -121
- data/test/unit/return_values_test.rb +0 -63
- data/test/unit/sequence_test.rb +0 -104
- data/test/unit/single_return_value_test.rb +0 -14
- data/test/unit/single_yield_test.rb +0 -18
- data/test/unit/state_machine_test.rb +0 -98
- data/test/unit/string_inspect_test.rb +0 -11
- data/test/unit/thrower_test.rb +0 -20
- data/test/unit/yield_parameters_test.rb +0 -93
@@ -1,480 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
require 'method_definer'
|
3
|
-
require 'mocha/expectation'
|
4
|
-
require 'mocha/sequence'
|
5
|
-
require 'execution_point'
|
6
|
-
require 'simple_counter'
|
7
|
-
|
8
|
-
class ExpectationTest < Test::Unit::TestCase
|
9
|
-
|
10
|
-
include Mocha
|
11
|
-
|
12
|
-
def new_expectation
|
13
|
-
Expectation.new(nil, :expected_method)
|
14
|
-
end
|
15
|
-
|
16
|
-
def test_should_match_calls_to_same_method_with_any_parameters
|
17
|
-
assert new_expectation.match?(:expected_method, 1, 2, 3)
|
18
|
-
end
|
19
|
-
|
20
|
-
def test_should_match_calls_to_same_method_with_exactly_zero_parameters
|
21
|
-
expectation = new_expectation.with()
|
22
|
-
assert expectation.match?(:expected_method)
|
23
|
-
end
|
24
|
-
|
25
|
-
def test_should_not_match_calls_to_same_method_with_more_than_zero_parameters
|
26
|
-
expectation = new_expectation.with()
|
27
|
-
assert !expectation.match?(:expected_method, 1, 2, 3)
|
28
|
-
end
|
29
|
-
|
30
|
-
def test_should_match_calls_to_same_method_with_expected_parameter_values
|
31
|
-
expectation = new_expectation.with(1, 2, 3)
|
32
|
-
assert expectation.match?(:expected_method, 1, 2, 3)
|
33
|
-
end
|
34
|
-
|
35
|
-
def test_should_match_calls_to_same_method_with_parameters_constrained_as_expected
|
36
|
-
expectation = new_expectation.with() {|x, y, z| x + y == z}
|
37
|
-
assert expectation.match?(:expected_method, 1, 2, 3)
|
38
|
-
end
|
39
|
-
|
40
|
-
def test_should_not_match_calls_to_different_method_with_parameters_constrained_as_expected
|
41
|
-
expectation = new_expectation.with() {|x, y, z| x + y == z}
|
42
|
-
assert !expectation.match?(:different_method, 1, 2, 3)
|
43
|
-
end
|
44
|
-
|
45
|
-
def test_should_not_match_calls_to_different_methods_with_no_parameters
|
46
|
-
assert !new_expectation.match?(:unexpected_method)
|
47
|
-
end
|
48
|
-
|
49
|
-
def test_should_not_match_calls_to_same_method_with_too_few_parameters
|
50
|
-
expectation = new_expectation.with(1, 2, 3)
|
51
|
-
assert !expectation.match?(:unexpected_method, 1, 2)
|
52
|
-
end
|
53
|
-
|
54
|
-
def test_should_not_match_calls_to_same_method_with_too_many_parameters
|
55
|
-
expectation = new_expectation.with(1, 2)
|
56
|
-
assert !expectation.match?(:unexpected_method, 1, 2, 3)
|
57
|
-
end
|
58
|
-
|
59
|
-
def test_should_not_match_calls_to_same_method_with_unexpected_parameter_values
|
60
|
-
expectation = new_expectation.with(1, 2, 3)
|
61
|
-
assert !expectation.match?(:unexpected_method, 1, 0, 3)
|
62
|
-
end
|
63
|
-
|
64
|
-
def test_should_not_match_calls_to_same_method_with_parameters_not_constrained_as_expected
|
65
|
-
expectation = new_expectation.with() {|x, y, z| x + y == z}
|
66
|
-
assert !expectation.match?(:expected_method, 1, 0, 3)
|
67
|
-
end
|
68
|
-
|
69
|
-
def test_should_allow_invocations_until_expected_invocation_count_is_one_and_actual_invocation_count_would_be_two
|
70
|
-
expectation = new_expectation.times(1)
|
71
|
-
assert expectation.invocations_allowed?
|
72
|
-
expectation.invoke
|
73
|
-
assert !expectation.invocations_allowed?
|
74
|
-
end
|
75
|
-
|
76
|
-
def test_should_allow_invocations_until_expected_invocation_count_is_two_and_actual_invocation_count_would_be_three
|
77
|
-
expectation = new_expectation.times(2)
|
78
|
-
assert expectation.invocations_allowed?
|
79
|
-
expectation.invoke
|
80
|
-
assert expectation.invocations_allowed?
|
81
|
-
expectation.invoke
|
82
|
-
assert !expectation.invocations_allowed?
|
83
|
-
end
|
84
|
-
|
85
|
-
def test_should_allow_invocations_until_expected_invocation_count_is_a_range_from_two_to_three_and_actual_invocation_count_would_be_four
|
86
|
-
expectation = new_expectation.times(2..3)
|
87
|
-
assert expectation.invocations_allowed?
|
88
|
-
expectation.invoke
|
89
|
-
assert expectation.invocations_allowed?
|
90
|
-
expectation.invoke
|
91
|
-
assert expectation.invocations_allowed?
|
92
|
-
expectation.invoke
|
93
|
-
assert !expectation.invocations_allowed?
|
94
|
-
end
|
95
|
-
|
96
|
-
def test_should_store_provided_backtrace
|
97
|
-
backtrace = Object.new
|
98
|
-
expectation = Expectation.new(nil, :expected_method, backtrace)
|
99
|
-
assert_equal backtrace, expectation.backtrace
|
100
|
-
end
|
101
|
-
|
102
|
-
def test_should_default_backtrace_to_caller
|
103
|
-
execution_point = ExecutionPoint.current; expectation = Expectation.new(nil, :expected_method)
|
104
|
-
assert_equal execution_point, ExecutionPoint.new(expectation.backtrace)
|
105
|
-
end
|
106
|
-
|
107
|
-
def test_should_not_yield
|
108
|
-
yielded = false
|
109
|
-
new_expectation.invoke() { yielded = true }
|
110
|
-
assert_equal false, yielded
|
111
|
-
end
|
112
|
-
|
113
|
-
def test_should_yield_no_parameters
|
114
|
-
expectation = new_expectation().yields()
|
115
|
-
yielded_parameters = nil
|
116
|
-
expectation.invoke() { |*parameters| yielded_parameters = parameters }
|
117
|
-
assert_equal Array.new, yielded_parameters
|
118
|
-
end
|
119
|
-
|
120
|
-
def test_should_yield_with_specified_parameters
|
121
|
-
expectation = new_expectation().yields(1, 2, 3)
|
122
|
-
yielded_parameters = nil
|
123
|
-
expectation.invoke() { |*parameters| yielded_parameters = parameters }
|
124
|
-
assert_equal [1, 2, 3], yielded_parameters
|
125
|
-
end
|
126
|
-
|
127
|
-
def test_should_yield_different_parameters_on_consecutive_invocations
|
128
|
-
expectation = new_expectation().yields(1, 2, 3).yields(4, 5)
|
129
|
-
yielded_parameters = []
|
130
|
-
expectation.invoke() { |*parameters| yielded_parameters << parameters }
|
131
|
-
expectation.invoke() { |*parameters| yielded_parameters << parameters }
|
132
|
-
assert_equal [[1, 2, 3], [4, 5]], yielded_parameters
|
133
|
-
end
|
134
|
-
|
135
|
-
def test_should_yield_multiple_times_for_single_invocation
|
136
|
-
expectation = new_expectation().multiple_yields([1, 2, 3], [4, 5])
|
137
|
-
yielded_parameters = []
|
138
|
-
expectation.invoke() { |*parameters| yielded_parameters << parameters }
|
139
|
-
assert_equal [[1, 2, 3], [4, 5]], yielded_parameters
|
140
|
-
end
|
141
|
-
|
142
|
-
def test_should_yield_multiple_times_for_first_invocation_and_once_for_second_invocation
|
143
|
-
expectation = new_expectation().multiple_yields([1, 2, 3], [4, 5]).then.yields(6, 7)
|
144
|
-
yielded_parameters = []
|
145
|
-
expectation.invoke() { |*parameters| yielded_parameters << parameters }
|
146
|
-
expectation.invoke() { |*parameters| yielded_parameters << parameters }
|
147
|
-
assert_equal [[1, 2, 3], [4, 5], [6, 7]], yielded_parameters
|
148
|
-
end
|
149
|
-
|
150
|
-
def test_should_return_specified_value
|
151
|
-
expectation = new_expectation.returns(99)
|
152
|
-
assert_equal 99, expectation.invoke
|
153
|
-
end
|
154
|
-
|
155
|
-
def test_should_return_same_specified_value_multiple_times
|
156
|
-
expectation = new_expectation.returns(99)
|
157
|
-
assert_equal 99, expectation.invoke
|
158
|
-
assert_equal 99, expectation.invoke
|
159
|
-
end
|
160
|
-
|
161
|
-
def test_should_return_specified_values_on_consecutive_calls
|
162
|
-
expectation = new_expectation.returns(99, 100, 101)
|
163
|
-
assert_equal 99, expectation.invoke
|
164
|
-
assert_equal 100, expectation.invoke
|
165
|
-
assert_equal 101, expectation.invoke
|
166
|
-
end
|
167
|
-
|
168
|
-
def test_should_return_specified_values_on_consecutive_calls_even_if_values_are_modified
|
169
|
-
values = [99, 100, 101]
|
170
|
-
expectation = new_expectation.returns(*values)
|
171
|
-
values.shift
|
172
|
-
assert_equal 99, expectation.invoke
|
173
|
-
assert_equal 100, expectation.invoke
|
174
|
-
assert_equal 101, expectation.invoke
|
175
|
-
end
|
176
|
-
|
177
|
-
def test_should_return_nil_by_default
|
178
|
-
assert_nil new_expectation.invoke
|
179
|
-
end
|
180
|
-
|
181
|
-
def test_should_return_nil_if_no_value_specified
|
182
|
-
expectation = new_expectation.returns()
|
183
|
-
assert_nil expectation.invoke
|
184
|
-
end
|
185
|
-
|
186
|
-
def test_should_raise_runtime_exception
|
187
|
-
expectation = new_expectation.raises
|
188
|
-
assert_raise(RuntimeError) { expectation.invoke }
|
189
|
-
end
|
190
|
-
|
191
|
-
def test_should_raise_custom_exception
|
192
|
-
exception = Class.new(Exception)
|
193
|
-
expectation = new_expectation.raises(exception)
|
194
|
-
assert_raise(exception) { expectation.invoke }
|
195
|
-
end
|
196
|
-
|
197
|
-
def test_should_raise_same_instance_of_custom_exception
|
198
|
-
exception_klass = Class.new(StandardError)
|
199
|
-
expected_exception = exception_klass.new
|
200
|
-
expectation = new_expectation.raises(expected_exception)
|
201
|
-
actual_exception = assert_raise(exception_klass) { expectation.invoke }
|
202
|
-
assert_same expected_exception, actual_exception
|
203
|
-
end
|
204
|
-
|
205
|
-
def test_should_use_the_default_exception_message
|
206
|
-
expectation = new_expectation.raises(Exception)
|
207
|
-
exception = assert_raise(Exception) { expectation.invoke }
|
208
|
-
assert_equal Exception.new.message, exception.message
|
209
|
-
end
|
210
|
-
|
211
|
-
def test_should_raise_custom_exception_with_message
|
212
|
-
exception_msg = "exception message"
|
213
|
-
expectation = new_expectation.raises(Exception, exception_msg)
|
214
|
-
exception = assert_raise(Exception) { expectation.invoke }
|
215
|
-
assert_equal exception_msg, exception.message
|
216
|
-
end
|
217
|
-
|
218
|
-
def test_should_return_values_then_raise_exception
|
219
|
-
expectation = new_expectation.returns(1, 2).then.raises()
|
220
|
-
assert_equal 1, expectation.invoke
|
221
|
-
assert_equal 2, expectation.invoke
|
222
|
-
assert_raise(RuntimeError) { expectation.invoke }
|
223
|
-
end
|
224
|
-
|
225
|
-
def test_should_raise_exception_then_return_values
|
226
|
-
expectation = new_expectation.raises().then.returns(1, 2)
|
227
|
-
assert_raise(RuntimeError) { expectation.invoke }
|
228
|
-
assert_equal 1, expectation.invoke
|
229
|
-
assert_equal 2, expectation.invoke
|
230
|
-
end
|
231
|
-
|
232
|
-
def test_should_verify_successfully_if_expected_call_was_made
|
233
|
-
expectation = new_expectation
|
234
|
-
expectation.invoke
|
235
|
-
assert expectation.verified?
|
236
|
-
end
|
237
|
-
|
238
|
-
def test_should_not_verify_successfully_if_call_expected_once_but_invoked_twice
|
239
|
-
expectation = new_expectation.once
|
240
|
-
expectation.invoke
|
241
|
-
expectation.invoke
|
242
|
-
assert !expectation.verified?
|
243
|
-
end
|
244
|
-
|
245
|
-
def test_should_not_verify_successfully_if_call_expected_once_but_not_invoked
|
246
|
-
expectation = new_expectation.once
|
247
|
-
assert !expectation.verified?
|
248
|
-
end
|
249
|
-
|
250
|
-
def test_should_verify_successfully_if_call_expected_once_and_invoked_once
|
251
|
-
expectation = new_expectation.once
|
252
|
-
expectation.invoke
|
253
|
-
assert expectation.verified?
|
254
|
-
end
|
255
|
-
|
256
|
-
def test_should_not_verify_successfully_if_call_expected_twice_and_invoked_three_times
|
257
|
-
expectation = new_expectation.twice
|
258
|
-
expectation.invoke
|
259
|
-
expectation.invoke
|
260
|
-
expectation.invoke
|
261
|
-
assert !expectation.verified?
|
262
|
-
end
|
263
|
-
|
264
|
-
def test_should_not_verify_successfully_if_call_expected_twice_but_invoked_once
|
265
|
-
expectation = new_expectation.twice
|
266
|
-
expectation.invoke
|
267
|
-
assert !expectation.verified?
|
268
|
-
end
|
269
|
-
|
270
|
-
def test_should_verify_successfully_if_call_expected_twice_and_invoked_twice
|
271
|
-
expectation = new_expectation.twice
|
272
|
-
expectation.invoke
|
273
|
-
expectation.invoke
|
274
|
-
assert expectation.verified?
|
275
|
-
end
|
276
|
-
|
277
|
-
def test_should_verify_successfully_if_expected_call_was_made_at_least_once
|
278
|
-
expectation = new_expectation.at_least_once
|
279
|
-
3.times {expectation.invoke}
|
280
|
-
assert expectation.verified?
|
281
|
-
end
|
282
|
-
|
283
|
-
def test_should_not_verify_successfully_if_expected_call_was_not_made_at_least_once
|
284
|
-
expectation = new_expectation.with(1, 2, 3).at_least_once
|
285
|
-
assert !expectation.verified?
|
286
|
-
assert_match(/expected at least once, not yet invoked/i, expectation.mocha_inspect)
|
287
|
-
end
|
288
|
-
|
289
|
-
def test_should_verify_successfully_if_expected_call_was_made_expected_number_of_times
|
290
|
-
expectation = new_expectation.times(2)
|
291
|
-
2.times {expectation.invoke}
|
292
|
-
assert expectation.verified?
|
293
|
-
end
|
294
|
-
|
295
|
-
def test_should_not_verify_successfully_if_expected_call_was_made_too_few_times
|
296
|
-
expectation = new_expectation.times(2)
|
297
|
-
1.times {expectation.invoke}
|
298
|
-
assert !expectation.verified?
|
299
|
-
assert_match(/expected exactly twice, invoked once/i, expectation.mocha_inspect)
|
300
|
-
end
|
301
|
-
|
302
|
-
def test_should_not_verify_successfully_if_expected_call_was_made_too_many_times
|
303
|
-
expectation = new_expectation.times(2)
|
304
|
-
3.times {expectation.invoke}
|
305
|
-
assert !expectation.verified?
|
306
|
-
end
|
307
|
-
|
308
|
-
def test_should_increment_assertion_counter_for_expectation_because_it_does_need_verifyng
|
309
|
-
expectation = new_expectation
|
310
|
-
expectation.invoke
|
311
|
-
assertion_counter = SimpleCounter.new
|
312
|
-
expectation.verified?(assertion_counter)
|
313
|
-
assert_equal 1, assertion_counter.count
|
314
|
-
end
|
315
|
-
|
316
|
-
def test_should_not_increment_assertion_counter_for_stub_because_it_does_not_need_verifying
|
317
|
-
stub = Expectation.new(nil, :expected_method).at_least(0)
|
318
|
-
assertion_counter = SimpleCounter.new
|
319
|
-
stub.verified?(assertion_counter)
|
320
|
-
assert_equal 0, assertion_counter.count
|
321
|
-
end
|
322
|
-
|
323
|
-
def test_should_store_backtrace_from_point_where_expectation_was_created
|
324
|
-
execution_point = ExecutionPoint.current; expectation = Expectation.new(nil, :expected_method)
|
325
|
-
assert_equal execution_point, ExecutionPoint.new(expectation.backtrace)
|
326
|
-
end
|
327
|
-
|
328
|
-
class FakeMock
|
329
|
-
|
330
|
-
def initialize(name)
|
331
|
-
@name = name
|
332
|
-
end
|
333
|
-
|
334
|
-
def mocha_inspect
|
335
|
-
@name
|
336
|
-
end
|
337
|
-
|
338
|
-
end
|
339
|
-
|
340
|
-
def test_should_raise_error_with_message_indicating_which_method_was_expected_to_be_called_on_which_mock_object_with_which_parameters_and_in_what_sequences
|
341
|
-
mock = FakeMock.new('mock')
|
342
|
-
sequence_one = Sequence.new('one')
|
343
|
-
sequence_two = Sequence.new('two')
|
344
|
-
expectation = Expectation.new(mock, :expected_method).with(1, 2, {'a' => true}, {:b => false}, [1, 2, 3]).in_sequence(sequence_one, sequence_two)
|
345
|
-
assert !expectation.verified?
|
346
|
-
assert_match "mock.expected_method(1, 2, {'a' => true}, {:b => false}, [1, 2, 3]); in sequence 'one'; in sequence 'two'", expectation.mocha_inspect
|
347
|
-
end
|
348
|
-
|
349
|
-
class FakeConstraint
|
350
|
-
|
351
|
-
def initialize(allows_invocation_now)
|
352
|
-
@allows_invocation_now = allows_invocation_now
|
353
|
-
end
|
354
|
-
|
355
|
-
def allows_invocation_now?
|
356
|
-
@allows_invocation_now
|
357
|
-
end
|
358
|
-
|
359
|
-
end
|
360
|
-
|
361
|
-
def test_should_be_in_correct_order_if_all_ordering_constraints_allow_invocation_now
|
362
|
-
constraint_one = FakeConstraint.new(allows_invocation_now = true)
|
363
|
-
constraint_two = FakeConstraint.new(allows_invocation_now = true)
|
364
|
-
expectation = Expectation.new(nil, :method_one)
|
365
|
-
expectation.add_ordering_constraint(constraint_one)
|
366
|
-
expectation.add_ordering_constraint(constraint_two)
|
367
|
-
assert expectation.in_correct_order?
|
368
|
-
end
|
369
|
-
|
370
|
-
def test_should_not_be_in_correct_order_if_one_ordering_constraint_does_not_allow_invocation_now
|
371
|
-
constraint_one = FakeConstraint.new(allows_invocation_now = true)
|
372
|
-
constraint_two = FakeConstraint.new(allows_invocation_now = false)
|
373
|
-
expectation = Expectation.new(nil, :method_one)
|
374
|
-
expectation.add_ordering_constraint(constraint_one)
|
375
|
-
expectation.add_ordering_constraint(constraint_two)
|
376
|
-
assert !expectation.in_correct_order?
|
377
|
-
end
|
378
|
-
|
379
|
-
def test_should_match_if_all_ordering_constraints_allow_invocation_now
|
380
|
-
constraint_one = FakeConstraint.new(allows_invocation_now = true)
|
381
|
-
constraint_two = FakeConstraint.new(allows_invocation_now = true)
|
382
|
-
expectation = Expectation.new(nil, :method_one)
|
383
|
-
expectation.add_ordering_constraint(constraint_one)
|
384
|
-
expectation.add_ordering_constraint(constraint_two)
|
385
|
-
assert expectation.match?(:method_one)
|
386
|
-
end
|
387
|
-
|
388
|
-
def test_should_not_match_if_one_ordering_constraints_does_not_allow_invocation_now
|
389
|
-
constraint_one = FakeConstraint.new(allows_invocation_now = true)
|
390
|
-
constraint_two = FakeConstraint.new(allows_invocation_now = false)
|
391
|
-
expectation = Expectation.new(nil, :method_one)
|
392
|
-
expectation.add_ordering_constraint(constraint_one)
|
393
|
-
expectation.add_ordering_constraint(constraint_two)
|
394
|
-
assert !expectation.match?(:method_one)
|
395
|
-
end
|
396
|
-
|
397
|
-
def test_should_not_be_satisfied_when_required_invocation_has_not_been_made
|
398
|
-
expectation = Expectation.new(nil, :method_one).times(1)
|
399
|
-
assert !expectation.satisfied?
|
400
|
-
end
|
401
|
-
|
402
|
-
def test_should_be_satisfied_when_required_invocation_has_been_made
|
403
|
-
expectation = Expectation.new(nil, :method_one).times(1)
|
404
|
-
expectation.invoke
|
405
|
-
assert expectation.satisfied?
|
406
|
-
end
|
407
|
-
|
408
|
-
def test_should_not_be_satisfied_when_minimum_number_of_invocations_has_not_been_made
|
409
|
-
expectation = Expectation.new(nil, :method_one).at_least(2)
|
410
|
-
expectation.invoke
|
411
|
-
assert !expectation.satisfied?
|
412
|
-
end
|
413
|
-
|
414
|
-
def test_should_be_satisfied_when_minimum_number_of_invocations_has_been_made
|
415
|
-
expectation = Expectation.new(nil, :method_one).at_least(2)
|
416
|
-
2.times { expectation.invoke }
|
417
|
-
assert expectation.satisfied?
|
418
|
-
end
|
419
|
-
|
420
|
-
class FakeSequence
|
421
|
-
|
422
|
-
attr_reader :expectations
|
423
|
-
|
424
|
-
def initialize
|
425
|
-
@expectations = []
|
426
|
-
end
|
427
|
-
|
428
|
-
def constrain_as_next_in_sequence(expectation)
|
429
|
-
@expectations << expectation
|
430
|
-
end
|
431
|
-
|
432
|
-
end
|
433
|
-
|
434
|
-
def test_should_tell_sequences_to_constrain_expectation_as_next_in_sequence
|
435
|
-
sequence_one = FakeSequence.new
|
436
|
-
sequence_two = FakeSequence.new
|
437
|
-
expectation = Expectation.new(nil, :method_one)
|
438
|
-
assert_equal expectation, expectation.in_sequence(sequence_one, sequence_two)
|
439
|
-
assert_equal [expectation], sequence_one.expectations
|
440
|
-
assert_equal [expectation], sequence_two.expectations
|
441
|
-
end
|
442
|
-
|
443
|
-
class FakeState
|
444
|
-
|
445
|
-
def initialize
|
446
|
-
@active = false
|
447
|
-
end
|
448
|
-
|
449
|
-
def activate
|
450
|
-
@active = true
|
451
|
-
end
|
452
|
-
|
453
|
-
def active?
|
454
|
-
@active
|
455
|
-
end
|
456
|
-
|
457
|
-
end
|
458
|
-
|
459
|
-
def test_should_change_state_when_expectation_is_invoked
|
460
|
-
state = FakeState.new
|
461
|
-
expectation = Expectation.new(nil, :method_one)
|
462
|
-
|
463
|
-
expectation.then(state)
|
464
|
-
|
465
|
-
expectation.invoke
|
466
|
-
assert state.active?
|
467
|
-
end
|
468
|
-
|
469
|
-
def test_should_match_when_state_is_active
|
470
|
-
state = FakeState.new
|
471
|
-
expectation = Expectation.new(nil, :method_one)
|
472
|
-
|
473
|
-
expectation.when(state)
|
474
|
-
assert !expectation.match?(:method_one)
|
475
|
-
|
476
|
-
state.activate
|
477
|
-
assert expectation.match?(:method_one)
|
478
|
-
end
|
479
|
-
|
480
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
require 'mocha/inspect'
|
3
|
-
|
4
|
-
class HashInspectTest < Test::Unit::TestCase
|
5
|
-
|
6
|
-
def test_should_keep_spacing_between_key_value
|
7
|
-
hash = {:a => true}
|
8
|
-
assert_equal '{:a => true}', hash.mocha_inspect
|
9
|
-
end
|
10
|
-
|
11
|
-
def test_should_use_mocha_inspect_on_each_item
|
12
|
-
hash = {:a => 'mocha'}
|
13
|
-
assert_equal "{:a => 'mocha'}", hash.mocha_inspect
|
14
|
-
end
|
15
|
-
|
16
|
-
end
|
@@ -1,43 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
|
3
|
-
require 'mocha/in_state_ordering_constraint'
|
4
|
-
|
5
|
-
class InStateOrderingConstraintTest < Test::Unit::TestCase
|
6
|
-
|
7
|
-
include Mocha
|
8
|
-
|
9
|
-
class FakeStatePredicate
|
10
|
-
|
11
|
-
attr_writer :active, :description
|
12
|
-
|
13
|
-
def active?
|
14
|
-
@active
|
15
|
-
end
|
16
|
-
|
17
|
-
def mocha_inspect
|
18
|
-
@description
|
19
|
-
end
|
20
|
-
|
21
|
-
end
|
22
|
-
|
23
|
-
def test_should_allow_invocation_when_state_is_active
|
24
|
-
state_predicate = FakeStatePredicate.new
|
25
|
-
ordering_constraint = InStateOrderingConstraint.new(state_predicate)
|
26
|
-
|
27
|
-
state_predicate.active = true
|
28
|
-
assert ordering_constraint.allows_invocation_now?
|
29
|
-
|
30
|
-
state_predicate.active = false
|
31
|
-
assert !ordering_constraint.allows_invocation_now?
|
32
|
-
end
|
33
|
-
|
34
|
-
def test_should_describe_itself_in_terms_of_the_state_predicates_description
|
35
|
-
state_predicate = FakeStatePredicate.new
|
36
|
-
ordering_constraint = InStateOrderingConstraint.new(state_predicate)
|
37
|
-
|
38
|
-
state_predicate.description = 'the-state-predicate'
|
39
|
-
|
40
|
-
assert_equal 'when the-state-predicate', ordering_constraint.mocha_inspect
|
41
|
-
end
|
42
|
-
|
43
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
require File.expand_path('../../test_helper', __FILE__)
|
2
|
-
require 'mocha/method_matcher'
|
3
|
-
|
4
|
-
class MethodMatcherTest < Test::Unit::TestCase
|
5
|
-
|
6
|
-
include Mocha
|
7
|
-
|
8
|
-
def test_should_match_if_actual_method_name_is_same_as_expected_method_name
|
9
|
-
method_matcher = MethodMatcher.new(:method_name)
|
10
|
-
assert method_matcher.match?(:method_name)
|
11
|
-
end
|
12
|
-
|
13
|
-
def test_should_not_match_if_actual_method_name_is_not_same_as_expected_method_name
|
14
|
-
method_matcher = MethodMatcher.new(:method_name)
|
15
|
-
assert !method_matcher.match?(:different_method_name)
|
16
|
-
end
|
17
|
-
|
18
|
-
def test_should_describe_what_method_is_expected
|
19
|
-
method_matcher = MethodMatcher.new(:method_name)
|
20
|
-
assert_equal "method_name", method_matcher.mocha_inspect
|
21
|
-
end
|
22
|
-
|
23
|
-
end
|