summaryrefslogtreecommitdiffstats
path: root/apts
blob: a9a31b2a9fcec16550fac8381a133dce215406e1 (plain)
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
#!/bin/sh

# Get file to output to 
program=$0

usage() {
	echo "Usage: $program outputfile <package>"
	exit 1
}

# parse opts
while getopts "h" opt; do
	case "$opt" in
	h) usage;;
	esac
done

OUTFILE=$1

# are there any file arguments
if [ $# -eq 0 ]; then
	echo "no outfile specified"
	usage
fi

#remove opts so that package is $@
shift $(( $OPTIND - 1 ))

# shift once more
shift

# if there aren't any args besides outfile test all packages
if [ $# -eq 0 ];
        then echo "All packages to be tested" && for package in `ls ./tests`; 
                do echo "Testing $1 apk" && /bin/sh -e ./tests/$1 >> "$OUTFILE" 2>&1 && echo "$1 passed tests" >> "$OUTFILE" && echo "$1 passed tests";
        done && exit 0;
fi

# If script still running, there's args, so test all specified packages
i=1
while [ $# -gt 0 ]; do
	echo "file number $i: $1"
	PACKAGE=$1
	# does testing file exist
	test -e ./tests/$PACKAGE
	if [ "$?" == "1" ];
		then echo "Testing file for $PACKAGE does not exist";
	# if testing file exists, then keep running
	else echo "Testing $PACKAGE apk" && /bin/sh -e ./tests/$PACKAGE >> "$OUTFILE" 2>&1 && echo "$PACKAGE passed tests" && exit 0;i
	fi
	i=$(( $i + 1 ))
	shift
done