summaryrefslogtreecommitdiffstats
path: root/run-tests.sh
blob: 166aacd3f3ddad504c04240e46c28ba2d04b446c (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
54
55
56
57
58
59
#!/bin/bash
#
# This runs the testsuite. Arguments are passed to prove.
#

export ENVIRONMENT="testsuite"
export COLLECT_COVERAGE=1

if [[ $COLLECT_COVERAGE = 1 ]]; then
	export XDEBUG_MODE=coverage
fi

startdir="$(dirname "$0")"
datadir="testsuite-tmp"

die() {
	echo "$@" >&2
	echo "Aborting..." >&2
	exit 1
}


cd "$startdir"

# some sanity checks
test -d system || die 'Required dir not found.'
test -d application || die 'Required dir not found.'
test -f run-tests.sh || die 'Required file not found.'
grep -qF 'getenv("ENVIRONMENT")' application/config/database.php || die "database config doesn't honor ENVIRONMENT."

# prepare
trap cleanup EXIT INT
cleanup() {
	pkill -P $$
	php index.php tools drop_all_tables
	rm -rf "$datadir"
}

rm -rf "$datadir"

mkdir -p test-coverage-data
mkdir -p "$datadir"

php=(php)
if ((COLLECT_COVERAGE)); then
	php=(phpdbg -qrr)
fi

#  run tests
"${php[@]}" index.php tools drop_all_tables || exit 1
"${php[@]}" index.php tools update_database || exit 1

prove --ext .php --state=failed,save --timer --comments --exec "${php[*]} index.php tools test" --recurse "${@:-application/test/tests/}" || exit 1

if (($COLLECT_COVERAGE)); then
	php index.php tools generate_coverage_report
	rm -rf test-coverage-data
fi