diff options
Diffstat (limited to 'tests/test_store_state.py')
-rw-r--r-- | tests/test_store_state.py | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/tests/test_store_state.py b/tests/test_store_state.py index e0c8b6b..f5fcc62 100644 --- a/tests/test_store_state.py +++ b/tests/test_store_state.py @@ -1,13 +1,23 @@ 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): @@ -16,14 +26,33 @@ class TestFailStep(BaseStep): 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 ts.reports_collection.report == {"TestStep": "PASS"} + 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() - fs.reports_collection.report == {"TestFailStep": "FAIL", "TestStep": "PASS"} + 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 |