Skip to content

Instantly share code, notes, and snippets.

@mosbth
Created October 26, 2018 06:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mosbth/5ee2d12dca46b95e4c057a87b8ad0b38 to your computer and use it in GitHub Desktop.
Save mosbth/5ee2d12dca46b95e4c057a87b8ad0b38 to your computer and use it in GitHub Desktop.
# Correct.bash script used for autocorrecting programming exams.
# Verbose check
VERBOSE=true
# Text file use by students
COPY_FILE="manifesto.txt"
# If available use python3 else python
python3 --version >/dev/null 2>&1 && py=python3 || py=python
# get path to .dbwebb folder
DBWEBB_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
PROJ_PATH="$DBWEBB_PATH/.."
LOG_PATH="$DBWEBB_PATH/log"
# Copy value-of-time file to .dbwebb for correction
cp "$PROJ_PATH/$COPY_FILE" "$DBWEBB_PATH"
test_status="$( cd "$DBWEBB_PATH" && ${py} test_dbwebb.py &> "$LOG_PATH" )"
# Picks subparts of log file
ALL_LINES="$(cat "$LOG_PATH" | head -6)"
FIRST_LINE="$(cat "$LOG_PATH" | head -1)"
SECOND_LINE="$(cat "$LOG_PATH" | head -2 | tail -1)"
REST="$(cat "$LOG_PATH" | head -6 | tail -4)"
# Resets points
POINTS=0
# Output log file
output_log () {
echo
echo "====================================="
echo "TEST SCRIPT OUTPUT"
echo "====================================="
cat "$LOG_PATH"
}
# Clean, removes files
clean_up () {
rm "$DBWEBB_PATH/$COPY_FILE"
rm "$LOG_PATH"
}
# Checks if all files and modules are there
if [[ $FIRST_LINE = *"... ok"* ]]; then
echo "Alla moduler och filer finns."
fi
# Checks for completion of first assignment
if [[ $SECOND_LINE = *"... ok"* ]]; then
echo "Du har löst uppgift 1 och är godkänd."
POINTS=$((POINTS+1))
else
echo "Du har inte löst uppgift 1 och är därför underkänd."
output_log
exit 1
fi
# Outputs whether an assignment is solved or not.
for i in `seq 3 6`; do
ASSIGNMENT=$(($i-1))
if [[ $(cat "$LOG_PATH" | head -$i | tail -1) = *"... ok"* ]]; then
echo "Du har löst uppgift $ASSIGNMENT."
POINTS=$((POINTS+1))
else
echo "Du har inte löst uppgift $ASSIGNMENT."
fi
done
# Sets grade message based on POINTS
case $POINTS in
1)
MESSAGE="Du har 20 poäng."
;;
2)
MESSAGE="Du har 30 poäng."
;;
3)
MESSAGE="Du har 40 poäng."
;;
4)
MESSAGE="Du har 50 poäng."
;;
5)
MESSAGE="Du har 60 poäng."
;;
*)
MESSAGE="Du är underkänd."
;;
esac
# Prints message
echo "$MESSAGE"
# Outputs log file from Python test script
output_log
# Clean up
clean_up
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment