-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruntests.sh
More file actions
331 lines (218 loc) · 7 KB
/
runtests.sh
File metadata and controls
331 lines (218 loc) · 7 KB
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
#!/bin/bash
#Test Script
# requires timelimit
# can be installed on ubuntu via suda apt install timelimit
#basically, for each folder (primitives, Double, Float, and Math) this bash script does the following:
#1. uses javac to compile each .java file
#2. uses javap to generate a list of the methods in the .class file
#3. for each method in .class file: runs method and gets program output
#timelimit that we let OpenJML run for on a given method
timelimit=15
#boolean, do we test primitive test files?
testPrimitives=true
#boolean, do we test Double test files?
testDouble=true
#boolean, do we test Float test files?
testFloat=true
#boolean, do we test Math test files?
testMath=true
#counters to keep track of test case results (valid, invalid, error, hang)
valid=0
invalid=0
error=0
infeasible=0
hang=0
#test primitives here
if $testPrimitives ; then
echo "Primitives"
for filename in PrimitiveOps/*.java; do
javac $filename
echo -e "\t$filename"
classname=${filename%.java}
classname="${classname}.class"
methods=$(javap $classname)
i=0
end="}"
while IFS= read -r line; do
((i++))
if (( $i > 3 )) && ! [ $end = "$line" ] ; then
edited=${line%(*}
IFS=' '
read -a strarr <<< "$edited"
method=${strarr[-1]}
timelimit -t$timelimit java -jar openjml/openjml.jar -esc -method $method -verboseness 2 $filename > out.txt 2>&1
if grep -q "timelimit:" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "hanged"
((hang++))
elif ! grep -q "Error: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "error"
((error++))
elif ! grep -q "Infeasible: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "infeasible"
((infeasible++))
elif ! grep -q "Invalid: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "invalid"
((invalid++))
else
printf '\t\t%-30s %s\n' "$method" "valid"
((valid++))
fi
fi
done <<< "$methods"
done
total_valid=$valid
total_invalid=$invalid
total_hang=$hang
total_infeasible=$infeasible
total_error=$error
printf '\n\n\nPrimitives Results:\n\tTotal Valid: %2s\n\tTotal Invalid: %2s\n\tTotal Infeasible: %2s\n\tTotal Errors: %2s\n\tTotal Hanged: %2s\n\n\n' "$valid" "$invalid" "$infeasible" "$error" "$hang"
fi
valid=0
invalid=0
hang=0
infeasible=0
error=0
#test Double here
if $testDouble ; then
echo "Double"
for filename in Double/*.java; do
javac $filename
echo -e "\t$filename"
classname=${filename%.java}
classname="${classname}.class"
methods=$(javap $classname)
i=0
end="}"
while IFS= read -r line; do
((i++))
if (( $i > 3 )) && ! [ $end = "$line" ] ; then
edited=${line%(*}
IFS=' '
read -a strarr <<< "$edited"
method=${strarr[-1]}
timelimit -t$timelimit java -jar openjml/openjml.jar -esc -method $method -verboseness 2 $filename > out.txt 2>&1
if grep -q "timelimit:" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "hanged"
((hang++))
elif ! grep -q "Error: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "error"
((error++))
elif ! grep -q "Invalid: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "invalid"
((invalid++))
elif ! grep -q "Infeasible: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "infeasible"
((infeasible++))
else
printf '\t\t%-30s %s\n' "$method" "valid"
((valid++))
fi
fi
done <<< "$methods"
done
((total_valid+=$valid))
((total_invalid+=$invalid))
((total_hang+=$hang))
((total_infeasible+=$infeasible))
((total_error+=$error))
printf '\n\n\nDouble Results:\n\tTotal Valid: %2s\n\tTotal Invalid: %2s\n\tTotal Infeasible: %2s\n\tTotal Errors: %2s\n\tTotal Hanged: %2s\n\n\n' "$valid" "$invalid" "$infeasible" "$error" "$hang"
fi
valid=0
invalid=0
hang=0
infeasible=0
error=0
#test Float here
if $testFloat ; then
echo "Float"
for filename in Float/*.java; do
javac $filename
echo -e "\t$filename"
classname=${filename%.java}
classname="${classname}.class"
methods=$(javap $classname)
i=0
end="}"
while IFS= read -r line; do
((i++))
if (( $i > 3 )) && ! [ $end = "$line" ] ; then
edited=${line%(*}
IFS=' '
read -a strarr <<< "$edited"
method=${strarr[-1]}
timelimit -t$timelimit java -jar openjml/openjml.jar -esc -method $method -verboseness 2 $filename > out.txt 2>&1
if grep -q "timelimit:" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "hanged"
((hang++))
elif ! grep -q "Error: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "error"
((error++))
elif ! grep -q "Invalid: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "invalid"
((invalid++))
elif ! grep -q "Infeasible: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "infeasible"
((infeasible++))
else
printf '\t\t%-30s %s\n' "$method" "valid"
((valid++))
fi
fi
done <<< "$methods"
done
((total_valid+=$valid))
((total_invalid+=$invalid))
((total_hang+=$hang))
((total_error+=$error))
printf '\n\n\nFloat Results:\n\tTotal Valid: %2s\n\tTotal Invalid: %2s\n\tTotal Infeasible: %2s\n\tTotal Errors: %2s\n\tTotal Hanged: %2s\n\n\n' "$valid" "$invalid" "$infeasible" "$error" "$hang"
fi
valid=0
invalid=0
hang=0
infeasible=0
error=0
#test Math here
if $testMath ; then
echo "Math"
for filename in Math/*.java; do
javac $filename
echo -e "\t$filename"
classname=${filename%.java}
classname="${classname}.class"
methods=$(javap $classname)
i=0
end="}"
while IFS= read -r line; do
((i++))
if (( $i > 3 )) && ! [ $end = "$line" ] ; then
edited=${line%(*}
IFS=' '
read -a strarr <<< "$edited"
method=${strarr[-1]}
timelimit -t$timelimit java -jar openjml/openjml.jar -esc -method $method -verboseness 2 $filename > out.txt 2>&1
if grep -q "timelimit:" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "hanged"
((hang++))
elif ! grep -q "Error: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "error"
((error++))
elif ! grep -q "Invalid: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "invalid"
((invalid++))
elif ! grep -q "Infeasible: 0" "out.txt"; then
printf '\t\t%-30s %s\n' "$method" "infeasible"
((infeasible++))
else
printf '\t\t%-30s %s\n' "$method" "valid"
((valid++))
fi
fi
done <<< "$methods"
done
((total_valid+=$valid))
((total_invalid+=$invalid))
((total_hang+=$hang))
((total_error+=$error))
printf '\n\n\nMath Results:\n\tTotal Valid: %2s\n\tTotal Invalid: %2s\n\tTotal Infeasible: %2s\n\tTotal Errors: %2s\n\tTotal Hanged: %2s\n\n\n' "$valid" "$invalid" "$infeasible" "$error" "$hang"
fi
printf '\n\n\n\nOverall Results:\n\tTotal Valid: %2s\n\tTotal Invalid: %2s\n\tTotal Infeasible: %2s\n\tTotal Errors: %2s\n\tTotal Hanged: %2s\n\n\n' "$total_valid" "$total_invalid" "$total_infeasible" "$total_error" "$total_hang"