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
|
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
require 'mocha'
class SequenceTest < Test::Unit::TestCase
include AcceptanceTest
def setup
setup_acceptance_test
end
def teardown
teardown_acceptance_test
end
def test_should_constrain_invocations_to_occur_in_expected_order
test_result = run_test do
mock = mock()
sequence = sequence('one')
mock.expects(:first).in_sequence(sequence)
mock.expects(:second).in_sequence(sequence)
mock.second
end
assert_failed(test_result)
end
def test_should_allow_invocations_in_sequence
test_result = run_test do
mock = mock()
sequence = sequence('one')
mock.expects(:first).in_sequence(sequence)
mock.expects(:second).in_sequence(sequence)
mock.first
mock.second
end
assert_passed(test_result)
end
def test_should_constrain_invocations_to_occur_in_expected_order_even_if_expected_on_different_mocks
test_result = run_test do
mock_one = mock('1')
mock_two = mock('2')
sequence = sequence('one')
mock_one.expects(:first).in_sequence(sequence)
mock_two.expects(:second).in_sequence(sequence)
mock_two.second
end
assert_failed(test_result)
end
def test_should_allow_invocations_in_sequence_even_if_expected_on_different_mocks
test_result = run_test do
mock_one = mock('1')
mock_two = mock('2')
sequence = sequence('one')
mock_one.expects(:first).in_sequence(sequence)
mock_two.expects(:second).in_sequence(sequence)
mock_one.first
mock_two.second
end
assert_passed(test_result)
end
def test_should_constrain_invocations_to_occur_in_expected_order_even_if_expected_on_partial_mocks
test_result = run_test do
partial_mock_one = "1"
partial_mock_two = "2"
sequence = sequence('one')
partial_mock_one.expects(:first).in_sequence(sequence)
partial_mock_two.expects(:second).in_sequence(sequence)
partial_mock_two.second
end
assert_failed(test_result)
end
def test_should_allow_invocations_in_sequence_even_if_expected_on_partial_mocks
test_result = run_test do
partial_mock_one = "1"
partial_mock_two = "2"
sequence = sequence('one')
partial_mock_one.expects(:first).in_sequence(sequence)
partial_mock_two.expects(:second).in_sequence(sequence)
partial_mock_one.first
partial_mock_two.second
end
assert_passed(test_result)
end
def test_should_allow_stub_expectations_to_be_skipped_in_sequence
test_result = run_test do
mock = mock()
sequence = sequence('one')
mock.expects(:first).in_sequence(sequence)
mock.stubs(:second).in_sequence(sequence)
mock.expects(:third).in_sequence(sequence)
mock.first
mock.third
end
assert_passed(test_result)
end
def test_should_regard_sequences_as_independent_of_each_other
test_result = run_test do
mock = mock()
sequence_one = sequence('one')
sequence_two = sequence('two')
mock.expects(:first).in_sequence(sequence_one)
mock.expects(:second).in_sequence(sequence_one)
mock.expects(:third).in_sequence(sequence_two)
mock.expects(:fourth).in_sequence(sequence_two)
mock.first
mock.third
mock.second
mock.fourth
end
assert_passed(test_result)
end
def test_should_include_sequence_in_failure_message
test_result = run_test do
mock = mock()
sequence = sequence('one')
mock.expects(:first).in_sequence(sequence)
mock.expects(:second).in_sequence(sequence)
mock.second
end
assert_failed(test_result)
assert_match Regexp.new("in sequence 'one'"), test_result.failures.first.message
end
def test_should_allow_expectations_to_be_in_more_than_one_sequence
test_result = run_test do
mock = mock()
sequence_one = sequence('one')
sequence_two = sequence('two')
mock.expects(:first).in_sequence(sequence_one)
mock.expects(:second).in_sequence(sequence_two)
mock.expects(:three).in_sequence(sequence_one).in_sequence(sequence_two)
mock.first
mock.three
end
assert_failed(test_result)
assert_match Regexp.new("in sequence 'one'"), test_result.failures.first.message
assert_match Regexp.new("in sequence 'two'"), test_result.failures.first.message
end
def test_should_have_shortcut_for_expectations_to_be_in_more_than_one_sequence
test_result = run_test do
mock = mock()
sequence_one = sequence('one')
sequence_two = sequence('two')
mock.expects(:first).in_sequence(sequence_one)
mock.expects(:second).in_sequence(sequence_two)
mock.expects(:three).in_sequence(sequence_one, sequence_two)
mock.first
mock.three
end
assert_failed(test_result)
assert_match Regexp.new("in sequence 'one'"), test_result.failures.first.message
assert_match Regexp.new("in sequence 'two'"), test_result.failures.first.message
end
end
|