-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminishell-unit-test.sh
More file actions
executable file
·513 lines (489 loc) · 27 KB
/
minishell-unit-test.sh
File metadata and controls
executable file
·513 lines (489 loc) · 27 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
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
#!/bin/bash
TOTAL_TESTS=0
TOTAL_EV_SUCCESS=0 # EV = EXIT_VALUE
TOTAL_OV_SUCCESS=0 # OP = OUTPUT_VALUE
TOTAL_VLG_SUCCESS=0 # VLG = VALGRIND
CWD=$(pwd)
Build_test_environment()
{
rm -rf .minishell_test_environment
mkdir .minishell_test_environment
cd .minishell_test_environment
mkdir expected_output_dir expected_output_dir/test_files original_output_dir original_output_dir/test_files
cd expected_output_dir/test_files
touch i_pipe_0 i_pipe_1 i_pipe_2 i_pipe_3 i_pipe_4 i_pipe_5 i_pipe_6 i_pipe_7
ls i_pipe_* | xargs -I {} bash -c "echo "test" > {}"
touch a_pipe_0 a_pipe_1 a_pipe_2 a_pipe_3 a_pipe_4 a_pipe_5 a_pipe_6 a_pipe_7
ls a_pipe_* | xargs -I {} bash -c "echo "test_{}_" > {}"
cd ../..
cd original_output_dir/test_files
touch i_pipe_0 i_pipe_1 i_pipe_2 i_pipe_3 i_pipe_4 i_pipe_5 i_pipe_6 i_pipe_7
ls i_pipe_* | xargs -I {} bash -c "echo "test" > {}"
touch a_pipe_0 a_pipe_1 a_pipe_2 a_pipe_3 a_pipe_4 a_pipe_5 a_pipe_6 a_pipe_7
ls a_pipe_* | xargs -I {} bash -c "echo "test_{}_" > {}"
cd ../..
}
Test()
{
((TOTAL_TESTS++))
cd expected_output_dir
bash --posix -c "$1" > output
local EXPECTED_EXIT_VALUE="$(echo $?)"
cd ../original_output_dir
valgrind --track-fds=yes --leak-check=full -s --log-file=".vlg.out" $CWD/minishell -c "$1" > output
local PROGRAM_EXIT_VALUE="$(echo $?)"
local VLG_OUTPUT=$(cat .vlg.out)
local NB_ERROR=$(grep -E "(ERROR.*[1-9].*suppressed.*)" .vlg.out | awk '{print $4}')
printf "$NB_ERROR"
local OPEN_FDS="$(grep -E "Open file descriptor" .vlg.out | wc -l)"
local PARENT_FDS=$(grep -E "<inherited from parent>" .vlg.out | wc -l)
rm -f .vlg.out
cd ..
local OUTPUTS_DIFFS=$(diff --color=always -ru expected_output_dir original_output_dir)
echo -e "\033[38;5;208m==== TEST $TOTAL_TESTS ====\033[0m"
echo -e "\033[37mcommand: \033[0m\033[4m$1\033[0m"
# Check that $OUTPUTS_DIFFS is empty => Would mean the test is successful
if [ -z "$OUTPUTS_DIFFS" ]; then
echo -e "Output: \033[92mOK\033[0m"
((TOTAL_OV_SUCCESS++))
else
echo -e "Output: \033[91mKO\033[0m"
echo "=========== DIFFS ==========="
echo "$OUTPUTS_DIFFS" | sed -e 's/\n/\n\t/g'
echo "============================="
fi
# Check exit value
if [ "$PROGRAM_EXIT_VALUE" == "$EXPECTED_EXIT_VALUE" ]; then
echo -e "Exit value: \033[92mOK\033[0m"
((TOTAL_EV_SUCCESS++))
else
echo -e "Exit value: \033[91mKO\033[0m \n\tO:$EXPECTED_EXIT_VALUE\n\tY:$PROGRAM_EXIT_VALUE"
fi
# Check valgrind errors
if [[ ( "$OPEN_FDS" == "0" || "$OPEN_FDS" == "$PARENT_FDS" ) && !"$NB_ERROR" ]]; then
echo -e "Valgrind: \033[92mOK\033[0m"
((TOTAL_VLG_SUCCESS++))
else
echo \"$NB_ERROR\"
echo \"$OPEN_FDS\"
echo \"$PARENT_FDS\"
echo -e "Valgrind: \033[91mKO\033[0m \n"
echo "$VLG_OUTPUT"
fi
if [ "$TOTAL_EV_SUCCESS" != "$TOTAL_TESTS" ] || [ "$TOTAL_OV_SUCCESS" != "$TOTAL_TESTS" ] \
|| [ "$TOTAL_VLG_SUCCESS" != "$TOTAL_TESTS" ]; then
exit
fi
# rm -rf expected_output_dir/* original_output_dir/*
rm -rf expected_output_dir/output original_output_dir/output
}
Final_result()
{
echo -e "\033[38;5;208m==== RESULT ====\033[0m"
echo "correct exit values:$TOTAL_EV_SUCCESS/$TOTAL_TESTS"
echo "correct output values:$TOTAL_OV_SUCCESS/$TOTAL_TESTS"
echo "valgrind successes:$TOTAL_VLG_SUCCESS/$TOTAL_TESTS"
}
rm -rf .minishell_test_environment
Build_test_environment
############################################################################
# #
# #
# GENERAL TESTS #
# #
# #
############################################################################
Test "export | adam"
Test "echo test"
Test "echo $"
Test "echo $?"
Test "echo test >/dev/full"
Test "echo test >/dev/null"
Test "ls > /dev/full"
Test "cat /dev/null"
Test "echo \"'$TERM'\""
Test "echo '\"$TERM\"'"
Test "echo $ PATH"
Test "inexistant_command"
Test "echo *"
Test "echo libft/ft_strchr.*"
Test "echo test < inexistant_input"
Test "export bla='test' && echo \$bla"
Test "(export bla='test' | echo \$bla) && echo \$bla"
Test "head < /dev/null"
Test "cd /dev/null"
Test "echo /dev/full"
Test "cat /dev/null | head | grep a"
Test "(echo test | (cat | cat | echo test | ls | export EEE=lol) | export EEE='123' | echo \$EEE)"
Test ""
Test "''"
Test "(mkdir ttt0 ttt1 ttt1/ttt2 ; cd ttt0 ; cd ../ttt1/ttt2 ; rm -rf ../../ttt1 ; ls) ; ls"
Test "(mkdir ttt0 ttt1 ttt1/ttt2 ; cd ttt0 ; cd ../ttt1/ttt2 ; rm -rf ../../ttt1 ; mkdir) ; mkdir ok"
Test "(mkdir ttt0 ttt1 ttt1/ttt2 ; cd ttt0 ; cd ../ttt1/ttt2 ; rm -rf ../../ttt1)"
Test "echo '\$USER"\$PATH"'"
Test "echo '$USER"'$PATH'"'"
Test "echo \$USER"'$PATH'""
Test "echo "'$PATH'""
Test "echo '"\$PATH"'"
Test "export a=\"i_pipe_1 i_pipe_2 i_pipe_3\" && cat"
Test "export a=\"i_pipe_1 i_pipe_2 i_pipe_3\" && export b="$a" && cat"
Test "export a=\"i_pipe_1 i_pipe_2 i_pipe_3\" && export b='$a' && cat"
Test "export a=\"i_pipe_1 i_pipe_2 i_pipe_3\" || export b="$a" && cat"
Test "export bla='test' && echo \$b*a"
Test "*"
Test "cd *"
Test "**"
Test " *"
Test "* "
Test "* t5"
Test "* * *"
Test "ls **"
Test "ls ** "
Test "ls * *"
Test " ls * * "
Test "echo test"
Test "echo $"
Test "echo $?"
Test "echo test >/dev/full"
Test "echo test >/dev/null"
Test "ls > /dev/full"
Test "cat /dev/null"
Test "echo \"'$TERM'\""
Test "echo '\"$TERM\"'"
Test "echo $ *PATH"
Test "inexistant_command*"
Test "echo *"
Test "echo libft/*f*_st*chr.**"
Test "echo test < inexistant*input"
Test "export bla='test' && echo \$b*a"
Test "(export bla='test' | echo \$bla) && echo \$bla"
Test "head < /dev/null"
Test "cd /dev/nul*"
Test "echo /dev/f*ll"
Test "cat /dev/null | head | grep a"
Test "(echo test | (cat | cat | echo test | ls | export EEE=lol) | export EEE='123' | echo \$EEE)"
Test ""
Test "''"
Test "(mkdir ttt0 ttt1 ttt1/ttt2 ; cd ttt0 ; cd ../ttt1/ttt2 ; rm -rf ../../ttt* ; ls) ; ls"
Test "(mkdir ttt0 ttt1 ttt1/ttt2 ; cd ttt0 ; cd ../ttt1/ttt2 ; rm -rf ../../ttt* ; mkdir) ; mkdir ok"
Test "(mkdir ttt0 ttt1 ttt1/ttt2 ; cd ttt0 ; cd ../ttt1/ttt2 ; rm -rf ../../ttt*)"
Test "echo '\$USER"\$PATH"'"
Test "echo '$USER"'$PATH'"'"
Test "echo \$USER"'$PATH'""
Test "echo "'$PATH'""
Test "echo '"\$PATH"'"
Test "export a=\"i_pipe_1 i_pipe_2 i_pipe_3\" && cat"
Test "export a=\"i_pipe_1 i_pipe_2 i_pipe_3\" && export b="$a" && cat"
Test "export a=\"i_pipe_1 i_pipe_2 i_pipe_3\" && export b='$a' && cat"
Test "export a=\"i_pipe_1 i_pipe_2 i_pipe_3\" || export b="$a" && cat"
############################################################################
# #
# #
# ENV VARS TESTS #
# #
# #
############################################################################
Test "unset HOME"
Test "unset PWD"
Test "unset USER"
Test "unset HOME USER"
Test "unset HOME PWD"
Test "unset PATH"
Test "unset PATH PWD"
Test "unset PATH PWD USER HOME"
Test "unset PATH ; echo test"
Test "unset PATH ; cd test"
Test "unset PATH ; ls"
Test "unset PATH ; echo test"
Test "(cd .. ; unset PWD ; pwd)"
Test "unset HOME ; cd"
Test "unset PWD HOME OLDPWD ; cd -"
Test "unset PWD HOME OLDPWD ; cd .."
Test "unset PWD HOME OLDPWD ; cd"
Test "unset PWD HOME OLDPWD ; cd *"
############################################################################
# #
# #
# PIPE OPERATORS TESTS #
# #
# #
############################################################################
Test "echo lol | echo test1"
Test "inexistant_command lol | echo test"
Test "cat inexistant_file | echo ergerg"
Test "inexistant_command | inexistant_command"
Test "echo test | cat"
Test "echo test | cat | rev"
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 >test_files/o_pipe_2 | echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 | echo test"
Test "cat inexistant_file | echo ergerg > test_files/o_pipe_5"
Test "inexistant_command | > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 | echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol< test_files/i_pipe_4 | echo test"
Test "cat inexistant_file | echo ergerg < test_files/i_pipe_5"
Test "inexistant_command | < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol>> test_files/a_pipe_1 >> test_files/a_pipe_2 | echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4 | echo test"
Test "cat inexistant_file | echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command | >>test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 000
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 | echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 | echo test"
Test "cat inexistant_file | echo ergerg > test_files/o_pipe_5"
Test "inexistant_command | > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 | echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol< test_files/i_pipe_4 | echo test"
Test "cat inexistant_file | echo ergerg < test_files/i_pipe_5"
Test "inexistant_command | < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 | echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4 | echo test"
Test "cat inexistant_file | echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command | >> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 666
Test "> o_pipe_1"
Test "> o_pipe_1 > o_pipe_2"
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 | echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 | echo test"
Test "cat inexistant_file | echo ergerg > test_files/o_pipe_5 | egre > test_files/o_pipe_51"
Test "inexistant_command | > test_files/o_pipe_6 inexistant_command | echo test"
Test "< i_pipe_1"
Test "< i_pipe_1 > o_pipe_2"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 | echo test1 < test_files/i_pipe_3 | < i_pipe_1"
Test "inexistant_command lol < test_files/i_pipe_4 | echo test "
Test "cat inexistant_file | echo ergerg < test_files/i_pipe_5 | | echo test"
Test "inexistant_command | < test_files/i_pipe_6 inexistant_command | cat inexistant_file"
Test ">> a_pipe_1"
Test ">> a_pipe_1 >> a_pipe_2"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 | echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4| echo test"
Test "cat inexistant_file | echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command | >> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 000
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 | echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 |echo test"
Test "cat inexistant_file | echo ergerg > test_files/o_pipe_5"
Test "inexistant_command | > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 | echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol < test_files/i_pipe_4 | echo test"
Test "cat inexistant_file | echo ergerg < test_files/i_pipe_5"
Test "inexistant_command | < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 | echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >>test_files/a_pipe_4 |echo test"
Test "cat inexistant_file | echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command|>> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 666
############################################################################
# #
# #
# AND OPERATORS TESTS #
# #
# #
############################################################################
Test "echo lol && echo test1"
Test "inexistant_command lol && echo test"
Test "cat inexistant_file && echo ergerg"
Test "inexistant_command && inexistant_command"
Test "echo test && echo lol"
Test "echo test && echo lol && echo 434343rgrg"
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 >test_files/o_pipe_2 && echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 && echo test"
Test "cat inexistant_file && echo ergerg > test_files/o_pipe_5"
Test "inexistant_command && > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 && echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol< test_files/i_pipe_4 && echo test"
Test "cat inexistant_file && echo ergerg < test_files/i_pipe_5"
Test "inexistant_command && < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol>> test_files/a_pipe_1 >> test_files/a_pipe_2 && echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4 && echo test"
Test "cat inexistant_file && echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command && >>test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 000
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 && echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 && echo test"
Test "cat inexistant_file && echo ergerg > test_files/o_pipe_5"
Test "inexistant_command && > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 && echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol< test_files/i_pipe_4 && echo test"
Test "cat inexistant_file && echo ergerg < test_files/i_pipe_5"
Test "inexistant_command && < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 && echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4 && echo test"
Test "cat inexistant_file && echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command && >> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 666
Test "> o_pipe_1"
Test "> o_pipe_1 > o_pipe_2"
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 && echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 && echo test && cat"
Test "cat inexistant_file && echo ergerg > test_files/o_pipe_5 && egre > test_files/o_pipe_51"
Test "inexistant_command && > test_files/o_pipe_6 inexistant_command && echo test"
Test "< i_pipe_1"
Test "< i_pipe_1 > o_pipe_2"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 && echo test1 < test_files/i_pipe_3 && < i_pipe_1"
Test "inexistant_command lol < test_files/i_pipe_4 && echo test"
Test "cat inexistant_file && echo ergerg < test_files/i_pipe_5 && && echo test"
Test "inexistant_command && < test_files/i_pipe_6 inexistant_command && cat inexistant_file"
Test ">> a_pipe_1"
Test ">> a_pipe_1 >> a_pipe_2"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 && echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4&& echo test"
Test "cat inexistant_file && echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command && >> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 000
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 && echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 &&echo test"
Test "cat inexistant_file && echo ergerg > test_files/o_pipe_5"
Test "inexistant_command && > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 && echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol < test_files/i_pipe_4 && echo test"
Test "cat inexistant_file && echo ergerg < test_files/i_pipe_5"
Test "inexistant_command && < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 && echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >>test_files/a_pipe_4 &&echo test"
Test "cat inexistant_file && echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command&&>> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 666
############################################################################
# #
# #
# SEMICOLON OPERATOR TESTS #
# #
# #
############################################################################
Test "echo lol ; echo test1"
Test "inexistant_command lol ; echo test"
Test "cat inexistant_file ; echo ergerg"
Test "inexistant_command ; inexistant_command"
Test "echo test ; echo 4grgrgr"
Test "echo test; echo grbtgr ; echo tee"
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 >test_files/o_pipe_2 ; echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 ; echo test"
Test "cat inexistant_file ; echo ergerg > test_files/o_pipe_5"
Test "inexistant_command ; > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 ; echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol< test_files/i_pipe_4 ; echo test"
Test "cat inexistant_file ; echo ergerg < test_files/i_pipe_5"
Test "inexistant_command ; < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol>> test_files/a_pipe_1 >> test_files/a_pipe_2 ; echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4 ; echo test"
Test "cat inexistant_file ; echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command ; >>test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 000
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 ; echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 ; echo test"
Test "cat inexistant_file ; echo ergerg > test_files/o_pipe_5"
Test "inexistant_command ; > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 ; echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol< test_files/i_pipe_4 ; echo test"
Test "cat inexistant_file ; echo ergerg < test_files/i_pipe_5"
Test "inexistant_command ; < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 ; echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4 ; echo test"
Test "cat inexistant_file ; echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command ; >> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 666
Test "> o_pipe_1"
Test "> o_pipe_1 > o_pipe_2"
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 ; echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 ; echo test"
Test "cat inexistant_file ; echo ergerg > test_files/o_pipe_5 ; egre > test_files/o_pipe_51"
Test "inexistant_command ; > test_files/o_pipe_6 inexistant_command ; echo test"
Test "< i_pipe_1"
Test "< i_pipe_1 > o_pipe_2"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 ; echo test1 < test_files/i_pipe_3 ; < i_pipe_1"
Test "inexistant_command lol < test_files/i_pipe_4 ; echo test"
Test "cat inexistant_file ; echo ergerg < test_files/i_pipe_5 ; ; echo test"
Test "inexistant_command ; < test_files/i_pipe_6 inexistant_command ; cat inexistant_file"
Test ">> a_pipe_1"
Test ">> a_pipe_1 >> a_pipe_2"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 ; echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4; echo test"
Test "cat inexistant_file ; echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command ; >> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 000
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 ; echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 ;echo test"
Test "cat inexistant_file ; echo ergerg > test_files/o_pipe_5"
Test "inexistant_command ; > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 ; echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol < test_files/i_pipe_4 ; echo test"
Test "cat inexistant_file ; echo ergerg < test_files/i_pipe_5"
Test "inexistant_command ; < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 ; echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >>test_files/a_pipe_4 ;echo test"
Test "cat inexistant_file ; echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command;>> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 666
############################################################################
# #
# #
# OR OPERATOR TESTS #
# #
# #
############################################################################
Test "echo lol || echo test1"
Test "inexistant_command lol || echo test"
Test "cat inexistant_file || echo ergerg"
Test "inexistant_command || inexistant_command"
Test "echo test || echo cat"
Test "echo test || echo cat || echo rev"
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 >test_files/o_pipe_2 || echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 || echo test"
Test "cat inexistant_file || echo ergerg > test_files/o_pipe_5"
Test "inexistant_command || > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 || echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol< test_files/i_pipe_4 || echo test"
Test "cat inexistant_file || echo ergerg < test_files/i_pipe_5"
Test "inexistant_command || < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol>> test_files/a_pipe_1 >> test_files/a_pipe_2 || echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4 || echo test"
Test "cat inexistant_file || echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command || >>test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 000
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 || echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 || echo test"
Test "cat inexistant_file || echo ergerg > test_files/o_pipe_5"
Test "inexistant_command || > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 || echo test1 < test_files/i_pipe_3"
Test "inexistant_command lol< test_files/i_pipe_4 || echo test"
Test "cat inexistant_file || echo ergerg < test_files/i_pipe_5"
Test "inexistant_command || < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 || echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4 || echo test"
Test "cat inexistant_file || echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command || >> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 666
Test "> o_pipe_1"
Test "> o_pipe_1 > o_pipe_2"
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 || echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 || echo test"
Test "cat inexistant_file || echo ergerg > test_files/o_pipe_5 || egre > test_files/o_pipe_51"
Test "inexistant_command || > test_files/o_pipe_6 inexistant_command || echo test"
Test "< i_pipe_1"
Test "< i_pipe_1 > o_pipe_2"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 || echo test1 < test_files/i_pipe_3 || < i_pipe_1"
Test "inexistant_command lol < test_files/i_pipe_4 || echo test"
Test "cat inexistant_file || echo ergerg < test_files/i_pipe_5 || || echo test"
Test "inexistant_command || < test_files/i_pipe_6 inexistant_command || cat inexistant_file"
Test ">> a_pipe_1"
Test ">> a_pipe_1 >> a_pipe_2"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 || echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >> test_files/a_pipe_4|| echo test"
Test "cat inexistant_file || echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command || >> test_files/a_pipe_6 inexistant_command"
ls test_files/*pipe* | xargs chmod 000
Test "> test_files/o_pipe_1 echo lol > test_files/o_pipe_1 > test_files/o_pipe_2 || echo test1 > test_files/o_pipe_3"
Test "inexistant_command lol > test_files/o_pipe_4 ||echo test"
Test "cat inexistant_file || echo ergerg > test_files/o_pipe_5"
Test "inexistant_command || > test_files/o_pipe_6 inexistant_command"
Test "< test_files/i_pipe_1 echo lol < test_files/i_pipe_1 < test_files/i_pipe_2 || echo test1 < test_files/i_pipe_3" #250
Test "inexistant_command lol < test_files/i_pipe_4 || echo test"
Test "cat inexistant_file || echo ergerg < test_files/i_pipe_5"
Test "inexistant_command || < test_files/i_pipe_6 inexistant_command"
Test ">> test_files/a_pipe_1 echo lol >> test_files/a_pipe_1 >> test_files/a_pipe_2 || echo test1 >> test_files/a_pipe_3"
Test "inexistant_command lol >>test_files/a_pipe_4 ||echo test"
Test "cat inexistant_file || echo ergerg >> test_files/a_pipe_5"
Test "inexistant_command||>> test_files/a_pipe_6 inexistant_command" #257
ls test_files/*pipe* | xargs chmod 666
Final_result
# rm -rf ../minishell_test_environment