Commit 5f684d7f authored by Jaroslava Fiedlerova's avatar Jaroslava Fiedlerova

Improve error handling in Iperf_analyzeV3TCPJson()

parent 0ed8fb72
...@@ -96,29 +96,26 @@ def Iperf_ComputeTime(args): ...@@ -96,29 +96,26 @@ def Iperf_ComputeTime(args):
return int(result.group('iperf_time')) return int(result.group('iperf_time'))
def Iperf_analyzeV3TCPJson(filename, iperf_tcp_rate_target): def Iperf_analyzeV3TCPJson(filename, iperf_tcp_rate_target):
if (not os.path.isfile(filename)): try:
return (False, 'Iperf3 TCP: Log file not present') with open(filename) as f:
if (os.path.getsize(filename)==0): results = json.load(f)
return (False, 'Iperf3 TCP: Log file is empty') sender_bitrate = round(results['end']['streams'][0]['sender']['bits_per_second'] / 1000000, 2)
receiver_bitrate = round(results['end']['streams'][0]['receiver']['bits_per_second'] / 1000000, 2)
with open(filename) as file: snd_msg = f'Sender Bitrate : {sender_bitrate} Mbps'
filename = json.load(file) rcv_msg = f'Receiver Bitrate : {receiver_bitrate} Mbps'
try: success = True
sender_bitrate = round(filename['end']['streams'][0]['sender']['bits_per_second']/1000000,2) if (iperf_tcp_rate_target is not None):
receiver_bitrate = round(filename['end']['streams'][0]['receiver']['bits_per_second']/1000000,2) if (int(receiver_bitrate) < int(iperf_tcp_rate_target)):
except Exception as e: rcv_msg += f" (too low! < {iperf_tcp_rate_target} Mbps)"
return (False, 'Could not compute Iperf3 bitrate!') success = False
snd_msg = f'Sender Bitrate : {sender_bitrate} Mbps'
rcv_msg = f'Receiver Bitrate : {receiver_bitrate} Mbps'
success = True
if (iperf_tcp_rate_target is not None):
if (int(receiver_bitrate) < int(iperf_tcp_rate_target)):
rcv_msg += f" (too low! < {iperf_tcp_rate_target} Mbps)"
success = False
else: else:
rcv_msg += f" (target : {iperf_tcp_rate_target} Mbps)" rcv_msg += f" (target : {iperf_tcp_rate_target} Mbps)"
return(success, f'{snd_msg}\n{rcv_msg}') return(success, f'{snd_msg}\n{rcv_msg}')
except KeyError as e:
e_msg = results.get('error', f'error report not found in {filename}')
return (False, f'While parsing Iperf3 results: missing key {e}, {e_msg}')
except Exception as e:
return (False, f'While parsing Iperf3 results: generic exception: {e}')
def Iperf_analyzeV3BIDIRJson(filename): def Iperf_analyzeV3BIDIRJson(filename):
if (not os.path.isfile(filename)): if (not os.path.isfile(filename)):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment