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
|
require File.expand_path('../acceptance_test_helper', __FILE__)
class FailureMessageTest < Mocha::TestCase
include AcceptanceTest
def setup
setup_acceptance_test
end
def teardown
teardown_acceptance_test
end
def test_should_include_unexpected_invocation_in_unsatisfied_expectation_message
test_result = run_as_test do
mock = mock('mock')
mock.expects(:method_one).once
2.times { mock.method_one }
end
assert_failed(test_result)
assert_equal [
'unexpected invocation: #<Mock:mock>.method_one()',
'unsatisfied expectations:',
'- expected exactly once, invoked twice: #<Mock:mock>.method_one(any_parameters)'
], test_result.failure_message_lines
end
def test_should_report_satisfied_expectations_as_well_as_unsatisfied_expectations
test_result = run_as_test do
mock = mock('mock')
mock.expects(:method_one).once
mock.expects(:method_two).twice
1.times { mock.method_one }
1.times { mock.method_two }
end
assert_failed(test_result)
assert_equal [
'not all expectations were satisfied',
'unsatisfied expectations:',
'- expected exactly twice, invoked once: #<Mock:mock>.method_two(any_parameters)',
'satisfied expectations:',
'- expected exactly once, invoked once: #<Mock:mock>.method_one(any_parameters)'
], test_result.failure_message_lines
end
def test_should_report_multiple_satisfied_expectations
test_result = run_as_test do
mock = mock('mock')
mock.expects(:method_one).once
mock.expects(:method_two).twice
mock.expects(:method_three).times(3)
1.times { mock.method_one }
2.times { mock.method_two }
2.times { mock.method_three }
end
assert_failed(test_result)
assert_equal [
'not all expectations were satisfied',
'unsatisfied expectations:',
'- expected exactly 3 times, invoked twice: #<Mock:mock>.method_three(any_parameters)',
'satisfied expectations:',
'- expected exactly twice, invoked twice: #<Mock:mock>.method_two(any_parameters)',
'- expected exactly once, invoked once: #<Mock:mock>.method_one(any_parameters)'
], test_result.failure_message_lines
end
def test_should_include_state_in_unsatisfied_expectation_message
test_result = run_as_test do
mock = mock('mock')
readiness = states('readiness')
mock.expects(:method_one).once.then(readiness.is('ready'))
end
assert_failed(test_result)
assert_equal [
'not all expectations were satisfied',
'unsatisfied expectations:',
'- expected exactly once, invoked never: #<Mock:mock>.method_one(any_parameters)',
'states:',
'- readiness has no current state'
], test_result.failure_message_lines
end
end
|