forked from INFERLab/gridlab-d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validate_win32.py
248 lines (222 loc) · 7.3 KB
/
validate_win32.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
# $Id: validate_win32.py 4738 2014-07-03 00:55:39Z dchassin $
# Copyright (C) 2009 Battelle Memorial Institute
import sys
import email
import os
import shutil
import smtplib
import time
import subprocess
tmppath = os.getenv("PATH")
os.putenv("PATH",tmppath+";..\\..\\..\\VS2005\\Win32\\Debug")
def do_help():
print("validate.py - GridLAB-D autotest/validation script")
print(" validate.py [dir=.] ~ runs the autotest script with \'dir\' used as")
print(" the root directory to walk through")
print("")
print(" The validate script will search through all directories underneath the")
print(" target directory and locate all files that start with \"test_\" inside")
print(" directories named \"autotest\". After locating as many files as possible,")
print(" it will run each file in GridLAB-D and count the number of model files")
print(" that fail to converge, then return that number.")
return 0
def print_error(path, printerr):
if(printerr == 1):
errfile = open("errfile.txt", "r")
# if(errfile == NULL):
# print("\tunable to open error file for printing")
# return
lines = errfile.readlines()
print(" ***** ")
for line in lines:
print (' * ',line[0:-1],)
print(" ***** ")
errfile.close()
##
# run_tests is the main function for the autotest validation script.
# @param argv The command line arguements.
def run_tests(argv):
clean = 0
printerr = 1
#scan for --help and --clean
if len(argv) > 1:
for arg in argv:
if "--help" in arg:
do_help();
sys.exit(0)
if "--clean" in arg:
clean = 1
if "--error" in arg:
if printerr == 0:
printerr = 1
if printerr == 1:
printerr = 0
print("Starting autotest script")
there_dir = os.getcwd()
err_ct = 0
ex_ct = 0
first_time = time.time()
end_time = 0
#if clean == 1:
# print("Go clean?")
# determine where the script starts
here_dir = os.getcwd()
print("Starting from \'"+here_dir+"\'")
#determine where we _want_ the script to start
if len(argv) > 1:
argn = 1
while argn < len(argv):
if argv[argn][0] == '-':
argn+=1
# ignore anything that looks like a flag
else:
there_dir = argv[argn]
# take the first path and be done with it
# poor form but we're not doing much complicated
break
#locate autotest dirs
#autotestdirs = find_autotest_dirs(there_dir)
autotestdirs = []
for path, dirs, files in os.walk(there_dir):
if "autotest" in dirs:
autotestdirs.append(os.path.abspath(os.path.join(path,"autotest")))
#for path in autotestdirs:
# print("Found dir: \'"+path+"\'")
#locate autotest test files
#autotestfiles = find_autotest_files(autotestdirs)
autotestfiles = []
for path in autotestdirs:
for file in os.listdir(path):
if file.startswith("test_") and file.endswith(".glm") and file[0] != '.':
autotestfiles.append((path, file))
#for path, file in autotestfiles:
# print("Found file: \'"+file+"\'")
#build test dirs
#for file in autotestfiles:
errlist=[]
cleanlist=[]
for path, file in autotestfiles:
err = False
slice = file[:-4]
currpath = os.getcwd()
xpath = os.path.join(path,slice) # path/slice
xfile = os.path.join(xpath,file) # path/slice/file.glm
if not os.path.exists(xpath):
os.mkdir(xpath)
if os.path.exists(os.path.join(xpath,"gridlabd.xml")):
os.remove(os.path.join(xpath,"gridlabd.xml"))
shutil.copy2(os.path.join(path,file), xfile) # path/file to path/slice/file
os.chdir(xpath)
#print("cwd: "+xpath)
# build conf files
# moo?
#run files with popen
#run file with:
outfile = open(os.path.join(xpath,"outfile.txt"), "w")
errfile = open(os.path.join(xpath,"errfile.txt"), "w")
print("NOTICE: Running \'"+xfile+"\'")
sys.stdout.flush()
start_time = time.time();
rv = subprocess.call(["gridlabd","-T","2",xfile],stdout=outfile,stderr=errfile)
end_time = time.time();
dt = end_time - start_time
outfile.close()
errfile.close()
if os.path.exists(os.path.join(xpath,"gridlabd.xml")):
statinfo = os.stat(os.path.join(xpath, "gridlabd.xml"))
if(statinfo.st_mtime > start_time):
if rv == 0: # didn't succeed if gridlabd.xml exists & updated since runtime
rv = 1
# handle results
if "err_" in file or "_err" in file:
if rv == 0:
if "opt_" in file or "_opt" in file:
print("WARNING: Optional "+file+" converged when it shouldn't've"+" ("+str(round(dt,2))+"s)")
cleanlist.append((path, file))
err = False
else:
print("ERROR: "+file+" converged when it shouldn't've"+" ("+str(round(dt,2))+"s)")
print_error(path, printerr)
err_ct += 1
err = True
elif rv == 2:
# print("SUCCESS: "+file+" failed to converge, as planned."+" ("+str(round(dt,2))+"s)")
cleanlist.append((path, file))
elif rv == 1:
print("EXCEPTION: "+file+" failed to load"+" ("+str(dt)+"s)")
print_error(path, printerr)
ex_ct += 1
err = True
else:
print("EXCEPTION: "+file+" unrecognized return value ("+str(rv)+")"+" ("+str(round(dt,2))+"s)")
print_error(path, printerr)
ex_ct += 1
err = True
elif "exc_" in file or "_exc" in file:
if rv == 0:
if "opt_" in file or "_opt" in file:
print("WARNING: Optional "+file+" loaded when it shouldn't've"+" ("+str(round(dt,2))+"s)")
cleanlist.append((path, file))
err = False
else:
print("ERROR: "+file+" loaded when it shouldn't've"+" ("+str(round(dt,2))+"s)")
err_ct += 1
err = True
elif rv == 1:
# print("SUCCESS: "+file+" failed to load, as planned"+" ("+str(round(dt,2))+"s)")
cleanlist.append((path, file))
else:
print("EXCEPTION: "+file+" unrecognized return value ("+str(rv)+")"+" ("+str(round(dt,2))+"s)")
print_error(path, printerr)
ex_ct += 1
err = True
else:
if rv == 2:
if "opt_" in file or "_opt" in file:
print("WARNING: Optional "+file+" failed to converge"+" ("+str(round(dt,2))+"s)")
cleanlist.append((path, file))
err = False
else:
err_ct += 1
print("ERROR: "+file+" failed to converge"+" ("+str(round(dt,2))+"s)")
print_error(path, printerr)
err = True
elif rv == 1:
print("EXCEPTION: "+file+" failed to load"+" ("+str(round(dt,2))+"s)")
print_error(path, printerr)
ex_ct += 1
err = True
elif rv == 0:
# print("SUCCESS: "+file+" converged"+" ("+str(round(dt,2))+"s)")
cleanlist.append((path, file))
else:
print("EXCEPTION: "+file+": unrecognized return value ("+str(rv)+")"+" ("+str(round(dt,2))+"s)")
print_error(path, printerr)
ex_ct += 1
err = True
if err:
# zip target directory
errlist.append((path,file))
os.chdir(currpath)
sys.stdout.flush()
#print("cwd: "+currpath)
# end autotestfiles loop
#cleanup as appropriate
#for cleanfile, cleanpath in cleanlist:
# for path, dirs, file in os.walk(cleanpath):
# print("foo")
#end
#print("bar")
last_time = time.time()
dt = last_time - first_time
#return success/failure
print("Validation detected "+str(err_ct)+" models with errors and "+str(ex_ct)+" models with exceptions in "+str(round(dt,2))+" seconds.")
for errpath, errfile in errlist:
print(" * "+os.path.join(errpath, errfile))
print("Validation detected "+str(err_ct)+" models with errors and "+str(ex_ct)+" models with exceptions in "+str(round(dt,2))+" seconds.")
sys.exit(err_ct+ex_ct)
#end run_tests()
if __name__ == '__main__':
run_tests(sys.argv)
#end main
#end validate_new.py