diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2020-11-03 15:25:58 +0000 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2020-11-04 17:23:40 +0000 |
commit | eeeb7190de7185c9994e460cc0472e8817ab68aa (patch) | |
tree | a6385b3748f32b583b326abf016c1b8628bac254 /tests/test_store_state.py | |
parent | 31dc9d07a9bd5c98304ae7d58e995321d3e1507f (diff) |
Integration tests report enrichment
Improve the step description for better reporting
Add duration step in pythonsdk-test reporting
Issue-ID: TEST-271
Issue-ID: TEST-272
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: I6d46cb38ae236bc578eb15982c2c0b8f2b0c0791
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 |