2020-02-25 17:24:28 +08:00
|
|
|
import logging
|
2020-02-23 21:24:44 +08:00
|
|
|
from datetime import timedelta
|
2020-04-09 23:23:01 +08:00
|
|
|
from typing import Dict
|
2020-02-23 21:24:44 +08:00
|
|
|
|
|
|
|
from envs.monkey_zoo.blackbox.analyzers.analyzer import Analyzer
|
2020-04-09 23:23:01 +08:00
|
|
|
from envs.monkey_zoo.blackbox.tests.performance.performance_test_config import PerformanceTestConfig
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
2020-02-23 21:24:44 +08:00
|
|
|
|
|
|
|
|
2020-04-09 23:23:01 +08:00
|
|
|
class PerformanceAnalyzer(Analyzer):
|
2020-02-25 20:57:50 +08:00
|
|
|
|
2020-04-09 23:23:01 +08:00
|
|
|
def __init__(self, performance_test_config: PerformanceTestConfig, endpoint_timings: Dict[str, timedelta]):
|
|
|
|
self.performance_test_config = performance_test_config
|
|
|
|
self.endpoint_timings = endpoint_timings
|
2020-02-25 17:24:28 +08:00
|
|
|
|
2020-04-09 23:23:01 +08:00
|
|
|
def analyze_test_results(self):
|
|
|
|
# Calculate total time and check each page
|
|
|
|
single_page_time_less_then_max = True
|
|
|
|
total_time = timedelta()
|
|
|
|
for page, elapsed in self.endpoint_timings.items():
|
|
|
|
LOGGER.info(f"page {page} took {str(elapsed)}")
|
|
|
|
total_time += elapsed
|
|
|
|
if elapsed > self.performance_test_config.max_allowed_single_page_time:
|
|
|
|
single_page_time_less_then_max = False
|
2020-02-23 21:24:44 +08:00
|
|
|
|
2020-04-09 23:23:01 +08:00
|
|
|
total_time_less_then_max = total_time < self.performance_test_config.max_allowed_total_time
|
2020-02-23 21:24:44 +08:00
|
|
|
|
2020-04-09 23:23:01 +08:00
|
|
|
LOGGER.info(f"total time is {str(total_time)}")
|
2020-02-23 21:24:44 +08:00
|
|
|
|
2020-04-09 23:23:01 +08:00
|
|
|
performance_is_good_enough = total_time_less_then_max and single_page_time_less_then_max
|
2020-02-25 17:24:28 +08:00
|
|
|
|
2020-04-09 23:23:01 +08:00
|
|
|
if self.performance_test_config.break_on_timeout and not performance_is_good_enough:
|
|
|
|
LOGGER.warning(
|
|
|
|
"Calling breakpoint - pausing to enable investigation of island. Type 'c' to continue once you're done "
|
|
|
|
"investigating. Type 'p timings' and 'p total_time' to see performance information."
|
|
|
|
)
|
|
|
|
breakpoint()
|
2020-02-25 20:57:50 +08:00
|
|
|
|
2020-04-09 23:23:01 +08:00
|
|
|
return performance_is_good_enough
|