-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.sh
executable file
·65 lines (55 loc) · 1.8 KB
/
tests.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
#!/usr/bin/env bash
####################################################################################################################
# Author: Chris Aslanoglou
# Description:
# Validate same output by running both miniJava test files and generated Piglet files.
# More on assert_equal_output script.
####################################################################################################################
RED='\033[0;31m'
GREEN='\033[0;32m'
BROWN_ORANGE='\033[0;33m'
NC='\033[0m' # No Color
allTestsDir="$(pwd)/src/test/resources/"
courseTests="${allTestsDir}minijava-test-files/"
assertEqualOutputScript=./assert_equal_output.sh
# Ensure test directories exist
function ensureDirExists {
if [ $# -ne 1 ]; then
echo -e "${RED}Missing directory argument.${NC}"
exit -2
fi
dir=$1
if [ ! -d ${dir} ]; then
echo -e "${RED}${dir} doesn't exist. Either create it or update the variables in this script.${NC}"
exit -1
fi
}
ensureDirExists ${allTestsDir}
ensureDirExists ${courseTests}
if [ ! -f ${assertEqualOutputScript} ]; then
echo -e "${RED}Expected: $assertEqualOutputScript.${NC}"
exit -1;
fi
# Ensure jar exists
targetDir="$(pwd)/target"
jar="${targetDir}/minijava-piglet-generator-1.0.jar"
if [ ! -f ${jar} ]; then
echo "${jar} is missing. Run \'mvn package\'."
exit -1;
fi
# Testing
shopt -s nullglob # Causes the array to be empty if none mach.
courseTestFiles=(${allTestsDir}minijava-*/*.java)
pgi="pgi.jar"
totalNumberOfTests=${#courseTestFiles[@]}
i=1
for file in "${courseTestFiles[@]}"
do
# Generate Piglet code
java -jar ${jar} ${file} >/dev/null 2>&1
${assertEqualOutputScript} ${file}
printf "${GREEN}Completed${NC} $i/${totalNumberOfTests}: ${file}\n"
((i++))
done
printf "${GREEN}\rTests completed.${NC}\n"
exit 0;