fix the way to get log filename
[doctor.git] / doctor_tests / scenario / common.py
1 ##############################################################################
2 # Copyright (c) 2017 ZTE Corporation and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 import os
10
11 from doctor_tests.common.utils import match_rep_in_file
12
13
14 def calculate_notification_time(log_file):
15
16     reg = '(?<=doctor monitor detected at )\d+.\d+'
17     result = match_rep_in_file(reg, log_file)
18     if not result:
19         raise Exception('Can not match detected time')
20     detected = result.group(0)
21
22     reg = '(?<=doctor consumer notified at )\d+.\d+'
23     result = match_rep_in_file(reg, log_file)
24     if not result:
25         raise Exception('Can not match notified time')
26     notified = result.group(0)
27
28     return float(notified) - float(detected)