jferris-mocha 0.9.5.0.1240002286
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +3 -0
- data/MIT-LICENSE +7 -0
- data/README +37 -0
- data/RELEASE +269 -0
- data/Rakefile +217 -0
- data/examples/misc.rb +43 -0
- data/examples/mocha.rb +25 -0
- data/examples/stubba.rb +64 -0
- data/lib/mocha/any_instance_method.rb +55 -0
- data/lib/mocha/api.rb +232 -0
- data/lib/mocha/argument_iterator.rb +21 -0
- data/lib/mocha/backtrace_filter.rb +17 -0
- data/lib/mocha/cardinality.rb +95 -0
- data/lib/mocha/central.rb +27 -0
- data/lib/mocha/change_state_side_effect.rb +19 -0
- data/lib/mocha/class_method.rb +87 -0
- data/lib/mocha/configuration.rb +60 -0
- data/lib/mocha/deprecation.rb +22 -0
- data/lib/mocha/exception_raiser.rb +17 -0
- data/lib/mocha/expectation.rb +484 -0
- data/lib/mocha/expectation_error.rb +15 -0
- data/lib/mocha/expectation_list.rb +50 -0
- data/lib/mocha/in_state_ordering_constraint.rb +19 -0
- data/lib/mocha/inspect.rb +67 -0
- data/lib/mocha/instance_method.rb +16 -0
- data/lib/mocha/integration/bacon/assertion_counter.rb +23 -0
- data/lib/mocha/integration/bacon/version_11_and_above.rb +34 -0
- data/lib/mocha/integration/bacon.rb +1 -0
- data/lib/mocha/integration/mini_test/assertion_counter.rb +23 -0
- data/lib/mocha/integration/mini_test/version_131_and_above.rb +49 -0
- data/lib/mocha/integration/mini_test.rb +1 -0
- data/lib/mocha/integration/test_unit/assertion_counter.rb +23 -0
- data/lib/mocha/integration/test_unit/gem_version_200.rb +49 -0
- data/lib/mocha/integration/test_unit/gem_version_201_and_above.rb +49 -0
- data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +48 -0
- data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +50 -0
- data/lib/mocha/integration/test_unit.rb +4 -0
- data/lib/mocha/invocation.rb +10 -0
- data/lib/mocha/is_a.rb +9 -0
- data/lib/mocha/logger.rb +15 -0
- data/lib/mocha/metaclass.rb +13 -0
- data/lib/mocha/method_matcher.rb +21 -0
- data/lib/mocha/mock.rb +200 -0
- data/lib/mocha/mockery.rb +189 -0
- data/lib/mocha/module_method.rb +16 -0
- data/lib/mocha/multiple_yields.rb +20 -0
- data/lib/mocha/names.rb +53 -0
- data/lib/mocha/no_yields.rb +11 -0
- data/lib/mocha/object.rb +187 -0
- data/lib/mocha/parameter_matchers/all_of.rb +42 -0
- data/lib/mocha/parameter_matchers/any_of.rb +47 -0
- data/lib/mocha/parameter_matchers/any_parameters.rb +40 -0
- data/lib/mocha/parameter_matchers/anything.rb +33 -0
- data/lib/mocha/parameter_matchers/base.rb +15 -0
- data/lib/mocha/parameter_matchers/equals.rb +42 -0
- data/lib/mocha/parameter_matchers/has_entries.rb +45 -0
- data/lib/mocha/parameter_matchers/has_entry.rb +57 -0
- data/lib/mocha/parameter_matchers/has_key.rb +42 -0
- data/lib/mocha/parameter_matchers/has_value.rb +42 -0
- data/lib/mocha/parameter_matchers/includes.rb +40 -0
- data/lib/mocha/parameter_matchers/instance_of.rb +42 -0
- data/lib/mocha/parameter_matchers/is_a.rb +42 -0
- data/lib/mocha/parameter_matchers/kind_of.rb +42 -0
- data/lib/mocha/parameter_matchers/not.rb +42 -0
- data/lib/mocha/parameter_matchers/object.rb +15 -0
- data/lib/mocha/parameter_matchers/optionally.rb +55 -0
- data/lib/mocha/parameter_matchers/regexp_matches.rb +43 -0
- data/lib/mocha/parameter_matchers/responds_with.rb +43 -0
- data/lib/mocha/parameter_matchers/yaml_equivalent.rb +43 -0
- data/lib/mocha/parameter_matchers.rb +27 -0
- data/lib/mocha/parameters_matcher.rb +37 -0
- data/lib/mocha/pretty_parameters.rb +28 -0
- data/lib/mocha/return_values.rb +31 -0
- data/lib/mocha/sequence.rb +42 -0
- data/lib/mocha/single_return_value.rb +17 -0
- data/lib/mocha/single_yield.rb +18 -0
- data/lib/mocha/state_machine.rb +91 -0
- data/lib/mocha/stubbing_error.rb +16 -0
- data/lib/mocha/unexpected_invocation.rb +18 -0
- data/lib/mocha/yield_parameters.rb +31 -0
- data/lib/mocha.rb +69 -0
- data/lib/mocha_standalone.rb +2 -0
- data/lib/stubba.rb +4 -0
- data/test/acceptance/acceptance_test_helper.rb +38 -0
- data/test/acceptance/api_test.rb +139 -0
- data/test/acceptance/bacon_spec.rb +67 -0
- data/test/acceptance/bacon_test.rb +110 -0
- data/test/acceptance/bug_18914_test.rb +43 -0
- data/test/acceptance/bug_21465_test.rb +34 -0
- data/test/acceptance/bug_21563_test.rb +25 -0
- data/test/acceptance/expected_invocation_count_test.rb +196 -0
- data/test/acceptance/failure_messages_test.rb +64 -0
- data/test/acceptance/minitest_test.rb +146 -0
- data/test/acceptance/mocha_example_test.rb +98 -0
- data/test/acceptance/mocha_test_result_test.rb +84 -0
- data/test/acceptance/mock_test.rb +100 -0
- data/test/acceptance/mock_with_initializer_block_test.rb +51 -0
- data/test/acceptance/mocked_methods_dispatch_test.rb +78 -0
- data/test/acceptance/optional_parameters_test.rb +70 -0
- data/test/acceptance/parameter_matcher_test.rb +209 -0
- data/test/acceptance/partial_mocks_test.rb +47 -0
- data/test/acceptance/return_value_test.rb +52 -0
- data/test/acceptance/sequence_test.rb +186 -0
- data/test/acceptance/spy_test.rb +109 -0
- data/test/acceptance/states_test.rb +70 -0
- data/test/acceptance/stub_any_instance_method_test.rb +195 -0
- data/test/acceptance/stub_class_method_test.rb +203 -0
- data/test/acceptance/stub_everything_test.rb +56 -0
- data/test/acceptance/stub_instance_method_test.rb +203 -0
- data/test/acceptance/stub_module_method_test.rb +163 -0
- data/test/acceptance/stub_test.rb +52 -0
- data/test/acceptance/stubba_example_test.rb +102 -0
- data/test/acceptance/stubba_test.rb +15 -0
- data/test/acceptance/stubba_test_result_test.rb +66 -0
- data/test/acceptance/stubbing_error_backtrace_test.rb +64 -0
- data/test/acceptance/stubbing_method_unnecessarily_test.rb +65 -0
- data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +130 -0
- data/test/acceptance/stubbing_non_existent_class_method_test.rb +157 -0
- data/test/acceptance/stubbing_non_existent_instance_method_test.rb +147 -0
- data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +130 -0
- data/test/acceptance/stubbing_non_public_class_method_test.rb +163 -0
- data/test/acceptance/stubbing_non_public_instance_method_test.rb +143 -0
- data/test/acceptance/stubbing_on_non_mock_object_test.rb +64 -0
- data/test/deprecation_disabler.rb +15 -0
- data/test/execution_point.rb +36 -0
- data/test/matcher_helpers.rb +5 -0
- data/test/method_definer.rb +24 -0
- data/test/simple_counter.rb +13 -0
- data/test/test_helper.rb +16 -0
- data/test/test_runner.rb +33 -0
- data/test/unit/any_instance_method_test.rb +126 -0
- data/test/unit/array_inspect_test.rb +16 -0
- data/test/unit/assert_received_test.rb +136 -0
- data/test/unit/backtrace_filter_test.rb +19 -0
- data/test/unit/cardinality_test.rb +56 -0
- data/test/unit/central_test.rb +65 -0
- data/test/unit/change_state_side_effect_test.rb +41 -0
- data/test/unit/class_method_test.rb +237 -0
- data/test/unit/date_time_inspect_test.rb +21 -0
- data/test/unit/exception_raiser_test.rb +42 -0
- data/test/unit/expectation_list_test.rb +57 -0
- data/test/unit/expectation_test.rb +526 -0
- data/test/unit/hash_inspect_test.rb +16 -0
- data/test/unit/have_received_test.rb +137 -0
- data/test/unit/in_state_ordering_constraint_test.rb +43 -0
- data/test/unit/invocation_test.rb +17 -0
- data/test/unit/metaclass_test.rb +22 -0
- data/test/unit/method_matcher_test.rb +23 -0
- data/test/unit/mock_test.rb +329 -0
- data/test/unit/mockery_test.rb +163 -0
- data/test/unit/multiple_yields_test.rb +18 -0
- data/test/unit/no_yields_test.rb +18 -0
- data/test/unit/object_inspect_test.rb +37 -0
- data/test/unit/object_test.rb +82 -0
- data/test/unit/parameter_matchers/all_of_test.rb +26 -0
- data/test/unit/parameter_matchers/any_of_test.rb +26 -0
- data/test/unit/parameter_matchers/anything_test.rb +21 -0
- data/test/unit/parameter_matchers/equals_test.rb +25 -0
- data/test/unit/parameter_matchers/has_entries_test.rb +51 -0
- data/test/unit/parameter_matchers/has_entry_test.rb +82 -0
- data/test/unit/parameter_matchers/has_key_test.rb +36 -0
- data/test/unit/parameter_matchers/has_value_test.rb +37 -0
- data/test/unit/parameter_matchers/includes_test.rb +25 -0
- data/test/unit/parameter_matchers/instance_of_test.rb +25 -0
- data/test/unit/parameter_matchers/is_a_test.rb +25 -0
- data/test/unit/parameter_matchers/kind_of_test.rb +25 -0
- data/test/unit/parameter_matchers/not_test.rb +26 -0
- data/test/unit/parameter_matchers/regexp_matches_test.rb +25 -0
- data/test/unit/parameter_matchers/responds_with_test.rb +25 -0
- data/test/unit/parameter_matchers/stub_matcher.rb +27 -0
- data/test/unit/parameter_matchers/yaml_equivalent_test.rb +25 -0
- data/test/unit/parameters_matcher_test.rb +121 -0
- data/test/unit/return_values_test.rb +63 -0
- data/test/unit/sequence_test.rb +104 -0
- data/test/unit/single_return_value_test.rb +14 -0
- data/test/unit/single_yield_test.rb +18 -0
- data/test/unit/state_machine_test.rb +98 -0
- data/test/unit/string_inspect_test.rb +11 -0
- data/test/unit/yield_parameters_test.rb +93 -0
- metadata +245 -0
@@ -0,0 +1,110 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
|
3
|
+
begin
|
4
|
+
require 'bacon'
|
5
|
+
rescue LoadError
|
6
|
+
# Bacon not available
|
7
|
+
end
|
8
|
+
|
9
|
+
if defined?(Bacon) && Bacon::VERSION >= "1.1"
|
10
|
+
|
11
|
+
class BaconRunner
|
12
|
+
|
13
|
+
attr_reader :output, :tests, :assertions, :failures, :errors
|
14
|
+
|
15
|
+
def initialize(*paths)
|
16
|
+
@paths = paths
|
17
|
+
end
|
18
|
+
|
19
|
+
def run(name)
|
20
|
+
@output = `bacon -n '#{name}' #{@paths.join(' ')}`
|
21
|
+
numbers = @output.scan(/(\d+) tests, (\d+) assertions, (\d+) failures, (\d+) errors/)
|
22
|
+
numbers.flatten!.map!{|e| e.to_i}
|
23
|
+
|
24
|
+
@tests = numbers[0]
|
25
|
+
@assertions = numbers[1]
|
26
|
+
@failures = numbers[2]
|
27
|
+
@errors = numbers[3]
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
class BaconTest < Test::Unit::TestCase
|
33
|
+
|
34
|
+
def setup
|
35
|
+
@runner = BaconRunner.new("#{File.dirname(__FILE__)}/bacon_spec.rb")
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_should_pass_mocha_test
|
39
|
+
|
40
|
+
@runner.run('should pass when all expectations were fulfilled')
|
41
|
+
|
42
|
+
assert_equal 0, @runner.errors
|
43
|
+
assert_equal 1, @runner.tests
|
44
|
+
end
|
45
|
+
|
46
|
+
def test_should_fail_mocha_test_due_to_unfulfilled_expectation
|
47
|
+
|
48
|
+
@runner.run('should fail when not all expectations were fulfilled')
|
49
|
+
|
50
|
+
assert_equal 1, @runner.errors
|
51
|
+
assert_equal 1, @runner.tests
|
52
|
+
assert_not_all_expectation_were_satisfied(@runner.output)
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
def test_should_fail_mocha_test_due_to_unexpected_invocation
|
57
|
+
@runner.run('should fail when there is an unexpected invocation')
|
58
|
+
|
59
|
+
assert_equal 1, @runner.errors
|
60
|
+
assert_equal 1, @runner.tests
|
61
|
+
assert_unexpected_invocation(@runner.output)
|
62
|
+
end
|
63
|
+
|
64
|
+
|
65
|
+
def test_should_pass_stubba_test
|
66
|
+
@runner.run('should pass when all Stubba expectations are fulfilled')
|
67
|
+
|
68
|
+
assert_equal 0, @runner.errors
|
69
|
+
assert_equal 1, @runner.tests
|
70
|
+
end
|
71
|
+
|
72
|
+
def test_should_fail_stubba_test_due_to_unfulfilled_expectation
|
73
|
+
@runner.run('should fail when not all Stubba expectations were fulfilled')
|
74
|
+
|
75
|
+
assert_equal 1, @runner.errors
|
76
|
+
assert_equal 1, @runner.tests
|
77
|
+
assert_not_all_expectation_were_satisfied(@runner.output)
|
78
|
+
end
|
79
|
+
|
80
|
+
def test_should_pass_mocha_test_with_matching_parameter
|
81
|
+
@runner.run('should pass when they receive all expected parameters')
|
82
|
+
|
83
|
+
assert_equal 0, @runner.errors
|
84
|
+
assert_equal 1, @runner.tests
|
85
|
+
end
|
86
|
+
|
87
|
+
def test_should_fail_mocha_test_with_non_matching_parameter
|
88
|
+
@runner.run('should fail when they receive unexpected parameters')
|
89
|
+
|
90
|
+
assert_equal 1, @runner.errors
|
91
|
+
assert_equal 1, @runner.tests
|
92
|
+
assert_unexpected_invocation(@runner.output)
|
93
|
+
end
|
94
|
+
|
95
|
+
private
|
96
|
+
|
97
|
+
def assert_unexpected_invocation(string)
|
98
|
+
assert_match Regexp.new('unexpected invocation'), string, "Bacon output:\n#{string}"
|
99
|
+
end
|
100
|
+
|
101
|
+
def assert_not_all_expectation_were_satisfied(string)
|
102
|
+
assert_match Regexp.new('not all expectations were satisfied'), string, "Bacon output:\n#{string}"
|
103
|
+
end
|
104
|
+
|
105
|
+
end
|
106
|
+
|
107
|
+
else
|
108
|
+
warn "Bacon is not available, so BaconTest has not been run."
|
109
|
+
end
|
110
|
+
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
require 'mocha'
|
3
|
+
|
4
|
+
class Bug18914Test < Test::Unit::TestCase
|
5
|
+
|
6
|
+
include AcceptanceTest
|
7
|
+
|
8
|
+
def setup
|
9
|
+
setup_acceptance_test
|
10
|
+
end
|
11
|
+
|
12
|
+
def teardown
|
13
|
+
teardown_acceptance_test
|
14
|
+
end
|
15
|
+
|
16
|
+
class AlwaysEql
|
17
|
+
|
18
|
+
def my_method
|
19
|
+
true
|
20
|
+
end
|
21
|
+
|
22
|
+
def ==(o)
|
23
|
+
true
|
24
|
+
end
|
25
|
+
|
26
|
+
def eql?(o)
|
27
|
+
true
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_should_not_allow_stubbing_of_non_mock_instance_disrupted_by_legitimate_overriding_of_eql_method
|
33
|
+
|
34
|
+
always_eql_1 = AlwaysEql.new
|
35
|
+
always_eql_1.stubs(:my_method).returns(false)
|
36
|
+
|
37
|
+
always_eql_2 = AlwaysEql.new
|
38
|
+
always_eql_2.stubs(:my_method).returns(false)
|
39
|
+
|
40
|
+
assert_equal false, always_eql_2.my_method
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
require 'mocha'
|
3
|
+
|
4
|
+
class Bug21465Test < Test::Unit::TestCase
|
5
|
+
|
6
|
+
include AcceptanceTest
|
7
|
+
|
8
|
+
def setup
|
9
|
+
setup_acceptance_test
|
10
|
+
end
|
11
|
+
|
12
|
+
def teardown
|
13
|
+
teardown_acceptance_test
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_should_allow_expected_method_name_to_be_a_string
|
17
|
+
test_result = run_as_test do
|
18
|
+
mock = mock()
|
19
|
+
mock.expects('wibble')
|
20
|
+
mock.wibble
|
21
|
+
end
|
22
|
+
assert_passed(test_result)
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_should_allow_stubbed_method_name_to_be_a_string
|
26
|
+
test_result = run_as_test do
|
27
|
+
mock = mock()
|
28
|
+
mock.stubs('wibble')
|
29
|
+
mock.wibble
|
30
|
+
end
|
31
|
+
assert_passed(test_result)
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
require 'mocha'
|
3
|
+
|
4
|
+
class Bug21563Test < Test::Unit::TestCase
|
5
|
+
|
6
|
+
include AcceptanceTest
|
7
|
+
|
8
|
+
def setup
|
9
|
+
setup_acceptance_test
|
10
|
+
end
|
11
|
+
|
12
|
+
def teardown
|
13
|
+
teardown_acceptance_test
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_should_allow_stubbing_of_verified_method
|
17
|
+
test_result = run_as_test do
|
18
|
+
object = Object.new
|
19
|
+
object.stubs(:verified?).returns(false)
|
20
|
+
assert !object.verified?
|
21
|
+
end
|
22
|
+
assert_passed(test_result)
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,196 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
require 'mocha'
|
3
|
+
|
4
|
+
class ExpectedInvocationCountTest < Test::Unit::TestCase
|
5
|
+
|
6
|
+
include AcceptanceTest
|
7
|
+
|
8
|
+
def setup
|
9
|
+
setup_acceptance_test
|
10
|
+
end
|
11
|
+
|
12
|
+
def teardown
|
13
|
+
teardown_acceptance_test
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_should_pass_if_method_is_never_expected_and_is_never_called
|
17
|
+
test_result = run_as_test do
|
18
|
+
mock = mock('mock')
|
19
|
+
mock.expects(:method).never
|
20
|
+
0.times { mock.method }
|
21
|
+
end
|
22
|
+
assert_passed(test_result)
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_should_fail_fast_if_method_is_never_expected_but_is_called_once
|
26
|
+
test_result = run_as_test do
|
27
|
+
mock = mock('mock')
|
28
|
+
mock.expects(:method).never
|
29
|
+
1.times { mock.method }
|
30
|
+
end
|
31
|
+
assert_failed(test_result)
|
32
|
+
assert_equal ["unexpected invocation: #<Mock:mock>.method()\nsatisfied expectations:\n- expected never, not yet invoked: #<Mock:mock>.method(any_parameters)\n"], test_result.failure_messages
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_should_pass_if_method_is_expected_twice_and_is_called_twice
|
36
|
+
test_result = run_as_test do
|
37
|
+
mock = mock('mock')
|
38
|
+
mock.expects(:method).twice
|
39
|
+
2.times { mock.method }
|
40
|
+
end
|
41
|
+
assert_passed(test_result)
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_should_fail_if_method_is_expected_twice_but_is_called_once
|
45
|
+
test_result = run_as_test do
|
46
|
+
mock = mock('mock')
|
47
|
+
mock.expects(:method).twice
|
48
|
+
1.times { mock.method }
|
49
|
+
end
|
50
|
+
assert_failed(test_result)
|
51
|
+
assert_equal ["not all expectations were satisfied\nunsatisfied expectations:\n- expected exactly twice, already invoked once: #<Mock:mock>.method(any_parameters)\n"], test_result.failure_messages
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_should_fail_fast_if_method_is_expected_twice_but_is_called_three_times
|
55
|
+
test_result = run_as_test do
|
56
|
+
mock = mock('mock')
|
57
|
+
mock.expects(:method).twice
|
58
|
+
3.times { mock.method }
|
59
|
+
end
|
60
|
+
assert_failed(test_result)
|
61
|
+
assert_equal ["unexpected invocation: #<Mock:mock>.method()\nsatisfied expectations:\n- expected exactly twice, already invoked twice: #<Mock:mock>.method(any_parameters)\n"], test_result.failure_messages
|
62
|
+
end
|
63
|
+
|
64
|
+
def test_should_pass_if_method_is_expected_between_two_and_four_times_and_is_called_twice
|
65
|
+
test_result = run_as_test do
|
66
|
+
mock = mock('mock')
|
67
|
+
mock.expects(:method).times(2..4)
|
68
|
+
2.times { mock.method }
|
69
|
+
end
|
70
|
+
assert_passed(test_result)
|
71
|
+
end
|
72
|
+
|
73
|
+
def test_should_pass_if_method_is_expected_between_two_and_four_times_and_is_called_three_times
|
74
|
+
test_result = run_as_test do
|
75
|
+
mock = mock('mock')
|
76
|
+
mock.expects(:method).times(2..4)
|
77
|
+
3.times { mock.method }
|
78
|
+
end
|
79
|
+
assert_passed(test_result)
|
80
|
+
end
|
81
|
+
|
82
|
+
def test_should_pass_if_method_is_expected_between_two_and_four_times_and_is_called_four_times
|
83
|
+
test_result = run_as_test do
|
84
|
+
mock = mock('mock')
|
85
|
+
mock.expects(:method).times(2..4)
|
86
|
+
4.times { mock.method }
|
87
|
+
end
|
88
|
+
assert_passed(test_result)
|
89
|
+
end
|
90
|
+
|
91
|
+
def test_should_fail_if_method_is_expected_between_two_and_four_times_and_is_called_once
|
92
|
+
test_result = run_as_test do
|
93
|
+
mock = mock('mock')
|
94
|
+
mock.expects(:method).times(2..4)
|
95
|
+
1.times { mock.method }
|
96
|
+
end
|
97
|
+
assert_failed(test_result)
|
98
|
+
assert_equal ["not all expectations were satisfied\nunsatisfied expectations:\n- expected between 2 and 4 times, already invoked once: #<Mock:mock>.method(any_parameters)\n"], test_result.failure_messages
|
99
|
+
end
|
100
|
+
|
101
|
+
def test_should_fail_fast_if_method_is_expected_between_two_and_four_times_and_is_called_five_times
|
102
|
+
test_result = run_as_test do
|
103
|
+
mock = mock('mock')
|
104
|
+
mock.expects(:method).times(2..4)
|
105
|
+
5.times { mock.method }
|
106
|
+
end
|
107
|
+
assert_failed(test_result)
|
108
|
+
assert_equal ["unexpected invocation: #<Mock:mock>.method()\nsatisfied expectations:\n- expected between 2 and 4 times, already invoked 4 times: #<Mock:mock>.method(any_parameters)\n"], test_result.failure_messages
|
109
|
+
end
|
110
|
+
|
111
|
+
def test_should_pass_if_method_is_expected_at_least_once_and_is_called_once
|
112
|
+
test_result = run_as_test do
|
113
|
+
mock = mock('mock')
|
114
|
+
mock.expects(:method).at_least_once
|
115
|
+
1.times { mock.method }
|
116
|
+
end
|
117
|
+
assert_passed(test_result)
|
118
|
+
end
|
119
|
+
|
120
|
+
def test_should_pass_if_method_is_expected_at_least_once_and_is_called_twice
|
121
|
+
test_result = run_as_test do
|
122
|
+
mock = mock('mock')
|
123
|
+
mock.expects(:method).at_least_once
|
124
|
+
2.times { mock.method }
|
125
|
+
end
|
126
|
+
assert_passed(test_result)
|
127
|
+
end
|
128
|
+
|
129
|
+
def test_should_fail_if_method_is_expected_at_least_once_but_is_never_called
|
130
|
+
test_result = run_as_test do
|
131
|
+
mock = mock('mock')
|
132
|
+
mock.expects(:method).at_least_once
|
133
|
+
0.times { mock.method }
|
134
|
+
end
|
135
|
+
assert_failed(test_result)
|
136
|
+
assert_equal ["not all expectations were satisfied\nunsatisfied expectations:\n- expected at least once, not yet invoked: #<Mock:mock>.method(any_parameters)\n"], test_result.failure_messages
|
137
|
+
end
|
138
|
+
|
139
|
+
def test_should_pass_if_method_is_expected_at_most_once_and_is_never_called
|
140
|
+
test_result = run_as_test do
|
141
|
+
mock = mock('mock')
|
142
|
+
mock.expects(:method).at_most_once
|
143
|
+
0.times { mock.method }
|
144
|
+
end
|
145
|
+
assert_passed(test_result)
|
146
|
+
end
|
147
|
+
|
148
|
+
def test_should_pass_if_method_is_expected_at_most_once_and_called_once
|
149
|
+
test_result = run_as_test do
|
150
|
+
mock = mock('mock')
|
151
|
+
mock.expects(:method).at_most_once
|
152
|
+
1.times { mock.method }
|
153
|
+
end
|
154
|
+
assert_passed(test_result)
|
155
|
+
end
|
156
|
+
|
157
|
+
def test_should_fail_fast_if_method_is_expected_at_most_once_but_is_called_twice
|
158
|
+
test_result = run_as_test do
|
159
|
+
mock = mock('mock')
|
160
|
+
mock.expects(:method).at_most_once
|
161
|
+
2.times { mock.method }
|
162
|
+
end
|
163
|
+
assert_failed(test_result)
|
164
|
+
assert_equal ["unexpected invocation: #<Mock:mock>.method()\nsatisfied expectations:\n- expected at most once, already invoked once: #<Mock:mock>.method(any_parameters)\n"], test_result.failure_messages
|
165
|
+
end
|
166
|
+
|
167
|
+
def test_should_pass_if_method_is_never_expected_and_is_never_called_even_if_everything_is_stubbed
|
168
|
+
test_result = run_as_test do
|
169
|
+
stub = stub_everything('stub')
|
170
|
+
stub.expects(:method).never
|
171
|
+
0.times { stub.method }
|
172
|
+
end
|
173
|
+
assert_passed(test_result)
|
174
|
+
end
|
175
|
+
|
176
|
+
def test_should_fail_fast_if_method_is_never_expected_but_is_called_once_even_if_everything_is_stubbed
|
177
|
+
test_result = run_as_test do
|
178
|
+
stub = stub_everything('stub')
|
179
|
+
stub.expects(:method).never
|
180
|
+
1.times { stub.method }
|
181
|
+
end
|
182
|
+
assert_failed(test_result)
|
183
|
+
assert_equal ["unexpected invocation: #<Mock:stub>.method()\nsatisfied expectations:\n- expected never, not yet invoked: #<Mock:stub>.method(any_parameters)\n"], test_result.failure_messages
|
184
|
+
end
|
185
|
+
|
186
|
+
def test_should_fail_fast_if_there_is_no_matching_expectation
|
187
|
+
test_result = run_as_test do
|
188
|
+
mock = mock('mock')
|
189
|
+
mock.expects(:method).with(1)
|
190
|
+
1.times { mock.method }
|
191
|
+
end
|
192
|
+
assert_failed(test_result)
|
193
|
+
assert_equal ["unexpected invocation: #<Mock:mock>.method()\nunsatisfied expectations:\n- expected exactly once, not yet invoked: #<Mock:mock>.method(1)\n"], test_result.failure_messages
|
194
|
+
end
|
195
|
+
|
196
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
require 'mocha'
|
3
|
+
|
4
|
+
class FailureMessagesTest < Test::Unit::TestCase
|
5
|
+
|
6
|
+
OBJECT_ADDRESS_PATTERN = '0x[0-9A-Fa-f]{1,12}'
|
7
|
+
|
8
|
+
include AcceptanceTest
|
9
|
+
|
10
|
+
def setup
|
11
|
+
setup_acceptance_test
|
12
|
+
end
|
13
|
+
|
14
|
+
def teardown
|
15
|
+
teardown_acceptance_test
|
16
|
+
end
|
17
|
+
|
18
|
+
class Foo; end
|
19
|
+
|
20
|
+
def test_should_display_class_name_when_expectation_was_on_class
|
21
|
+
test_result = run_as_test do
|
22
|
+
Foo.expects(:bar)
|
23
|
+
end
|
24
|
+
assert_match Regexp.new('FailureMessagesTest::Foo'), test_result.failures[0].message
|
25
|
+
end
|
26
|
+
|
27
|
+
def test_should_display_class_name_and_address_when_expectation_was_on_instance
|
28
|
+
test_result = run_as_test do
|
29
|
+
Foo.new.expects(:bar)
|
30
|
+
end
|
31
|
+
assert_match Regexp.new("#<FailureMessagesTest::Foo:#{OBJECT_ADDRESS_PATTERN}>"), test_result.failures[0].message
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_should_display_class_name_and_any_instance_prefix_when_expectation_was_on_any_instance
|
35
|
+
test_result = run_as_test do
|
36
|
+
Foo.any_instance.expects(:bar)
|
37
|
+
end
|
38
|
+
assert_match Regexp.new('#<AnyInstance:FailureMessagesTest::Foo>'), test_result.failures[0].message
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_should_display_mock_name_when_expectation_was_on_named_mock
|
42
|
+
test_result = run_as_test do
|
43
|
+
foo = mock('foo')
|
44
|
+
foo.expects(:bar)
|
45
|
+
end
|
46
|
+
assert_match Regexp.new('#<Mock:foo>'), test_result.failures[0].message
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_should_display_mock_address_when_expectation_was_on_unnamed_mock
|
50
|
+
test_result = run_as_test do
|
51
|
+
foo = mock()
|
52
|
+
foo.expects(:bar)
|
53
|
+
end
|
54
|
+
assert_match Regexp.new("#<Mock:#{OBJECT_ADDRESS_PATTERN}>"), test_result.failures[0].message
|
55
|
+
end
|
56
|
+
|
57
|
+
def test_should_display_string_when_expectation_was_on_string
|
58
|
+
test_result = run_as_test do
|
59
|
+
'Foo'.expects(:bar)
|
60
|
+
end
|
61
|
+
assert_match Regexp.new("'Foo'"), test_result.failures[0].message
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
@@ -0,0 +1,146 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
|
2
|
+
|
3
|
+
begin
|
4
|
+
require 'minitest/unit'
|
5
|
+
rescue LoadError
|
6
|
+
# MiniTest not available
|
7
|
+
end
|
8
|
+
|
9
|
+
# force load so that MiniTest is suitably monkey-patched
|
10
|
+
load 'mocha.rb'
|
11
|
+
|
12
|
+
if defined?(MiniTest)
|
13
|
+
|
14
|
+
class MiniTestSampleTest < MiniTest::Unit::TestCase
|
15
|
+
|
16
|
+
def test_mocha_with_fulfilled_expectation
|
17
|
+
mockee = mock()
|
18
|
+
mockee.expects(:blah)
|
19
|
+
mockee.blah
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_mocha_with_unfulfilled_expectation
|
23
|
+
mockee = mock()
|
24
|
+
mockee.expects(:blah)
|
25
|
+
end
|
26
|
+
|
27
|
+
def test_mocha_with_unexpected_invocation
|
28
|
+
mockee = mock()
|
29
|
+
mockee.blah
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_stubba_with_fulfilled_expectation
|
33
|
+
stubbee = Class.new { define_method(:blah) {} }.new
|
34
|
+
stubbee.expects(:blah)
|
35
|
+
stubbee.blah
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_stubba_with_unfulfilled_expectation
|
39
|
+
stubbee = Class.new { define_method(:blah) {} }.new
|
40
|
+
stubbee.expects(:blah)
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_mocha_with_matching_parameter
|
44
|
+
mockee = mock()
|
45
|
+
mockee.expects(:blah).with(has_key(:wibble))
|
46
|
+
mockee.blah(:wibble => 1)
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_mocha_with_non_matching_parameter
|
50
|
+
mockee = mock()
|
51
|
+
mockee.expects(:blah).with(has_key(:wibble))
|
52
|
+
mockee.blah(:wobble => 2)
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
56
|
+
|
57
|
+
class MiniTestTest < Test::Unit::TestCase
|
58
|
+
|
59
|
+
def setup
|
60
|
+
@output = StringIO.new
|
61
|
+
MiniTest::Unit.output = @output
|
62
|
+
@runner = MiniTest::Unit.new
|
63
|
+
end
|
64
|
+
|
65
|
+
attr_reader :runner
|
66
|
+
|
67
|
+
def test_should_pass_mocha_test
|
68
|
+
runner.run(%w(-n test_mocha_with_fulfilled_expectation))
|
69
|
+
|
70
|
+
assert_equal 0, runner.failures
|
71
|
+
assert_equal 0, runner.errors
|
72
|
+
assert_equal 1, runner.assertion_count
|
73
|
+
end
|
74
|
+
|
75
|
+
def test_should_fail_mocha_test_due_to_unfulfilled_expectation
|
76
|
+
runner.run(%w(-n test_mocha_with_unfulfilled_expectation))
|
77
|
+
|
78
|
+
assert_equal 1, runner.failures
|
79
|
+
assert_equal 0, runner.errors
|
80
|
+
assert_equal 1, runner.assertion_count
|
81
|
+
assert_not_all_expectation_were_satisfied
|
82
|
+
end
|
83
|
+
|
84
|
+
def test_should_fail_mocha_test_due_to_unexpected_invocation
|
85
|
+
runner.run(%w(-n test_mocha_with_unexpected_invocation))
|
86
|
+
|
87
|
+
assert_equal 1, runner.failures
|
88
|
+
assert_equal 0, runner.errors
|
89
|
+
assert_equal 0, runner.assertion_count
|
90
|
+
assert_unexpected_invocation
|
91
|
+
end
|
92
|
+
|
93
|
+
def test_should_pass_stubba_test
|
94
|
+
runner.run(%w(-n test_stubba_with_fulfilled_expectation))
|
95
|
+
|
96
|
+
assert_equal 0, runner.failures
|
97
|
+
assert_equal 0, runner.errors
|
98
|
+
assert_equal 1, runner.assertion_count
|
99
|
+
end
|
100
|
+
|
101
|
+
def test_should_fail_stubba_test_due_to_unfulfilled_expectation
|
102
|
+
runner.run(%w(-n test_stubba_with_unfulfilled_expectation))
|
103
|
+
|
104
|
+
assert_equal 1, runner.failures
|
105
|
+
assert_equal 0, runner.errors
|
106
|
+
assert_equal 1, runner.assertion_count
|
107
|
+
assert_not_all_expectation_were_satisfied
|
108
|
+
end
|
109
|
+
|
110
|
+
def test_should_pass_mocha_test_with_matching_parameter
|
111
|
+
runner.run(%w(-n test_mocha_with_matching_parameter))
|
112
|
+
|
113
|
+
assert_equal 0, runner.failures
|
114
|
+
assert_equal 0, runner.errors
|
115
|
+
assert_equal 1, runner.assertion_count
|
116
|
+
end
|
117
|
+
|
118
|
+
def test_should_fail_mocha_test_with_non_matching_parameter
|
119
|
+
runner.run(%w(-n test_mocha_with_non_matching_parameter))
|
120
|
+
|
121
|
+
assert_equal 1, runner.failures
|
122
|
+
assert_equal 0, runner.errors
|
123
|
+
assert_equal 0, runner.assertion_count # unexpected invocation occurs before expectation is verified
|
124
|
+
assert_unexpected_invocation
|
125
|
+
end
|
126
|
+
|
127
|
+
private
|
128
|
+
|
129
|
+
def output
|
130
|
+
@output.rewind
|
131
|
+
@output.read
|
132
|
+
end
|
133
|
+
|
134
|
+
def assert_unexpected_invocation
|
135
|
+
assert_match Regexp.new('unexpected invocation'), output, "MiniTest output:\n#{output}"
|
136
|
+
end
|
137
|
+
|
138
|
+
def assert_not_all_expectation_were_satisfied
|
139
|
+
assert_match Regexp.new('not all expectations were satisfied'), output, "MiniTest output:\n#{output}"
|
140
|
+
end
|
141
|
+
|
142
|
+
end
|
143
|
+
|
144
|
+
else
|
145
|
+
warn "MiniTest is not available, so MiniTestAdapterTest has not been run."
|
146
|
+
end
|