-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtest.py
221 lines (175 loc) · 7.36 KB
/
test.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
import random
import unittest
import scipy.stats
from simantha import Source, Machine, Buffer, Sink, System
import simantha.simulation
import simantha.utils
# Degradation transition matrix used for all tests where applicable
degradation_matrix = [
[0.9, 0.1, 0, 0, 0, 0 ],
[0, 0.9, 0.1, 0, 0, 0 ],
[0, 0, 0.9, 0.1, 0, 0 ],
[0, 0, 0, 0.9, 0.1, 0 ],
[0, 0, 0, 0, 0.9, 0.1],
[0, 0, 0, 0, 0, 1 ]
]
class UtilsTests(unittest.TestCase):
"""Test Simantha utility functons.
"""
def test_degradation_matrix(self):
degradation_matrix = simantha.utils.generate_degradation_matrix(p=0.1, h_max=5)
target_matrix = [
[0.9, 0.1, 0, 0, 0, 0 ],
[0, 0.9, 0.1, 0, 0, 0 ],
[0, 0, 0.9, 0.1, 0, 0 ],
[0, 0, 0, 0.9, 0.1, 0 ],
[0, 0, 0, 0, 0.9, 0.1],
[0, 0, 0, 0, 0, 1 ]
]
#self.assertEqual(degradation_matrix, target_matrix)
self.assertEqual(
simantha.utils.generate_degradation_matrix(p=0.1, h_max=5),
degradation_matrix
)
class SimulationTests(unittest.TestCase):
"""Tests for the underlying simulation engine.
"""
def test_event_scheduling(self):
# Test scheduling a new event in an empty environment
def dummy_action():
pass
env = simantha.simulation.Environment()
new_event = {'time': 0, 'location': None, 'action': dummy_action}
env.schedule_event(**new_event)
self.assertEqual(len(env.events), 1)
def test_event_insertion(self):
# Test the ordering of newly scheduled events
def dummy_action():
pass
env = simantha.simulation.Environment()
env.schedule_event(
time=10, location=None, action=dummy_action, source='last event'
)
env.schedule_event(
time=0, location=None, action=dummy_action, source='first event'
)
env.schedule_event(
time=5, location=None, action=dummy_action, source='middle event'
)
event_order = [ev.source for ev in env.events]
self.assertEqual(event_order, ['first event', 'middle event', 'last event'])
def test_constant_distribution(self):
# Test sampling of a constant value
constant = simantha.simulation.Distribution({'constant': 42})
self.assertTrue(constant.sample(), 42)
def test_uniform_distribution(self):
# Test sampling of a discrete uniform distribution
random.seed(1)
low, high = [10, 60]
uniform = simantha.simulation.Distribution({'uniform': [low, high]})
rvs = [uniform.sample() for _ in range(1000)]
# H_0: The sample is drawn from the specified distribution
_, p_value = scipy.stats.kstest(rvs, scipy.stats.randint(low, high+1).cdf)
self.assertGreater(p_value, 0.05)
def test_geometric_distribution(self):
# Test sampling of a geometric distribution
success = 1/100
geometric = simantha.simulation.Distribution({'geometric': success})
rvs = [geometric.sample() for _ in range(1000)]
# H_0: The sample is drawn from the specified distribution
_, p_value = scipy.stats.kstest(rvs, scipy.stats.geom(success).cdf)
self.assertGreater(p_value, 0.05)
class SingleMachineDeterministicTests(unittest.TestCase):
"""Basic simulation behavior of a single machine."""
def build_system(self):
source = Source()
M1 = Machine('M1', cycle_time=1)
sink = Sink()
source.define_routing(downstream=[M1])
M1.define_routing(upstream=[source], downstream=[sink])
sink.define_routing(upstream=[M1])
return System(objects=[source, M1, sink])
def test_production(self):
"""Test production of a single machine. With cycle time 1, the production count
should be equal to the simulation time."""
system = self.build_system()
system.simulate(simulation_time=1000, verbose=False)
self.assertEqual(system.machines[0].parts_made, 1000)
def test_production_warm_up(self):
"""Test the warm up period for a single machine. No statistics should be
gathered during the warm up, so production should be equal to simulation
time, regardless of warm up duration."""
system = self.build_system()
system.simulate(warm_up_time=500, simulation_time=500, verbose=False)
self.assertEqual(system.machines[0].parts_made, 500)
class SingleMachineStochsticTests(unittest.TestCase):
"""Testing simulation randomness for one machine."""
def build_system(self):
source = Source()
M1 = Machine(
'M1',
cycle_time=1,
degradation_matrix=degradation_matrix,
cm_distribution={'constant': 10}
)
sink = Sink()
source.define_routing(downstream=[M1])
M1.define_routing(upstream=[source], downstream=[sink])
sink.define_routing(upstream=[M1])
return System(objects=[source, M1, sink])
def test_production(self):
random.seed(1)
system = self.build_system()
system.simulate(simulation_time=1000, verbose=False)
# Assert that the number of parts made is at most the simulation time
self.assertLessEqual(system.machines[0].parts_made, 1000)
class TwoMachineDeterministicTests(unittest.TestCase):
"""Tests for a two-machine one-buffer line.
"""
def build_system(self):
source = Source()
M1 = Machine('M1', cycle_time=1)
B1 = Buffer('B1', capacity=5)
M2 = Machine('M2', cycle_time=1)
sink = Sink()
source.define_routing(downstream=[M1])
M1.define_routing(upstream=[source], downstream=[B1])
B1.define_routing(upstream=[M1], downstream=[M2])
M2.define_routing(upstream=[B1], downstream=[sink])
sink.define_routing(upstream=[M2])
return System(objects=[source, M1, B1, M2, sink])
def test_production(self):
system = self.build_system()
system.simulate(simulation_time=1000, verbose=False)
self.assertEqual(sum([s.level for s in system.sinks]), 999)
class TwoMachineStochasticTests(unittest.TestCase):
def build_system(self):
cm = {'constant': 10}
source = Source()
M1 = Machine(
'M1',
cycle_time=1,
degradation_matrix=degradation_matrix,
cm_distribution=cm
)
B1 = Buffer('B1', capacity=5)
M2 = Machine(
'M2',
cycle_time=1,
degradation_matrix=degradation_matrix,
cm_distribution=cm
)
sink = Sink()
source.define_routing(downstream=[M1])
M1.define_routing(upstream=[source], downstream=[B1])
B1.define_routing(upstream=[M1], downstream=[M2])
M2.define_routing(upstream=[B1], downstream=[sink])
sink.define_routing(upstream=[M2])
return System(objects=[source, M1, B1, M2, sink])
def test_production(self):
system = self.build_system()
system.simulate(simulation_time=1000, verbose=False)
self.assertLessEqual(system.machines[-1].parts_made, 1000)
if __name__ == '__main__':
random.seed(1)
unittest.main()