From 3bf3e8314897acb2e9eca94002a3138b5d6c10a5 Mon Sep 17 00:00:00 2001 From: Nikolay Stanchev <ns17@it-innovation.soton.ac.uk> Date: Thu, 26 Apr 2018 11:25:44 +0100 Subject: [PATCH] Issue #67 - added test for mean values of e2e measurements --- clmctest/monitoring/E2ESim.py | 2 +- clmctest/monitoring/test_e2eresults.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/clmctest/monitoring/E2ESim.py b/clmctest/monitoring/E2ESim.py index 86f9d6e..12a4401 100644 --- a/clmctest/monitoring/E2ESim.py +++ b/clmctest/monitoring/E2ESim.py @@ -130,7 +130,7 @@ class Simulator(object): sim_time += self.TICK end_time = sim_time - print("Start time: {0}, End time: {1}".format(start_time, end_time)) + print("Simulation finished. Start time: {0}, End time: {1}".format(start_time, end_time)) if __name__ == "__main__": diff --git a/clmctest/monitoring/test_e2eresults.py b/clmctest/monitoring/test_e2eresults.py index 7a5a864..fe73623 100644 --- a/clmctest/monitoring/test_e2eresults.py +++ b/clmctest/monitoring/test_e2eresults.py @@ -64,6 +64,9 @@ class TestE2ESimulation(object): {"time": "1970-01-01T00:00:00Z", "count_response_time": 24}), ('SELECT count(*) FROM "E2EMetrics"."autogen"."e2e_delays"', {"time": "1970-01-01T00:00:00Z", "count_D_path_F": 24, "count_D_path_R": 24, "count_D_service": 24}), + + ('SELECT mean(*) FROM "E2EMetrics"."autogen"."e2e_delays"', + {"time": "1970-01-01T00:00:00Z", "mean_D_path_F": 13.159722222222223, "mean_D_path_R": 3.256944444444444, "mean_D_service": 32.791666666666664}), ]) def test_simulation(self, influx_db, query, expected_result): """ -- GitLab