-
Notifications
You must be signed in to change notification settings - Fork 38
/
brb2727-TestCollatz.py
executable file
·210 lines (177 loc) · 5.24 KB
/
brb2727-TestCollatz.py
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#!/usr/bin/env python3
# -------------------------------
# projects/collatz/TestCollatz.py
# Copyright (C) 2016
# Glenn P. Downing
# -------------------------------
# https://docs.python.org/3.4/reference/simple_stmts.html#grammar-token-assert_stmt
"""
Test harness for collatz conjecture program
"""
# -------
# imports
# -------
from io import StringIO
from unittest import main, TestCase, expectedFailure
from Collatz import collatz_read, collatz_eval, collatz_print, collatz_solve, cycle_length
# -----------
# TestCollatz
# -----------
class TestCollatz(TestCase):
"""
Unit Test Class
"""
# ----
# read
# ----
def test_read_1(self):
"""
Tests the collatz_read function
"""
string = "1 10\n"
range_start, range_end = collatz_read(string)
self.assertEqual(range_start, 1)
self.assertEqual(range_end, 10)
def test_read_2(self):
"""
Tests the collatz_read function with really large numbers.
Apparently this works, must use 64-bit or higher representation?
"""
string = "1000000000000 1000000000000\n"
range_start, range_end = collatz_read(string)
self.assertEqual(range_start, 1000000000000)
self.assertEqual(range_end, 1000000000000)
@staticmethod
@expectedFailure
def test_read_3():
"""
Tests the collatz_read function with faulty input (non integers)
Expected to fail.
"""
string = "a b\n"
collatz_read(string)
# ----
# cycle_length
# ----
def test_cycle_1(self):
"""
Tests the cycle_length function
"""
cycle = cycle_length(1)
self.assertEqual(cycle, 1)
def test_cycle_2(self):
"""
Tests the cycle_length function
"""
cycle = cycle_length(5)
self.assertEqual(cycle, 6)
def test_cycle_3(self):
"""
Tests the cycle_length function
"""
cycle = cycle_length(10)
self.assertEqual(cycle, 7)
def test_cycle_4(self):
"""
Tests the cycle_length function
"""
cycle = cycle_length(1000001)
self.assertEqual(cycle, 114)
# ----
# eval
# ----
def test_eval_1(self):
"""
Tests the collatz_eval function
"""
max_cycle = collatz_eval(1, 10)
self.assertEqual(max_cycle, 20)
def test_eval_2(self):
"""
Tests the collatz_eval function
"""
max_cycle = collatz_eval(100, 200)
self.assertEqual(max_cycle, 125)
def test_eval_3(self):
"""
Tests the collatz_eval function
"""
max_cycle = collatz_eval(201, 210)
self.assertEqual(max_cycle, 89)
def test_eval_4(self):
"""
Tests the collatz_eval function
"""
max_cycle = collatz_eval(900, 1000)
self.assertEqual(max_cycle, 174)
def test_eval_5(self):
"""
Tests the collatz_eval function and
repeats so it makes use of the cache
"""
max_cycle = collatz_eval(1, 10)
self.assertEqual(max_cycle, 20)
max_cycle = collatz_eval(1, 10)
self.assertEqual(max_cycle, 20)
# -----
# print
# -----
def test_print_1(self):
"""
Tests the collatz_print function
"""
writer = StringIO()
collatz_print(writer, 1, 10, 20)
self.assertEqual(writer.getvalue(), "1 10 20\n")
def test_print_2(self):
"""
Tests the collatz_print function with really large integers
"""
writer = StringIO()
collatz_print(writer, "1000000000000",
"1000000000000", "1000000000000")
self.assertEqual(writer.getvalue(),
"1000000000000 1000000000000 1000000000000\n")
def test_print_3(self):
"""
Tests the collatz_print function with non integers
"""
writer = StringIO()
collatz_print(writer, "a", "b", "c")
self.assertEqual(writer.getvalue(), "a b c\n")
# -----
# solve
# -----
def test_solve(self):
"""
Tests the collatz_solve function
"""
reader = StringIO("1 10\n100 200\n201 210\n900 1000\n")
writer = StringIO()
collatz_solve(reader, writer)
self.assertEqual(
writer.getvalue(), "1 10 20\n100 200 125\n201 210 89\n900 1000 174\n")
def test_solve_backwards(self):
"""
Tests the collatz_solve function where ranges are specified backwards
"""
reader = StringIO("10 1\n200 100\n210 201\n1000 900\n")
writer = StringIO()
collatz_solve(reader, writer)
self.assertEqual(
writer.getvalue(), "10 1 20\n200 100 125\n210 201 89\n1000 900 174\n")
def test_solve_mixed_order(self):
"""
Tests the collatz_solve function where ranges are specified in a mixed
way of being backwards and forwards
"""
reader = StringIO("10 1\n100 200\n201 210\n1000 900\n")
writer = StringIO()
collatz_solve(reader, writer)
self.assertEqual(
writer.getvalue(), "10 1 20\n100 200 125\n201 210 89\n1000 900 174\n")
# ----
# main
# ----
if __name__ == "__main__":
main()