aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/result_transform/final_report.py
blob: 6a10c026441b302d55b30c573ef58a4cf9ace636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import pickle
import json
import datetime
import os
import sys

home_dir = str((os.popen("echo $HOME").read().rstrip()))

with open('./sys_info_temp', 'r') as sys_info_f:
    sys_info_dict = pickle.load(sys_info_f)
with open('./result_temp', 'r') as result_f:
    result_dict = pickle.load(result_f)

host_name = (os.popen("hostname").read().rstrip())
benchmark_name = str(sys.argv[1])
testcase_name = str(sys.argv[2])
report_time_stamp = str(datetime.datetime.utcnow().isoformat())
final_dict = {}
final_dict['1  Testcase Name'] = testcase_name
final_dict['2  Time of Report'] = report_time_stamp
final_dict['3  System Information'] = sys_info_dict
final_dict['4  ' + benchmark_name + ' result'] = result_dict

with open('./' + host_name + '-' + report_time_stamp + '.json', 'w+') as result_json:
    json.dump(final_dict, result_json, indent=4, sort_keys=True)