This repository was archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathtest_design_patterns.py
289 lines (228 loc) · 9.84 KB
/
test_design_patterns.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
import unittest
import sys
from io import StringIO
from ddt import ddt, data
from contextlib import contextmanager
from borg import Borg, ChildShare, ChildNotShare
from interpreter import (
Interpreter,
DeviceNotAvailable,
ActionNotAvailable,
IncorrectAction,
)
from factory_method import factory_method
from abstract_factory import (
TriangleFactory,
QuadrilateralFactory,
give_me_some_polygons,
)
from memento import Originator
from null_object import NullObject
from observer import Publisher, Subscriber
from proxy import Proxy, Implementation
from singleton import Singleton, Child, GrandChild
from strategy import Strategy, execute_replacement1, execute_replacement2
@contextmanager
def captured_output():
new_out, new_err = StringIO(), StringIO()
old_out, old_err = sys.stdout, sys.stderr
try:
sys.stdout, sys.stderr = new_out, new_err
yield sys.stdout, sys.stderr
finally:
sys.stdout, sys.stderr = old_out, old_err
class TestBorg(unittest.TestCase):
def test_two_borgs_have_different_identity(self):
a = Borg("Mark")
b = Borg("Luke")
self.assertIsNot(a, b)
def test_two_borgs_share_common_state(self):
a = Borg("Mark")
b = Borg("Luke")
self.assertEqual(a.state, b.state)
def test_borg_and_childshare_share_common_state(self):
a = Borg("Mark")
c = ChildShare("Paul", color="red")
self.assertEqual(a.state, c.state)
def test_borg_and_childnotshare_do_not_share_common_state(self):
a = Borg("Mark")
d = ChildNotShare("Andrew", age=5)
self.assertNotEqual(a.state, d.state)
def test_two_childnotshare_share_common_state(self):
d = ChildNotShare("Andrew", age=5)
e = ChildNotShare("Tom", age=7)
self.assertEqual(d.state, e.state)
def test_update_state(self):
a = Borg("Mark")
c = ChildShare("Paul", color="red")
self.assertIn("color", a.state)
d = ChildNotShare("Andrew", age=5)
a.name = "James"
self.assertEqual(a.name, c.name)
self.assertNotEqual(a.name, d.name)
@ddt
class TestInterpreter(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.interpreter = Interpreter()
def test_opening_the_garage(self):
with captured_output() as (out, err):
self.interpreter.interpret("open -> garage")
output = out.getvalue().strip()
self.assertEqual(output, "opening the garage")
def test_heat_the_boiler_up(self):
with captured_output() as (out, err):
self.interpreter.interpret("heat -> boiler -> 5")
output = out.getvalue().strip()
self.assertEqual(output, "heat the boiler up by 5 degrees")
def test_cool_the_boiler_down(self):
with captured_output() as (out, err):
self.interpreter.interpret("cool -> boiler -> 3")
output = out.getvalue().strip()
self.assertEqual(output, "cool the boiler down by 3 degrees")
def test_switch_the_television_on(self):
with captured_output() as (out, err):
self.interpreter.interpret("switch on -> television")
output = out.getvalue().strip()
self.assertEqual(output, "switch on the television")
def test_switch_the_television_off(self):
with captured_output() as (out, err):
self.interpreter.interpret("switch off -> television")
output = out.getvalue().strip()
self.assertEqual(output, "switch off the television")
@data("cool -> boiler", "switch off -> television -> 4")
def test_raise_incorrect_action(self, val):
self.assertRaises(IncorrectAction, self.interpreter.interpret, val)
@data("break -> garage", "smash -> television")
def test_raise_action_not_available(self, val):
self.assertRaises(ActionNotAvailable, self.interpreter.interpret, val)
@data("read -> book", "open -> gate")
def test_raise_device_not_available(self, val):
self.assertRaises(DeviceNotAvailable, self.interpreter.interpret, val)
class TestMemento(unittest.TestCase):
def test_restore_state(self):
originator = Originator()
originator.state = "State1"
memento1 = originator.save()
originator.state = "State2"
originator.restore(memento1)
self.assertEqual(originator.state, "State1")
class TestNullObject(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.null = NullObject(name="Bob")
def test_null_object_is_null(self):
self.assertTrue(self.null.is_null)
def test_null_has_no_name(self):
self.assertIsNot(self.null.name, "Bob")
def test_repr_of_null_object(self):
self.assertEqual(repr(self.null), "<Null>")
def test_do_stuff_does_nothing(self):
self.assertIsNone(self.null.do_stuff())
def test_get_stuff_gets_nothing(self):
self.assertIsNone(self.null.get_stuff())
class TestFactoryMethod(unittest.TestCase):
def test_factory_cannot_manufacture_a_train(self):
self.assertRaises(ValueError, factory_method, "train")
class TestAbstractFactory(unittest.TestCase):
def test_factories_are_abstract_and_cannot_be_instantiated(self):
with self.assertRaises(TypeError):
TriangleFactory()
with self.assertRaises(TypeError):
QuadrilateralFactory()
def test_triangle_factory_produces_triangles(self):
triangle = TriangleFactory.make_polygon()
self.assertIn(triangle.__class__.__name__, TriangleFactory.products())
def test_polygons_produced_are_subset_of_all_available_polygons(self):
all_available_polygons = set(TriangleFactory.products()).union(
QuadrilateralFactory.products()
)
polygons = give_me_some_polygons([TriangleFactory, QuadrilateralFactory])
polygons_produced = set([p.__class__.__name__ for p in polygons])
self.assertTrue(polygons_produced.issubset(all_available_polygons))
class TestObserver(unittest.TestCase):
def setUp(self):
self.newsletters = ["Tech", "Travel", "Fashion"]
self.pub = Publisher(self.newsletters)
subscribers = [("s0", "Tom"), ("s1", "Sara")]
for sub, name in subscribers:
setattr(self, sub, Subscriber(name))
# before each test case, set some subscriptions
self.pub.register("Tech", self.s0)
self.pub.register("Travel", self.s0)
self.pub.register("Travel", self.s1)
def tearDown(self):
# after each test case, reset the subscriptions
for newsletter in self.newsletters:
if self.s0 in self.pub.subscriptions[newsletter]:
self.pub.unregister(newsletter, self.s0)
if self.s1 in self.pub.subscriptions[newsletter]:
self.pub.unregister(newsletter, self.s1)
def test_register_subscriber(self):
john = Subscriber("John")
self.pub.register(newsletter="Tech", who=john)
self.assertEqual(self.pub.subscriptions["Tech"][john], john.receive)
self.pub.unregister(newsletter="Tech", who=john) # cleanup
def test_unregister_subscriber(self):
self.assertIn(self.s0, self.pub.get_subscriptions("Tech"))
self.pub.unregister("Tech", self.s0)
self.assertNotIn(self.s0, self.pub.get_subscriptions("Tech"))
def test_dispatch_newsletter(self):
with captured_output() as (out, err):
self.pub.dispatch(newsletter="Tech", message="Tech Newsletter num 1")
output = out.getvalue().strip()
self.assertEqual(output, "Tom received: Tech Newsletter num 1")
def test_get_subscription_without_subscribers(self):
self.assertEqual(self.pub.get_subscriptions("Fashion"), {})
def test_get_subscription_with_subscribers(self):
self.assertIn(self.s0, self.pub.get_subscriptions("Tech"))
def test_add_newsletter(self):
self.assertNotIn("Videogames", self.pub.subscriptions.keys())
self.pub.add_newsletter("Videogames")
self.assertIn("Videogames", self.pub.subscriptions.keys())
def test_subscription_does_not_exist(self):
with self.assertRaises(KeyError):
self.pub.subscriptions["Videogames"]
class TestProxy(unittest.TestCase):
def test_load_real_or_cached_object(self):
p1 = Proxy(Implementation("RealObject1"))
# the first time we call do_stuff we need to load the real object
with captured_output() as (out, err):
p1.do_stuff()
output = out.getvalue().strip()
self.assertEqual(output, "load RealObject1\ndo stuff on RealObject1")
# after that, loading is unnecessary (we use the cached object)
with captured_output() as (out, err):
p1.do_stuff()
output = out.getvalue().strip()
self.assertEqual(output, "do stuff on RealObject1")
class TestSingleton(unittest.TestCase):
def test_two_singletons_have_same_identity(self):
s1 = Singleton("Sam")
s2 = Singleton("Tom")
self.assertIs(s1, s2)
def test_singleton_and_child_have_different_identity(self):
s1 = Singleton("Sam")
c1 = Child("John")
self.assertIsNot(s1, c1)
def test_two_children_have_same_identity(self):
c1 = Child("John")
c2 = Child("Andy")
self.assertIs(c1, c2)
def test_child_and_grandchild_have_different_identity(self):
c1 = Child("John")
g1 = GrandChild("Bob")
self.assertIsNot(c1, g1)
class TestStrategy(unittest.TestCase):
def test_default_strategy(self):
self.assertEqual(Strategy().name, "Strategy_default")
def test_replacement_strategy_one(self):
self.assertEqual(
Strategy(execute_replacement1).name, "Strategy_execute_replacement1"
)
def test_replacement_strategy_two(self):
self.assertEqual(
Strategy(execute_replacement2).name, "Strategy_execute_replacement2"
)
if __name__ == "__main__":
unittest.main()