-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.sh
311 lines (263 loc) · 6.8 KB
/
tests.sh
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
#!/bin/bash
TEST_FOLDER=$PWD"/tests"
LOG_FILE=$TEST_FOLDER"/tests.log"
SIMULATEUR="spim"
MAIN=$PWD"/sos"
NB_SUCCESS=0
NB_TESTS=1
main () {
echo "Démarage des tests ....\n"
#On intialise le fichier de log
rm -f "$LOG_FILE"
touch "$LOG_FILE"
#On supprime les fichiers temporaire
rm -rf /tmp//test-sos*
#Test liminaire
if ! test_liminaire; then
fail
exit 1
fi
categories_tests=$1
nb_categories_tests=$2
i=1
s=1
for categorie_tests in $categories_tests
do
entete_categorie $(basename $categorie_tests) $i $nb_categories_tests
cd $categorie_tests
tests=$(find ./* -maxdepth 0 -type d | sort -V)
nb_tests=$(find ./* -maxdepth 0 -type d|wc -l|sed 's/ //g')
j=1
for test in $tests
do
entete_test $test $j $nb_tests
cd $test
do_test
cd ..
j=$((j+1))
s=$((s+1))
echo "\n" >> $LOG_FILE
done
cd ..
i=$((i+1))
done
if [ $NB_SUCCESS -eq $s ]; then
coloredEcho "\nTous les tests ont réussi ! ($NB_SUCCESS/$s)" green
return 0
else
coloredEcho "\nErreurs ! ($NB_SUCCESS/$s)" red
return 1
fi
}
test_liminaire(){
entete_test "compil" 1 1
#On compile le programme
echo "\n#### Compilation" >> $LOG_FILE
echo "#### make clean && make" >> $LOG_FILE
make clean >> $LOG_FILE 2>&1
EXITCODE=$?
if [ $EXITCODE -ne 1 ]; then
make >> $LOG_FILE 2>&1
EXITCODE=$?
fi
echo "==> exitcode: $EXITCODE" >> $LOG_FILE
if [ $EXITCODE -ne 0 ]; then
fail
exit 1
else
success
fi
return $EXITCODE
}
do_test(){
#Si il y a un fichier in.* et pas de fichier .out
if [ -f "in.*" ] && [ ! -f "out.*" ]; then
coloredEcho "Le fichier out.txt n'existe pas" orange
return
else
#On stocke le fichier out.txt dans une variable
EXCPECTED=out.txt
fi
#On stocke le chemin du fichier assembleur (si il existe)
if [ -f "in.asm" ]; then
FILE_ASM=in.asm
else
FILE_ASM=/tmp/test-sos.$CATEGORIE_TEST.$TEST.asm.$$
fi
OUTPUT=/tmp/test-sos.$CATEGORIE_TEST.$TEST.out.$$
#Si il y a un fichier qui commence par in
if [ $(ls in*|wc -l|sed 's/ //g') -gt 0 ]; then
#Si il y a un fichier in-err.sos
if [ -f "in-err.sos" ]; then
if test_compilation in-err.sos; then
if test_execution $FILE_ASM; then
fail
return
else
success
return
fi
else
success
return
fi
fi
#Si il y a un fichier in.sos
if [ -f "in.sos" ]; then
if ! test_compilation in.sos; then
fail
return
fi
fi
#On exécute le fichier compilé, si faux, on arrête le test
if ! test_execution $FILE_ASM; then
fail
return
fi
#On compare le résultat avec le fichier out.txt
if ! test_sortie $EXCPECTED $OUTPUT; then
fail
return
fi
#Si le test est passé, on affiche un message de succès
success
else
coloredEcho "Le fichier in* n'existe pas" orange
return
fi
}
fail (){
coloredEcho "KO!\t(Voir le fichier $(basename $LOG_FILE))" red
}
success(){
coloredEcho "OK!" green
NB_SUCCESS=$((NB_SUCCESS+1))
}
test_compilation(){
in=$1
echo "\n#### Compilation" >> $LOG_FILE
echo "#### ./SoS -o $FILE_ASM $in" >> $LOG_FILE
$MAIN -o $FILE_ASM $in >> $LOG_FILE 2>&1
EXITCODE=$?
if [ $EXITCODE -ne 1 ]; then
if [ ! -f $FILE_ASM ]; then
echo "Le fichier $FILE_ASM n'existe pas" >> $LOG_FILE
EXITCODE=1
else
cat $FILE_ASM >> $LOG_FILE
fi
echo "\n" >> $LOG_FILE
fi
echo "==> exitcode: $EXITCODE" >> $LOG_FILE
return $EXITCODE
}
test_execution(){
in=$1
echo "\n#### Execution" >> $LOG_FILE
echo "#### $SIMULATEUR -quiet -file $in" >> $LOG_FILE
# On stocke la sortie dans une variable
$SIMULATEUR -quiet -file $in 2>&1 >> $OUTPUT
EXITCODE=$?
if [ $EXITCODE -eq 0 ]; then
# Si le système est unix
if [ $(uname) = "Linux" ]; then
# On supprime les 4 premières lignes
sed -i '1,5d' $OUTPUT
fi
sed -i -e '$a\' $OUTPUT
fi
# Si $OUTPUT contient "Exception occured"
if grep -q "Exception occured" $OUTPUT; then
EXITCODE=1
fi
# conserve la sorte dans le log
cat $OUTPUT >> $LOG_FILE
echo "==> exitcode: $EXITCODE" >> $LOG_FILE
return $EXITCODE
}
test_sortie(){
excpected=$1
output=$2
#sinon on vérifie qu'il retourne bien ce qui été attendu
echo "\n#### Comparaison" >> $LOG_FILE
echo "#### diff $excpected $output" >> $LOG_FILE
#Comparaison
diff $output $excpected >> $LOG_FILE
EXITCODE=$?
cat $output >> $LOG_FILE
echo "==> exitcode: $EXITCODE" >> $LOG_FILE
return $EXITCODE
}
entete_categorie () {
CATEGORIE_TEST="$1"
NUMERO_CATEGORIE_TEST="$2"
NB_CATEGORIE_TEST="$3"
#On ne garde qu'après le premier tiret
CATEGORIE_TEST=$(echo $CATEGORIE_TEST | cut -d'-' -f2-)
coloredEcho "\n------ Test de $CATEGORIE_TEST ($NUMERO_CATEGORIE_TEST/$NB_CATEGORIE_TEST) ------" blue
echo "############## $CATEGORIE_TEST ($NUMERO_CATEGORIE_TEST/$NB_CATEGORIE_TEST) ##############" >> $LOG_FILE
}
entete_test () {
TEST="$1"
NUMERO_TEST="$2"
NB_TEST="$3"
#On ne garde qu'après le premier tiret
TEST=$(echo $TEST | cut -d'-' -f2-)
printf "Test $TEST\t"
# Si $TEST à moins de 4 caractères, on ajoute une tabulation
if [ ${#TEST} -lt 3 ]; then
printf "\t"
fi
# Si $TEST à moins de 11 caractères, on ajoute une tabulation
if [ ${#TEST} -lt 11 ]; then
printf "\t"
fi
printf "($NUMERO_TEST/$NB_TEST)\t........ "
echo "-------------- $TEST --------------" >> $LOG_FILE
}
coloredEcho () {
local exp="$1";
local color=$2;
case $(echo $color | tr '[:upper:]' '[:lower:]') in
black) color=16 ;;
red) color=5 ;;
green) color=2 ;;
yellow) color=3 ;;
blue) color=4 ;;
orange) color=1 ;;
cyan) color=6 ;;
gray) color=8 ;;
white|*) color=15 ;; # white or invalid color
esac
if [ $COLORIZE -eq 1 ]; then
tput setaf $color;
echo "$exp";
tput sgr0;
else
echo "$exp";
fi
}
if [ -z ${COLORIZE+x} ]; then
COLORIZE=1
else
COLORIZE=0
fi
#Si on a des arguments, on les ajoutes à la liste des tests
if [ $# -gt 0 ]; then
#Pour chaque argument, on ajoute le dossier correspondant à la liste des tests
for arg in "$@"; do
TESTS="$TESTS $TEST_FOLDER/$arg"
done
NB_TESTS=$#
else
TESTS=$(find $TEST_FOLDER/* -maxdepth 0 -type d)
NB_TESTS=$(find $TEST_FOLDER/* -maxdepth 0 -type d|wc -l|sed 's/ //g')
fi
#Pour chaque test, on teste si il existe
for TEST in $TESTS; do
if [ ! -d $TEST ]; then
coloredEcho "Le test $(basename $TEST) n'existe pas" red
exit 1
fi
done
main "$TESTS" "$NB_TESTS"