aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorpawel.denst <pawel.denst@external.t-mobile.pl>2023-05-10 10:50:58 +0000
committerpawel.denst <pawel.denst@external.t-mobile.pl>2023-05-30 22:36:16 +0000
commitea72aa01e864b6ddf3145d51d060077da00526d3 (patch)
tree249c7516e5e76e1b2e1453d2bd0e946956738c61 /tests
parent4299fadeddffd2d24eb672fb26e6fa7cc141899f (diff)
ONAP Python SDK tests should generate JSON artifact (next to HTML)
Generation of report file in JSON format Issue-ID: INT-2235 Signed-off-by: pawel.denst <pawel.denst@external.t-mobile.pl> Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> Change-Id: Ib99a0cb8bf317633e19a4a2e1c41d611a3b9f343
Diffstat (limited to 'tests')
-rw-r--r--tests/test_generate_json.py64
1 files changed, 64 insertions, 0 deletions
diff --git a/tests/test_generate_json.py b/tests/test_generate_json.py
new file mode 100644
index 0000000..b5bc48c
--- /dev/null
+++ b/tests/test_generate_json.py
@@ -0,0 +1,64 @@
+import unittest
+import os
+import json
+from unittest import mock
+from onaptests.steps.reports_collection import ReportsCollection, Report, ReportStepStatus
+
+
+class TestReportsCollection(unittest.TestCase):
+
+ def setUp(self):
+ self.collection = ReportsCollection()
+
+ @mock.patch("onaptests.steps.reports_collection.settings")
+ def test_generate_report_json(self, settings):
+ settings.SERVICE_NAME = "Status Check"
+ settings.SERVICE_DETAILS = "Checks status of all k8s resources in the selected namespace"
+ settings.SERVICE_COMPONENTS = "ALL"
+ settings.REPORTING_FILE_DIRECTORY = "/tmp/"
+ settings.HTML_REPORTING_FILE_NAME = "reporting.html"
+ settings.JSON_REPORTING_FILE_NAME = "reporting.json"
+
+ self.collection.put(Report("Step 1", ReportStepStatus.PASS, 10.0))
+ self.collection.put(Report("Step 2", ReportStepStatus.FAIL, 5.0))
+ self.collection.put(Report("Step 3", ReportStepStatus.NOT_EXECUTED, 0.0))
+ self.collection.put(Report("Step 10", ReportStepStatus.NOT_EXECUTED, 0.0))
+ self.collection.put(Report("Step 12", ReportStepStatus.PASS, 20.0))
+ self.collection.put(Report("Step 21", ReportStepStatus.FAIL, 15.0))
+
+ report_dict = self.collection.generate_report()
+ report_json_path = os.path.join(settings.REPORTING_FILE_DIRECTORY, settings.JSON_REPORTING_FILE_NAME)
+ self.assertTrue(os.path.exists(report_json_path))
+
+ with open(report_json_path, 'r') as file:
+ report_dict = json.load(file)
+
+ self.assertEqual(report_dict['usecase'], 'Status Check')
+ self.assertEqual(report_dict['details'], 'Checks status of all k8s resources in the selected namespace')
+ self.assertEqual(report_dict['components'], 'ALL')
+ self.assertEqual(len(report_dict['steps']), 6)
+ step1 = report_dict['steps'][0]
+ step2 = report_dict['steps'][1]
+ step3 = report_dict['steps'][2]
+ step10 = report_dict['steps'][3]
+ step12 = report_dict['steps'][4]
+ step21 = report_dict['steps'][5]
+ self.assertEqual(step1['description'], 'Step 1')
+ self.assertEqual(step1['duration'], 10.0)
+ self.assertEqual(step2['description'], 'Step 2')
+ self.assertEqual(step2['duration'], 5.0)
+ self.assertEqual(step3['description'], 'Step 3')
+ self.assertEqual(step3['duration'], 0.0)
+ self.assertEqual(step10['description'], 'Step 10')
+ self.assertEqual(step10['duration'], 0.0)
+ self.assertEqual(step12['description'], 'Step 12')
+ self.assertEqual(step12['duration'], 20.0)
+ self.assertEqual(step21['description'], 'Step 21')
+ self.assertEqual(step21['duration'], 15.0)
+ report_json_path = os.path.join(settings.REPORTING_FILE_DIRECTORY, settings.JSON_REPORTING_FILE_NAME)
+ self.assertTrue(os.path.exists(report_json_path))
+ self.assertEqual(report_json_path,'/tmp/reporting.json')
+ os.remove(report_json_path)
+
+if __name__ == '__main__':
+ unittest.main()