-
Notifications
You must be signed in to change notification settings - Fork 0
/
full-test.sh
executable file
·52 lines (46 loc) · 1.71 KB
/
full-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
#!/bin/bash
# This script can be copied into your base directory for use with
# automated testing using assignment-autotest. It automates the
# steps described in https://github.com/cu-ecen-5013/assignment-autotest/blob/master/README.md#running-tests
set -e
cd `dirname $0`
test_dir=`pwd`
echo "starting test with SKIP_BUILD=\"${SKIP_BUILD}\" and DO_VALIDATE=\"${DO_VALIDATE}\""
# This part of the script always runs as the current user, even when
# executed inside a docker container.
# See the logic in parse_docker_options for implementation
logfile=test.sh.log
# See https://stackoverflow.com/a/3403786
# Place stdout and stderr in a log file
exec > >(tee -i -a "$logfile") 2> >(tee -i -a "$logfile" >&2)
echo "Running test with user $(whoami)"
set +e
./unit-test.sh
unit_test_rc=$?
if [ $unit_test_rc -ne 0 ]; then
echo "Unit test failed"
fi
# If there's a configuration for the assignment number, use this to look for
# additional tests
if [ -f conf/assignment.txt ]; then
# This is just one example of how you could find an associated assignment
assignment=`cat conf/assignment.txt`
if [ -f ./assignment-autotest/test/${assignment}/assignment-test.sh ]; then
echo "Executing assignment test script"
./assignment-autotest/test/${assignment}/assignment-test.sh $test_dir
rc=$?
if [ $rc -eq 0 ]; then
echo "Test of assignment ${assignment} complete with success"
else
echo "Test of assignment ${assignment} failed with rc=${rc}"
exit $rc
fi
else
echo "No assignment-test script found for ${assignment}"
exit 1
fi
else
echo "Missing conf/assignment.txt, no assignment to run"
exit 1
fi
exit ${unit_test_rc}