-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasgn1-test.sh
400 lines (333 loc) · 10.2 KB
/
asgn1-test.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
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
#!/usr/bin/bash
port=3010
if (( "$#" == 1 )) && (( "$1" > 1023 )); then
port="$1"
elif (( "$#" == 1 )); then
echo "Warning: Port numbers less than 1024 are reserved. Defaulting to port 3010..."
elif [[ "$#" -ne 0 ]]; then
echo "asgn0-test: Program takes up to 1 argument (port number). Exiting..."
exit 1
fi
# UNCOMMENT 2 LINES BELOW IF YOU WISH TO RUN BURNING's TEST BEFOREHAND
if [ -f testScript ]; then
echo "====Running Burning's Tests===="
./testScript
fi
iter=0
if [ ! -f "r1.txt" ]; then
echo "Creating smaller test txt file"
while [ $iter -le 5 ];
do
cat httpserver.c >> r1.txt
((++iter))
done
fi
if [ ! -f "r2.txt" ]; then
echo "Creating smaller binary test file"
cat httpserver >> r2.txt
fi
iter=0
if [ ! -f "r3.txt" ]; then
echo "Creating smaller Makefile test file"
while [ $iter -le 5 ];
do
cat Makefile >> r3.txt
((++iter))
done
fi
if [ ! -f "r4.txt" ]; then
echo "Downloading larger test file"
curl -s ftp://ccg.epfl.ch/epd/current/epd.seq | tac | tac | head -qn 40000 > r4.txt
fi
iter=0
if [ ! -f "r5.txt" ]; then
echo "Creating second large test file"
while [ $iter -le 13 ]
do
cat httpserver.c >> r5.txt
cat Makefile >> r5.txt
((++iter))
done
fi
if [ ! -f "r6.txt" ]; then
out=$(which head)
cat $out >> r6.txt
fi
if [ ! -f "r7.txt" ]; then
echo "Creating larger mixed test file"
cat r4.txt >> r7.txt
cat r6.txt >> r7.txt
cat r5.txt >> r7.txt
fi
echo "====Running GET tests===="
NUM_IN_FILES=7
testCase=1
testIter=1
while [ $testIter -le $NUM_IN_FILES ]
do
FILE=r"$testCase".txt
out=$(diff <(curl -s localhost:"$port"/"$FILE") $FILE)
printf "Test $testCase: "
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: diff <(curl -s localhost:$port/$FILE) <(cat $FILE)\n"
fi
((++testCase))
((++testIter))
done
echo "====Running PUT tests===="
testIter=1
while [ $testIter -le $NUM_IN_FILES ]
do
INFILE=r"$testIter".txt
OUTFILE=r"$(($testIter + $NUM_IN_FILES))".txt
curl -s -T "$INFILE" localhost:"$port"/"$OUTFILE" > /dev/null
chmod +rw $OUTFILE
out=$(diff <(cat $INFILE) <(cat $OUTFILE))
printf "Test $testCase: "
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: curl -s -T $INFILE localhost:$port/$OUTFILE > /dev/null && chmod +rw $OUTFILE && diff $INFILE $OUTFILE\n"
fi
((++testCase))
((++testIter))
done
testIter=1
outIter=$((2*$NUM_IN_FILES+1))
while [ $testIter -le $NUM_IN_FILES ]
do
INFILE=r"$testIter".txt
OUTFILE=r"$outIter".txt
curl -s -T "$INFILE" localhost:"$port"/"$OUTFILE" > /dev/null
chmod +rw $OUTFILE
out=$(diff <(cat $INFILE) <(cat $OUTFILE))
printf "Test $testCase: "
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: curl -s -T $INFILE localhost:$port/$OUTFILE > /dev/null && chmod +rw $OUTFILE && diff $INFILE $OUTFILE\n"
fi
((++testCase))
((++testIter))
((++outIter))
done
echo "====Running GETs on files created/updated with PUTs above===="
testIter=1
while [ $testIter -le $NUM_IN_FILES ]
do
INFILE=r"$testIter".txt
OUTFILE=r"$(($testIter + $NUM_IN_FILES))".txt
out=$(diff <(cat $INFILE) <(curl -s localhost:"$port"/"$OUTFILE"))
printf "Test $testCase: "
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: curl -s -T $INFILE localhost:$port/$OUTFILE > /dev/null && chmod +rw $OUTFILE && diff $INFILE $OUTFILE\n"
fi
((++testCase))
((++testIter))
done
testIter=1
outIter=$((2*$NUM_IN_FILES+1))
while [ $testIter -le $NUM_IN_FILES ]
do
INFILE=r"$testIter".txt
OUTFILE=r"$outIter".txt
out=$(diff <(cat $INFILE) <(curl -s localhost:"$port"/"$OUTFILE"))
printf "Test $testCase: "
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: curl -s -T $INFILE localhost:$port/$OUTFILE > /dev/null && chmod +rw $OUTFILE && diff $INFILE $OUTFILE\n"
fi
((++testCase))
((++testIter))
((++outIter))
done
echo "====Calling PUT with different files, checking output===="
testIter=1
while [ $testIter -le $NUM_IN_FILES ]
do
INFILE0=r"$testIter".txt
INFILE1=Makefile
OUTFILE=r"$(($testIter + $NUM_IN_FILES))".txt
curl -s -T $INFILE0 localhost:"$port"/"$OUTFILE" > /dev/null
curl -s -T $INFILE1 localhost:"$port"/"$OUTFILE" > /dev/null
out0=$(diff $INFILE0 <(curl -s localhost:"$port"/"$OUTFILE"))
out1=$(diff $INFILE1 <(curl -s localhost:"$port"/"$OUTFILE"))
printf "Test $testCase: "
if [ ! "$out0" = "" ] && [ "$out1" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: curl -s -T $INFILE localhost:$port/$OUTFILE > /dev/null && chmod +rw $OUTFILE && diff $INFILE $OUTFILE\n"
fi
((++testCase))
((++testIter))
done
testIter=1
outIter=$((2*$NUM_IN_FILES+1))
while [ $testIter -le $NUM_IN_FILES ]
do
INFILE0=r"$testIter".txt
INFILE1=Makefile
OUTFILE=r"$(($testIter + $NUM_IN_FILES))".txt
curl -s -T $INFILE0 localhost:"$port"/"$OUTFILE" > /dev/null
curl -s -T $INFILE1 localhost:"$port"/"$OUTFILE" > /dev/null
out0=$(diff $INFILE0 <(curl -s localhost:"$port"/"$OUTFILE"))
out1=$(diff $INFILE1 <(curl -s localhost:"$port"/"$OUTFILE"))
printf "Test $testCase: "
if [ ! "$out0" = "" ] && [ "$out1" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: curl -s -T $INFILE localhost:$port/$OUTFILE > /dev/null && chmod +rw $OUTFILE && diff $INFILE $OUTFILE\n"
fi
((++testCase))
((++testIter))
done
echo "====Running Bad Request tests===="
FILE=r1.txt
# Invalid HostName for GET
printf "Test $testCase: "
out=$(diff <(curl -s localhost:"$port"/"$FILE" -H "Host: a a") <(echo Bad Request))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: diff <(curl -s localhost:$port/$FILE -H \"Host: a a\") <(echo Bad Request)\n"
fi
((++testCase))
# Invalid HostName for HEAD
#printf "Test $testCase: "
#out=$(diff <(curl -s -I localhost:"$port" -H "Host: a a") <(echo Bad Request))
#if [ "$out" = "" ]; then
# printf "PASS\n"
#else
# printf "FAIL\n"
#fi
#((++testCase))
# Invalid HostName for PUT
printf "Test $testCase: "
out=$(diff <(curl -s -T r1.txt localhost:"$port"/"$FILE" -H "Host: a a") <(echo Bad Request))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: diff <(curl -s -T r1.txt localhost:$port/$FILE -H \"Host: a a\") <(echo Bad Request)\n"
fi
((++testCase))
# Invalid Content-Length for PUT
printf "Test $testCase: "
out=$(diff <(curl -s -T r1.txt localhost:$port/"$FILE" -H "Content-Length: a") <(echo Bad Request))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: diff <(curl -s -T r1.txt localhost:$port/$FILE -H \"Content-Length: a\") <(echo Bad Request)\n"
fi
((++testCase))
printf "Test $testCase: "
out=$(diff <(curl -s -T r1.txt localhost:"$port"/"$FILE" -H "Content-Length: 333a") <(echo Bad Request))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: diff <(curl -s -T r1.txt localhost:$port/$FILE -H \"Content-Length: 333a\") <(echo Bad Request)\n"
fi
((++testCase))
printf "Test $testCase: "
out=$(diff <(curl -s -T r1.txt localhost:"$port"/"$FILE" -H "Content-Length: a333a") <(echo Bad Request))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: diff <(curl -s -T r1.txt localhost:$port/$FILE -H \"Content-Length: a333a\") <(echo Bad Request)\n"
fi
((++testCase))
FILE=this_file_is_more_than_19_characters.txt
# Resource name too long for GET
printf "Test $testCase: "
out=$(diff <(curl -s r1.txt localhost:"$port"/"$FILE") <(echo Bad Request))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: diff <(curl -s r1.txt localhost:$port/$FILE) <(echo Bad Request)"
fi
((++testCase))
# Resource name too long for PUT
printf "Test $testCase: "
out=$(diff <(curl -s -T r1.txt localhost:"$port"/"$FILE") <(echo Bad Request))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: diff <(curl -s -T r1.txt localhost:$port/$FILE -H \"Content-Length: a333a\") <(echo Bad Request)\n"
fi
((++testCase))
fn="this\$#@^%()&*!"
FILE="$fn".txt
# Resource has illegal characters for GET
printf "Test $testCase: "
out=$(diff <(curl -s r1.txt localhost:"$port"/"$FILE") <(echo Bad Request))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: diff <(curl -s r1.txt localhost:$port/$FILE) <(echo Bad Request)"
fi
((++testCase))
# Resource has illegal characters for PUT
printf "Test $testCase: "
out=$(diff <(curl -s -T r1.txt localhost:"$port"/"$FILE") <(echo Bad Request))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. Difference found. Command run: diff <(curl -s -T r1.txt localhost:$port/$FILE) <(echo Bad Request)\n"
fi
((++testCase))
echo ====Running File Not Found tests====
FILE=non_existent.txt
# Invalid HostName for GET
printf "Test $testCase: "
out=$(diff <(curl -s localhost:"$port"/"$FILE") <(echo File Not Found))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. diff <(curl -s localhost:$port/$FILE) <(echo File Not Found)\n"
fi
((++testCase))
# Invalid HostName for HEAD
#printf "Test $testCase: "
#out=$(diff <(curl -s -I localhost:"$port"/"$FILE") <(printf "HTTP/1.1 404 File Not Found\nContent-Length: 15\n\n"))
#
#if [ "$out" = "" ]; then
# printf "PASS\n"
#else
# printf 'FAIL. Difference found. Command run: diff <(curl -s -I localhost:"$port"/'
# printf "$FILE"
# printf ') <(printf "HTTP/1.1 404 File Not Found\\nContent-Length: 15\\n\\n")\n'
#fi
#((++testCase))
echo ====Running Forbidden tests====
FILE=forbidden.txt
if [ ! -f "forbidden.txt" ]; then
touch forbidden.txt
chmod -rw forbidden.txt
fi
# Invalid HostName for GET
printf "Test $testCase: "
out=$(diff <(curl -s localhost:"$port"/"$FILE") <(echo Forbidden))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. diff <(curl -s localhost:$port/$FILE) <(echo Forbidden)\n"
fi
((++testCase))
printf "Test $testCase: "
out=$(diff <(curl -T r1.txt -s localhost:"$port"/"$FILE") <(echo Forbidden))
if [ "$out" = "" ]; then
printf "PASS\n"
else
printf "FAIL. diff <(curl -s localhost:$port/$FILE) <(echo Forbidden)\n"
fi
((++testCase))
printf "====All Done. Removing r$((2*$NUM_IN_FILES+1)).txt-r$((3*$NUM_IN_FILES)).txt====\n"
iter=$((2*$NUM_IN_FILES+1))
while [ $iter -le $((3*$NUM_IN_FILES)) ]; do
rm -f r"$iter".txt
((++iter))
done