forked from ECP-WarpX/regression_testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testCoverage.py
383 lines (279 loc) · 12.6 KB
/
testCoverage.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
'''
Start Date: 02/21/18
Author: Patrick Payne
Purpose: Check all of the tests for MAESTRO or CASTRO to see if every
parameter has been tested at a value different from the
default value
In order for this script to function: the output of the tests that it is
looking at should be in a form similar to what is shown below:
[START EXAMPLE]
===============================================================================
Runtime Parameter Information
===============================================================================
[*] indicates overridden default
[*] parameter_alpha = 1.000
parameter_one = F
[END EXAMPLE]
The '[*]' can be preceeded by a space, as is done in MAESTRO (04/24/18), but
this is not necessary. The script searches for the keyword "Parameter" in
to begin reading the parameters immediately following the line "[*] indicates
overridden default" and so will expect the barrier line and that line as well.
As for the form of the tests, the produce plot files should be compressed in a
tarfile (".tgz"). This tarfile contains a job_info file where all of the
runtime parameters that were used in the simulation are listed, in the form
that was expressed above. The values that were set different from the default
values are marked with a [*]. This is the feature that we are looking for to
determine if the quantity is covered.
The basic function of the script is as follows:
1) All of the test directories are recorded
2) These directories are checked for a file with the extension ".tgz"
3) If the file is present, the job_info file is extracted
4) The parameters are then read from each job_info file
5) The parameters that occured with a [*] are recorded as covered and the
others are recorded as not_covered. All duplicates are removed
6) The problem specific parameters (only used in one simulation) are recorded
7) The coverage fractions are calculated
8) The coverage reports are constructed with the list of parameters that were
not covered, the fraction of total parameters that were covered, and the
total number of parameters recorded.
Output: Two ".out" files, one that includes any problem specific parameters
(parameters that are only appear in one test) and one that excludes these
parameters. The are titled "Coverage.out" and "Coverage-NoSpecific.out",
respectively.
MAESTRO: There should be ~260 total parameters, this includes the problem
specific parameters.
CASTRO: There should be ~140 total parameters, this includes the problem
specific parameters.
Placement: Place the script in the directory where the tests are and execute
it in there as your CWD
DEVELOPMENT: Add feature for user to specify the test directory on command line
'''
import os
import re as re
import sys
import tarfile
SPEC_FILE = "coverage.out"
NONSPEC_FILE = "coverage_nonspecific.out"
def main(cwd=None):
# Change directories if necessary
if cwd is not None:
old_dir = os.getcwd()
os.chdir(cwd)
# Gets the paths of the files of interest
file_paths = get_files()
if not file_paths: return (None,) * 4
# Initialize lists
covered = []
no_cover = []
ignore = []
ignore_master = []
covered_no_specific = []
no_cover_no_specific = []
all_params = []
All = []
for i in range(0, len(file_paths)):
covered_temp, no_cover_temp, All = list_parameters(file_paths[i],
All)
if i == 0: no_cover = no_cover_temp # Initializing no_cover
if i == 0: covered = covered_temp # Initializing covered
covered, no_cover, ignore, ignore_master, all_params = build_master(
covered_temp, no_cover_temp, covered,
no_cover, ignore, ignore_master, all_params)
All = remove_duplicates(All)
# build_master needs to be executed one more time than the number of cycles
# in the loop to complete the ignore list
covered, no_cover, ignore, ignore_master, all_params = build_master(
covered_temp, no_cover_temp, covered, no_cover,
ignore, ignore_master, all_params)
covered_Frac, no_cover_Frac = get_frac(covered,no_cover)
output_coverage(SPEC_FILE, covered, no_cover, covered_Frac,
no_cover_Frac)
covered_no_specific, no_cover_no_specific = remove_specific_params(covered,
no_cover,
ignore)
covered_no_specificFrac, no_cover_no_specificFrac = get_frac(
covered_no_specific, no_cover_no_specific)
output_coverage(NONSPEC_FILE, covered_no_specific,
no_cover_no_specific, covered_no_specificFrac,
no_cover_no_specificFrac, specific = ignore)
clean(file_paths)
# Return to original directory
if cwd is not None: os.chdir(old_dir)
total = len(covered) + len(no_cover)
total_nonspecific = len(covered_no_specific) + len(no_cover_no_specific)
return covered_Frac, total, covered_no_specificFrac, total_nonspecific
def get_start_line(lines, fname):
# This routine finds the line number where the list of runtime
# parameters begins
# The line where the Runtime Parameter Information begins
start_line = None
# Finds the parameter and calculates the start_line
for i, line in enumerate(lines):
if "Parameter" in line:
start_line = i + 2
break
if start_line is None:
raise RuntimeError("Unable to locate start line in {}".format(fname))
while "=" not in lines[start_line]:
start_line += 1
return start_line
def list_parameters(data_file, All):
# This routine finds the parameters that have been covered by the test suite
# and those that haven't been covered by the test suite and outputs two
# lists, one for each type of parameter, covered and no_cover
covered = [] # List to store the names of the covered parameters
no_cover = [] # List to store the names of the non-covered parameters
with open(data_file, mode='r') as file:
lines = list(file)
start_line = get_start_line(lines, data_file)
for line in lines[start_line:]:
if r'[*]' in line:
# Singles out the covered parameters and writes their names
parameter = re.split(r' +', line.replace("[*]", "").strip())
if not parameter: continue
covered.append(parameter[0])
continue
# Takes the rest of the parameters (not covered) and writes their names
parameter = re.split(r' +', line.strip())
if parameter and parameter[0] != "Restart":
no_cover.append(parameter[0])
All = covered + no_cover + All
return covered, no_cover, All
def build_master(covered_temp, no_cover_temp, covered, no_cover, ignore,
ignore_master, all_params):
# Updates the master list of covered and not covered variables.
# Handles the set of no_cover parameters for a test
for i in range(0, len(no_cover_temp)):
if no_cover_temp[i] in ignore:
ignore.remove(no_cover_temp[i])
elif no_cover_temp[i] not in ignore_master:
ignore.append(no_cover_temp[i])
ignore_master.append(no_cover_temp[i])
else:
pass
if no_cover_temp[i] not in (no_cover or Covered):
no_cover.append(no_cover_temp[i])
else:
pass
if no_cover_temp[i] not in all_params:
all_params.append(no_cover_temp[i])
else:
pass
# Handles the set of covered parameters for a test
for i in range(0, len(covered_temp)):
if covered_temp[i] in ignore:
ignore.remove(covered_temp[i])
elif covered_temp[i] not in ignore_master:
ignore.append(covered_temp[i])
ignore_master.append(covered_temp[i])
else:
pass
if covered_temp[i] in covered:
pass
else:
# Adds newly covered parameters
covered.append(covered_temp[i])
if covered_temp[i] in (no_cover or covered):
# Removes newly covered parameters
no_cover.remove(covered_temp[i])
else:
pass
if covered_temp[i] not in all_params:
all_params.append(covered_temp[i])
# Deals with potential duplicates
for i in range(0, len(covered)):
if covered[i] in no_cover:
no_cover.remove(covered[i])
else:
pass
# Removal of empty lines
try:
covered.remove("\n")
except ValueError:
pass
try:
no_cover.remove("\n")
except ValueError:
pass
return covered, no_cover, ignore, ignore_master, all_params
def remove_specific_params(covered, no_cover, ignore):
# Determines the parameters that are specific to some of the
# tests in the suite.
ignore = set(ignore)
covered_temp = [param for param in covered if param not in ignore]
no_cover_temp = [param for param in no_cover if param not in ignore]
return covered_temp, no_cover_temp
def get_files():
# Returns the absolute paths of all maestro-overview.out files.
# The argunemnt is the name of the file that we are interested
# in reading.
# Determines current working directory, which should be the directory
# of the most recent test.
data = os.getcwd()
# Determines tests in the most recent test
dirs = filter(lambda d: os.path.isdir(d), os.listdir(data))
dirs = [os.path.join(data, d) for d in dirs]
file_paths = []
# Gets the job_info files from .tgz files
for dir in dirs:
for file in os.listdir(dir):
# Finds the tar files and extracts only job_info file
if file.endswith(".tgz"):
tmp = os.path.join(dir, file)
file_name = os.path.join(data,
os.path.splitext(file)[0])
# Extracts the job_info file
tarfile.open(tmp).extract(os.path.splitext(file)[0]
+"/job_info")
file_name = file_name+"/job_info"
file_here = os.path.join(dir, file_name)
file_paths.append(file_here)
# List of directories with file_name (e.g. job_info)
return file_paths
def get_frac(covered, no_cover):
# Determines the percentage of the parameters that were covered
# by the test suite
num_covered = len(covered)
num_no_cover = len(no_cover)
total = num_covered + num_no_cover
covered_frac = num_covered / float(total)
no_cover_frac = num_no_cover / float(total)
return covered_frac, no_cover_frac
def output_coverage(output_name, covered, no_cover, covered_frac,
no_cover_frac, specific = []):
# Prints the results of the coverage tests to coverage files
with open(output_name, mode='w') as coverage:
# Makes a file and to list the parameters that were not covered
# by the tests
coverage.write("================================================== \n")
coverage.write("Parameters that were not covered: \n")
coverage.write("================================================== \n")
for i in range(0, len(no_cover)):
coverage.write(no_cover[i] + "\n")
coverage.write("================================================== \n")
coverage.write(
"Coverage: {0:5.2f}% \n"
.format(covered_frac*100))
coverage.write("Total number of parameters: {} \n"
.format(len(covered)+len(no_cover)))
coverage.write("Number of parameters covered: {} \n"
.format(len(covered)))
coverage.write("Number of parameters not covered: {} \n"
.format(len(no_cover)))
if len(specific) != 0:
coverage.write(
"Number of ignored problem specific parameters: {}\n"
.format(len(specific)))
def remove_duplicates(all_params):
# Removes all of the duplicate parameters and provides it as a set
# and gives its length
return list(set(all_params)), len(list(set(all_params)))
def clean(file_paths):
# Removes all of the files and directories created to produce the
# coverage reports, but it will not delete the coverage reports
for i in range(0,len(file_paths)):
os.remove(file_paths[i])
directory = file_paths[i].replace("/job_info","")
os.rmdir(directory)
if __name__ == '__main__':
main()