forked from ECP-WarpX/regression_testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
params.py
318 lines (230 loc) · 10.7 KB
/
params.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
try: import ConfigParser as configparser
except ImportError:
import configparser # python 3
import getpass
import os
import socket
import re
import repo
import suite
import test_util
def convert_type(string):
""" return an integer, float, or string from the input string """
if string is None:
return None
try: int(string)
except: pass
else: return int(string)
try: float(string)
except: pass
else: return float(string)
return string.strip()
def safe_get(cp, sec, opt, default=None):
try: v = cp.get(sec, opt)
except: v = default
return v
def load_params(args):
"""
reads the parameter file and creates as list of test objects as well as
the suite object
"""
test_list = []
try:
cp = configparser.ConfigParser(strict=False)
except:
cp = configparser.ConfigParser()
cp.optionxform = str
log = test_util.Log(output_file=args.log_file)
log.bold("loading " + args.input_file[0])
try: cp.read(args.input_file[0])
except:
log.fail("ERROR: unable to read parameter file {}".format(args.input_file[0]))
# "main" is a special section containing the global suite parameters.
mysuite = suite.Suite(args)
log.suite = mysuite
mysuite.log = log
valid_options = list(mysuite.__dict__.keys())
for opt in cp.options("main"):
# get the value of the current option
value = convert_type(cp.get("main", opt))
if opt in valid_options or "_" + opt in valid_options:
if opt == "sourceTree":
if not value in ["C_Src", "F_Src", "AMReX", "amrex"]:
mysuite.log.fail("ERROR: invalid sourceTree")
else:
mysuite.sourceTree = value
elif opt == "testTopDir": mysuite.testTopDir = mysuite.check_test_dir(value)
elif opt == "webTopDir": mysuite.init_web_dir(value)
elif opt == "reportCoverage": mysuite.reportCoverage = mysuite.reportCoverage or value
elif opt == "emailTo": mysuite.emailTo = value.split(",")
else:
# generic setting of the object attribute
setattr(mysuite, opt, value)
else:
mysuite.log.warn("suite parameter {} not valid".format(opt))
# AMReX -- this will always be defined
rdir = mysuite.check_test_dir(safe_get(cp, "AMReX", "dir"))
branch = convert_type(safe_get(cp, "AMReX", "branch"))
rhash = convert_type(safe_get(cp, "AMReX", "hash"))
mysuite.repos["AMReX"] = repo.Repo(mysuite, rdir, "AMReX",
branch_wanted=branch, hash_wanted=rhash)
# Check for Cmake build options for both AMReX and Source
for s in cp.sections():
if s == "AMReX":
mysuite.amrex_cmake_opts = safe_get(cp, s, "cmakeSetupOpts", default= "")
elif s == "source":
mysuite.source_cmake_opts = safe_get(cp, s, "cmakeSetupOpts", default= "")
# now all the other build and source directories
other_srcs = [s for s in cp.sections() if s.startswith("extra-")]
if not mysuite.sourceTree in ["AMReX", "amrex"]: other_srcs.append("source")
for s in other_srcs:
if s.startswith("extra-"):
k = s.split("-")[1]
else:
k = "source"
rdir = mysuite.check_test_dir(safe_get(cp, s, "dir"))
branch = convert_type(safe_get(cp, s, "branch"))
rhash = convert_type(safe_get(cp, s, "hash"))
build = convert_type(safe_get(cp, s, "build", default=0))
if s == "source": build = 1
comp_string = safe_get(cp, s, "comp_string")
name = os.path.basename(os.path.normpath(rdir))
mysuite.repos[k] = repo.Repo(mysuite, rdir, name,
branch_wanted=branch, hash_wanted=rhash,
build=build, comp_string=comp_string)
# AMReX-only tests don't have a sourceDir
mysuite.amrex_dir = mysuite.repos["AMReX"].dir
if mysuite.sourceTree in ["AMReX", "amrex"]:
mysuite.source_dir = mysuite.repos["AMReX"].dir
else:
mysuite.source_dir = mysuite.repos["source"].dir
# now flesh out the compile strings -- they may refer to either themselves
# or the source dir
for r in mysuite.repos.keys():
s = mysuite.repos[r].comp_string
if not s is None:
mysuite.repos[r].comp_string = \
s.replace("@self@", mysuite.repos[r].dir).replace("@source@", mysuite.repos["source"].dir)
# the suite needs to know any ext_src_comp_string
for r in mysuite.repos.keys():
if not mysuite.repos[r].build == 1:
if not mysuite.repos[r].comp_string is None:
mysuite.extra_src_comp_string += " {} ".format(mysuite.repos[r].comp_string)
# checks
if args.send_no_email:
mysuite.sendEmailWhenFail = 0
if mysuite.sendEmailWhenFail:
if mysuite.emailTo == [] or mysuite.emailBody == "":
mysuite.log.fail("ERROR: when sendEmailWhenFail = 1, you must specify emailTo and emailBody\n")
if mysuite.emailFrom == "":
mysuite.emailFrom = '@'.join((getpass.getuser(), socket.getfqdn()))
if mysuite.emailSubject == "":
mysuite.emailSubject = mysuite.suiteName+" Regression Test Failed"
if mysuite.slack_post:
if not os.path.isfile(mysuite.slack_webhookfile):
mysuite.log.warn("slack_webhookfile invalid")
mysuite.slack_post = 0
else:
print(mysuite.slack_webhookfile)
try: f = open(mysuite.slack_webhookfile)
except:
mysuite.log.warn("unable to open webhook file")
mysuite.slack_post = 0
else:
mysuite.slack_webhook_url = str(f.readline())
f.close()
if (mysuite.sourceTree == "" or mysuite.amrex_dir == "" or
mysuite.source_dir == "" or mysuite.testTopDir == ""):
mysuite.log.fail("ERROR: required suite-wide directory not specified\n" + \
"(sourceTree, amrexDir, sourceDir, testTopDir)")
# Make sure the web dir is valid (or use the default is none specified)
if mysuite.webTopDir == "":
mysuite.webTopDir = "{}/{}-web/".format(mysuite.testTopDir, mysuite.suiteName)
if not os.path.isdir(mysuite.webTopDir):
try: os.mkdir(mysuite.webTopDir)
except:
mysuite.log.fail("ERROR: unable to create the web directory: {}\n".format(
mysuite.webTopDir))
# all other sections are tests
mysuite.log.skip()
mysuite.log.bold("finding tests and checking parameters...")
for sec in cp.sections():
if sec in ["main", "AMReX", "source"] or sec.startswith("extra-"): continue
# maximum test name length -- used for HTML formatting
mysuite.lenTestName = max(mysuite.lenTestName, len(sec))
# create the test object for this test
mytest = suite.Test(sec)
mytest.log = log
invalid = 0
# set the test object data by looking at all the options in
# the current section of the parameter file
valid_options = list(mytest.__dict__.keys())
aux_pat = re.compile("aux\d+File")
link_pat = re.compile("link\d+File")
for opt in cp.options(sec):
# get the value of the current option
value = convert_type(cp.get(sec, opt))
if opt in valid_options or "_" + opt in valid_options:
if opt == "keyword":
mytest.keywords = [k.strip() for k in value.split(",")]
else:
# generic setting of the object attribute
setattr(mytest, opt, value)
elif aux_pat.match(opt):
mytest.auxFiles.append(value)
elif link_pat.match(opt):
mytest.linkFiles.append(value)
else:
mysuite.log.warn("unrecognized parameter {} for test {}".format(opt, sec))
# make sure that the build directory actually exists
if not mytest.extra_build_dir == "":
bdir = mysuite.repos[mytest.extra_build_dir].dir + mytest.buildDir
else:
bdir = mysuite.source_dir + mytest.buildDir
if not os.path.isdir(bdir):
mysuite.log.warn("invalid build directory: {}".format(bdir))
invalid = 1
# make sure all the require parameters are present
if mytest.compileTest:
if mytest.buildDir == "":
mysuite.log.warn("mandatory parameters for test {} not set".format(sec))
invalid = 1
else:
input_file_invalid = mytest.inputFile == "" and not mytest.run_as_script
if mytest.buildDir == "" or input_file_invalid or mytest.dim == -1:
warn_msg = ["required params for test {} not set".format(sec),
"buildDir = {}".format(mytest.buildDir),
"inputFile = {}".format(mytest.inputFile)]
warn_msg += ["dim = {}".format(mytest.dim)]
mysuite.log.warn(warn_msg)
invalid = 1
# check the optional parameters
if mytest.restartTest and mytest.restartFileNum == -1:
mysuite.log.warn("restart-test {} needs a restartFileNum".format(sec))
invalid = 1
if mytest.selfTest and mytest.stSuccessString == "":
mysuite.log.warn("self-test {} needs a stSuccessString".format(sec))
invalid = 1
if mytest.useMPI and mytest.numprocs == -1:
mysuite.log.warn("MPI parallel test {} needs numprocs".format(sec))
invalid = 1
if mytest.useOMP and mytest.numthreads == -1:
mysuite.log.warn("OpenMP parallel test {} needs numthreads".format(sec))
invalid = 1
if mytest.doVis and mytest.visVar == "":
mysuite.log.warn("test {} has visualization, needs visVar".format(sec))
invalid = 1
if mysuite.sourceTree in ["AMReX", "amrex"] and mytest.testSrcTree == "":
mysuite.log.warn("testSrcTree not set for AMReX test {}".format(sec))
invalid = 1
# add the current test object to the master list
if not invalid:
test_list.append(mytest)
else:
mysuite.log.warn("test {} will be skipped".format(sec))
# if any runs are parallel, make sure that the MPIcommand is defined
any_MPI = any([t.useMPI for t in test_list])
if any_MPI and mysuite.MPIcommand == "":
mysuite.log.fail("ERROR: some tests are MPI parallel, but MPIcommand not defined")
test_list.sort()
return mysuite, test_list