-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtest_model.py
503 lines (371 loc) · 17.4 KB
/
test_model.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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
import sysml
import pytest
import uuid
import os
from pint import UnitRegistry
from yaml import dump
@pytest.fixture(scope="module")
def model():
"""Create a model object that will also serve as the root directory for all
other model elements"""
model = sysml.Model("NCC-1701")
return model
def test_model(model):
assert repr(model) == "<Model('NCC-1701')>"
assert repr(type(model)) == "<class 'sysml.system.Model'>"
assert model.stereotype == "\xabmodel\xbb"
with pytest.raises(TypeError):
model = sysml.Model(47)
with pytest.raises(TypeError) as info:
model = sysml.ModelElement()
assert "Can't instantiate abstract class base" in str(info.value)
@pytest.mark.skip("undergoing renovation")
def test_valueType():
kesselrun = 12 * sysml.ValueType("parsec")
assert repr(kesselrun) == "<ValueType(12, 'parsec')>"
assert kesselrun.magnitude == 12
assert kesselrun.units == "parsec"
oneparsec = sysml.ValueType("parsec")
assert oneparsec.magnitude == 1
assert oneparsec.units == "parsec"
lightyear = sysml.ValueType("lightyear")
assert lightyear.magnitude == 1
assert lightyear.units == "light_year"
# parsectolightyear = oneparsec.ito('lightyear')
assert (
repr(0.95 * sysml.ValueType("lightyear")) == "<(ValueType) 'light_year' [0.95]>"
)
distToProximaCentari = 0.1 * sysml.ValueType("lightyear") + oneparsec
assert distToProximaCentari.units == "light_year"
assert round(distToProximaCentari.magnitude, 3) == 4.243
distToProximaCentari = oneparsec + 0.98144 * sysml.ValueType("lightyear")
assert round(distToProximaCentari.magnitude, 3) == 1.307
assert distToProximaCentari.units == "parsec"
assert round(distToProximaCentari.to("lightyear").magnitude, 3) == 4.262
assert round(distToProximaCentari.magnitude, 3) == 4.243
assert str(distToProximaCentari.units) == "light_year"
distToProximaCentari.ito("lightyear")
assert round(distToProximaCentari.magnitude, 3) == 4.262
assert str(distToProximaCentari.units) == "light_year"
# distToProximaCentari.ito('parsec')
# assert round(distToProximaCentari.magnitude, 3) == 1.301
# assert distToProximaCentari.units == 'parsec'
# # isDroidsWeAreLookingFor = sysml.ValueType(False)
# # assert repr(isDroidsWeAreLookingFor) == "\xabvalueType\xbb False bool"
# # assert isDroidsWeAreLookingFor.magnitude is False
# # assert isDroidsWeAreLookingFor.units == 'dimensionless'
# # assert isDroidsWeAreLookingFor.name == 'False bool'
# c = 2.99792458*10**8
# warpfactor1 = sysml.ValueType(c, 'meters/second')
# warpfactor2 = warpfactor1 + sysml.ValueType(7*c, 'meters/second')
# warpfactor5 = 125*warpfactor1
# warpfactor3 = warpfactor5 - sysml.ValueType(98*c, 'meters/second')
# warpfactor6 = sysml.ValueType(217*c, 'meters/second') - warpfactor1
# warpfactor4 = warpfactor5/2
# assert warpfactor1.magnitude == c
# assert warpfactor2.magnitude == 8*c
# assert warpfactor3.magnitude == 27*c
# assert warpfactor5.magnitude == 125*c
# assert warpfactor4.magnitude == warpfactor5.magnitude/2
# assert warpfactor6.magnitude == 216*c
# with pytest.raises(Exception) as info:
# fluxcapacitor = sysml.ValueType(1.21, 'JiggaWatts')
# assert "is not defined in the unit registry" in str(info.value)
def test_block(model):
"""Add block elements to package objects using built-in add_part()
method"""
starship_block = sysml.Block("constitution-class Starship")
assert repr(starship_block) == "<Block('constitution-class Starship')>"
# assert repr(type(starship_block)) == "<class 'sysml.element.Block'>"
assert uuid.UUID(str(starship_block.uuid), version=1)
assert starship_block.multiplicity == 1
with pytest.raises(AttributeError) as info:
starship_block.uuid = 47
assert "can't set attribute" in str(info.value)
with pytest.raises(AttributeError) as info:
starship_block.uuid = "47"
assert "can't set attribute" in str(info.value)
def test_package(model):
"""Create a package, labeled 'Structure', within model which will serve as
namespace for the system structure
Note: Model and Package objects can be thought of as a dict-like container
for returning stereotyped model elements
"""
with pytest.raises(TypeError) as info:
model.add()
assert "missing 1 required positional argument" in str(info.value)
# package_type = "<class 'sysml.element.Package'>"
holodeck = sysml.Package("Holodeck")
assert holodeck.stereotype == "\xabpackage\xbb"
model.add(holodeck)
assert model["Holodeck"] is holodeck
assert repr(model["Holodeck"]) == "<Package('Holodeck')>"
# assert repr(type(model["Holodeck"])) == package_type
assert uuid.UUID(str(model["Holodeck"].uuid), version=1)
model.remove(holodeck)
with pytest.raises(KeyError) as info:
model["Holodeck"]
starship_block = sysml.Block("constitution-class starship")
structure = sysml.Package("structure", [starship_block])
model.add(structure)
with pytest.raises(TypeError) as info:
model["structure"].add()
assert "missing 1 required positional argument" in str(info.value)
# model['structure'].add(starship_block)
assert structure is model["structure"]
assert starship_block is model["structure"]["constitution-class starship"]
assert repr(model["structure"]) == "<Package('structure')>"
# assert repr(type(model["structure"])) == package_type
assert uuid.UUID(str(model["structure"].uuid), version=1)
with pytest.raises(AttributeError) as info:
model["structure"].uuid = 47
assert "can't set attribute" in str(info.value)
with pytest.raises(AttributeError) as info:
model["structure"].uuid = "47"
assert "can't set attribute" in str(info.value)
@pytest.mark.skip("Deprecated")
def test_block_stereotype():
"""Test block stereotype"""
# Note: needs to be rewritten such that users can write derived classes,
# using block as base class, as a means to extend stereotype
# enterprise = sysml.Block('NCC-1701',stereotype='constitutionClass')
# enterpriseD = sysml.Block(
# 'NCC-1701-D',stereotype=['galaxyClass','flagship'])
#
# assert enterprise.stereotype == ['block', 'constitutionClass']
# assert enterpriseD.stereotype == ['block', 'galaxyClass', 'flagship']
#
# with pytest.raises(TypeError) as info:
# enterpriseD = sysml.Block('NCC-1701-D',stereotype=47)
# assert "must be a string or set of strings" in str(info.value)
def test_block_partProperty(model):
"""Add block elements as parts to parent blocks using add_part() method
Parts added to a block element are dictionary-callable via the 'parts'
attribute"""
starship_block = model["structure"]["constitution-class starship"]
starship_block.add_part("saucer section", sysml.Block("Primary Hull"))
starship_block["engineering"] = sysml.Block("Engineering Hull")
starship_block.add_part("cloak", sysml.Block("Cloaking device"))
with pytest.raises(TypeError) as info:
starship_block.add_part()
assert "missing 1 required positional argument" in str(info.value)
with pytest.raises(TypeError) as info:
starship_block[47]
assert "must be a string" in str(info.value)
with pytest.raises(TypeError) as info:
starship_block[47] = "47"
assert "must be a string" in str(info.value)
with pytest.raises(TypeError) as info:
starship_block["47"] = "47"
assert "must be a Block" in str(info.value)
with pytest.raises(KeyError) as info:
starship_block["47"]
assert "not contained in" in str(info.value)
primaryhull = starship_block.parts["saucer section"]
engineeringhull = starship_block.parts["engineering"]
cloaking_device = starship_block.parts["cloak"]
assert primaryhull == starship_block["saucer section"]
assert engineeringhull == starship_block["engineering"]
assert cloaking_device == starship_block["cloak"]
assert repr(primaryhull) == "<Block('Primary Hull')>"
assert repr(engineeringhull) == "<Block('Engineering Hull')>"
assert repr(cloaking_device) == "<Block('Cloaking device')>"
# assert repr(type(primaryhull)) == "<class 'sysml.element.Block'>"
# assert repr(type(engineeringhull)) == "<class 'sysml.element.Block'>"
# assert repr(type(cloaking_device)) == "<class 'sysml.element.Block'>"
assert uuid.UUID(str(primaryhull.uuid), version=1)
assert uuid.UUID(str(engineeringhull.uuid), version=1)
starship_block.remove_part("cloak")
with pytest.raises(KeyError) as info:
model["Cloaking device"]
assert "Cloaking device" in str(info.value)
with pytest.raises(KeyError) as info:
starship_block["cloak"]
assert "cloak" in str(info.value)
with pytest.raises(AttributeError) as info:
primaryhull.uuid = 47
assert "can't set attribute" in str(info.value)
with pytest.raises(AttributeError) as info:
primaryhull.uuid = "47"
assert "can't set attribute" in str(info.value)
assert primaryhull.multiplicity == 1
assert engineeringhull.multiplicity == 1
with pytest.raises(TypeError):
primaryhull.multiplicity = "mayonnaise"
def test_block_partProperty_withMultiplicity(model):
"""Add block elements as parts to parent blocks, with multiplicity, using
add_part() method"""
# notes: need to redesign multiplicity constructor and setter
starship_block = model["structure"]["constitution-class starship"]
starship_block.add_part("nacelle", sysml.Block("Nacelle", multiplicity=2))
starship_block.add_part("pylons", sysml.Block("Pylon", multiplicity=2))
nacelle = starship_block.parts["nacelle"]
pylon = starship_block.parts["pylons"]
assert repr(nacelle) == "<Block('Nacelle')>"
assert repr(pylon) == "<Block('Pylon')>"
# assert repr(type(nacelle)) == "<class 'sysml.element.Block'>"
# assert repr(type(pylon)) == "<class 'sysml.element.Block'>"
assert nacelle.multiplicity == 2
assert pylon.multiplicity == 2
with pytest.raises(TypeError):
pylon.multiplicity = "mayonnaise"
@pytest.mark.skip("WIP")
def test_block_valueProperty(model):
pass
@pytest.mark.skip("WIP")
def test_block_referenceProperty(model):
pass
@pytest.mark.skip("WIP")
def test_block_constraintProperty(model):
pass
@pytest.mark.skip("WIP")
def test_block_port(model):
pass
@pytest.mark.skip("WIP")
def test_interaction(model):
"""Create an interaction, stereotyped as a test case, to be used to verify
a requirement"""
# model.add(sysml.Package('Analysis'))
# model['Analysis'].add(sysml.TestCase('Warp Field Analysis'))
def test_requirements(model):
"""Create a package, labeled 'requirements', within model which will serve
as namespace for the system
Define two requirement elements, passing in a string name and text field as
its constructor arguments
"""
model.add(sysml.Package("requirements"))
# package_type = "<class 'sysml.element.Package'>"
assert repr(model["requirements"]) == "<Package('requirements')>"
# assert repr(type(model["requirements"])) == package_type
assert uuid.UUID(str(model["requirements"].uuid), version=1)
with pytest.raises(AttributeError) as info:
model["requirements"].uuid = 47
assert "can't set attribute" in str(info.value)
with pytest.raises(AttributeError) as info:
model["requirements"].uuid = "47"
assert "can't set attribute" in str(info.value)
# with pytest.raises(TypeError) as info:
# model['requirements'].add(sysml.Requirement())
# assert "missing 2 required positional argument" in str(info.value)
top_lvl_req = sysml.Requirement(
"Top-level",
"""A constitution-class starship shall provide a 5-year mission
capability to explore strange new worlds, to seek out new life and new
civilizations, and to boldly go where no one has gone before.""",
)
functional_req = sysml.Requirement(
"Functional",
"""A constitution-class starship shall be able to travel at warp 8 or
higher""",
)
model["requirements"].add(top_lvl_req)
model["requirements"].add(functional_req)
assert top_lvl_req is model["requirements"]["Top-level"]
assert functional_req is model["requirements"]["Functional"]
assert repr(top_lvl_req) == "<Requirement('Top-level')>"
assert repr(functional_req) == "<Requirement('Functional')>"
# requirement_type = "<class 'sysml.element.Requirement'>"
# assert repr(type(top_lvl_req)) == requirement_type
# assert repr(type(functional_req)) == requirement_type
assert top_lvl_req.stereotype == "\xabrequirement\xbb"
assert uuid.UUID(str(top_lvl_req.uuid), version=1)
assert uuid.UUID(str(functional_req.uuid), version=1)
with pytest.raises(AttributeError) as info:
top_lvl_req.uuid = 47
assert "can't set attribute" in str(info.value)
with pytest.raises(AttributeError) as info:
top_lvl_req.uuid = "47"
assert "can't set attribute" in str(info.value)
def test_derive_requirement(model):
"""Define a dependency relationship, of stereotype «derive», between two
requirements"""
# with pytest.raises(TypeError) as info:
# model['requirements'].add(sysml.Dependency())
# assert "missing 3 required positional arguments" in str(info.value)
client = model["requirements"]["Functional"]
supplier = model["requirements"]["Top-level"]
deriveReqt = sysml.DeriveReqt(client, supplier)
model["requirements"].add(deriveReqt)
assert deriveReqt is model["requirements"]["deriveReqt1"]
assert repr(deriveReqt.client) == "<Requirement('Functional')>"
assert repr(deriveReqt.supplier) == "<Requirement('Top-level')>"
# requirement_type = "<class 'sysml.element.Requirement'>"
# derivereqt_type = "<class 'sysml.element.DeriveReqt'>"
# assert repr(type(deriveReqt)) == derivereqt_type
# assert repr(type(deriveReqt.client)) == requirement_type
# assert repr(type(deriveReqt.supplier)) == requirement_type
assert deriveReqt.stereotype == "\xabderiveReqt\xbb"
assert uuid.UUID(str(deriveReqt.uuid), version=1)
with pytest.raises(AttributeError) as info:
deriveReqt.uuid = 47
assert "can't set attribute" in str(info.value)
with pytest.raises(AttributeError) as info:
deriveReqt.uuid = "47"
assert "can't set attribute" in str(info.value)
@pytest.mark.skip("WIP")
def test_refine_requirement(model):
pass
# instantiate use case
# add dependency where requirement is supplier node (i.e., "supplier") and
# use case is client node (i.e., "client")
# assert dependency supplier is of type(requirement)
# assert dependency client is of type(use case)
# assert dependency stereotype is "refine"
def test_satisfy_requirement(model):
"""Define a dependency relationship, of stereotype «satisfy», between a
requirement and block"""
starship_block = model["structure"]["constitution-class starship"]
warpdrive = sysml.Block("Class-7 Warp Drive")
starship_block.add_part("warpdrive", warpdrive)
reqt1 = model["requirements"]["Functional"]
satisfy = sysml.Satisfy(warpdrive, reqt1)
model["requirements"].add(satisfy)
assert satisfy is model["requirements"]["satisfy1"]
assert repr(warpdrive) == "<Block('Class-7 Warp Drive')>"
assert repr(reqt1) == "<Requirement('Functional')>"
assert satisfy.stereotype == "\xabsatisfy\xbb"
assert satisfy.name == satisfy.name
assert satisfy.stereotype == "\xabsatisfy\xbb"
assert repr(satisfy.client) == "<Block('Class-7 Warp Drive')>"
assert repr(satisfy.supplier) == "<Requirement('Functional')>"
# satisfy_type = "<class 'sysml.element.Satisfy'>"
# block_type = "<class 'sysml.element.Block'>"
# requirement_type = "<class 'sysml.element.Requirement'>"
# assert repr(type(satisfy)) == satisfy_type
# assert repr(type(satisfy.client)) == block_type
# assert repr(type(satisfy.supplier)) == requirement_type
assert uuid.UUID(str(satisfy.uuid), version=1)
with pytest.raises(AttributeError) as info:
satisfy.uuid = 47
assert "can't set attribute" in str(info.value)
with pytest.raises(AttributeError) as info:
satisfy.uuid = "47"
assert "can't set attribute" in str(info.value)
@pytest.mark.skip("WIP")
def test_verify_requirement(model):
pass
# instantiate test case
# add dependency where requirement is supplier node (i.e., "supplier")
# and test case is client node (i.e., "client")
# assert dependency supplier is of type(Requirement)
# assert dependency client stereotype is a «testCase»
# assert dependency stereotype is "verify"
def test_to_yaml(model):
assert model.name == "NCC-1701"
model.to_yaml("model.yaml")
model2 = sysml.read_yaml("model.yaml")
assert repr(model) == repr(model2)
with pytest.raises(TypeError) as info:
model.to_yaml(2)
assert "" in str(info.value)
os.remove("model.yaml")
not_a_model = dump("not a model")
with open("not_a_model.yaml", "w") as f:
f.write(not_a_model)
with pytest.raises(TypeError) as info:
sysml.read_yaml("not_a_model.yaml")
assert "" in str(info.value)
os.remove("not_a_model.yaml")
if __name__ == "__main__":
print(__doc__)
pytest.main(args=["-v"])