Browse Source

test(head-and-tail): check if the submitted file is correct and check if echo is used

DEV-4017-prototypes-exercise-1-animals
Zouhair AMAZZAL 2 years ago committed by Zouhair AMAZZAL
parent
commit
6467fd10fa
  1. 28
      sh/tests/head-and-tail_test.sh

28
sh/tests/head-and-tail_test.sh

@ -5,12 +5,24 @@ set -euo pipefail
IFS=' IFS='
' '
echo insecure >> ~/.curlrc FILENAME="student/head-and-tail.sh"
caddy start &>/dev/null
submitted=$(bash student/head-and-tail.sh) # True if FILE exists and is a regular file
expected=$(bash solutions/head-and-tail.sh) if [ -f ${FILENAME} ]; then
# FILE exists and it's not empty
caddy stop &>/dev/null if [ -s ${FILENAME} ]; then
if [[ $(cat $FILENAME | grep echo | wc -l) -ne 0 ]]; then
diff <(echo "$submitted") <(echo "$expected") echo "echo is not allowed in this exercise!";
exit 1
fi
submitted=$(bash $FILENAME)
expected=$(bash solutions/head-and-tail.sh)
diff <(echo "$submitted") <(echo "$expected")
else
echo "The file exist but is empty"
exit 1
fi
else
echo "File does not exist"
exit 1
fi
Loading…
Cancel
Save