blob: f5fcc624f217f8b5eac53ed31ce19529c4f4ab95 (
plain)
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
|
import pytest
from onaptests.steps.base import BaseStep
class TestStep(BaseStep):
@BaseStep.store_state
def execute(self):
return super().execute()
@property
def description(self):
return "Test pass step"
@property
def component(self) -> str:
return "Test"
class TestFailStep(BaseStep):
@BaseStep.store_state
def execute(self):
super().execute()
raise Exception
@property
def description(self):
return "Test fail step"
@property
def component(self) -> str:
return "Test"
def test_store_state():
ts = TestStep()
ts.execute()
assert len(ts.reports_collection.report) == 1
rep = ts.reports_collection.report[0]
assert rep.step_description == "[Test] TestStep: Test pass step"
assert rep.step_execution_status.value == "PASS"
assert rep.step_execution_duration != 0
fs = TestFailStep()
fs.add_step(TestStep())
with pytest.raises(Exception):
fs.execute()
rep_f, rep_s = fs.reports_collection.report
assert rep_f.step_description == "[Test] TestFailStep: Test fail step"
assert rep_f.step_execution_status.value == "FAIL"
assert rep_f.step_execution_duration != 0
assert rep_s.step_description == "[Test] TestStep: Test pass step"
assert rep_s.step_execution_status.value == "PASS"
assert rep_s.step_execution_duration != 0
|