Newer
Older
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
# Sourced from https://github.com/travis-ci/travis-build/blob/master/lib/travis/build/script/templates/header.sh
# + Tweaked to display output and not show the status line
travis_wait() {
local timeout=40
local cmd="$@"
local log_file=travis_wait_$$.log
$cmd &
local cmd_pid=$!
travis_jigger $! $timeout $cmd &
local jigger_pid=$!
local result
{
wait $cmd_pid 2>/dev/null
result=$?
ps -p$jigger_pid &>/dev/null && kill $jigger_pid
} || return 1
if [ $result -eq 0 ]; then
echo -e "\n${GREEN}The command \"$TRAVIS_CMD\" exited with $result.${RESET}"
else
echo -e "\n${RED}The command \"$TRAVIS_CMD\" exited with $result.${RESET}"
fi
echo -e "\n${GREEN}Log:${RESET}\n"
cat $log_file
return $result
}
travis_jigger() {
# helper method for travis_wait()
local cmd_pid=$1
shift
local timeout=40
shift
local count=0
# clear the line
echo -e "\n"
while [ $count -lt $timeout ]; do
count=$(($count + 1))
#echo -ne "Still running ($count of $timeout): $@\r"
sleep 60
done
echo -e "\n${RED}Timeout (${timeout} minutes) reached. Terminating \"$@\"${RESET}\n"
kill -9 $cmd_pid
}
##--------------------------------------
## Starting Piwik tests
##--------------------------------------
diosmosis
a validé
if [ "$TEST_SUITE" != "UITests" ] && [ "$TEST_SUITE" != "AngularJSTests" ]
then
if [ `phpunit --group __nogroup__ | grep "No tests executed" | wc -l` -ne 1 ]
then
echo "=====> There are some tests functions which do not have a @group set. "
echo " Please add the @group phpdoc comment to the following tests: <====="
phpunit --group __nogroup__ --testdox | grep "[x]"
exit 1
fi
fi
diosmosis
a validé
if [ -n "$TEST_SUITE" ]
then
echo "Executing tests in test suite $TEST_SUITE..."
if [ -n "$PLUGIN_NAME" ]
then
echo " [ plugin name = $PLUGIN_NAME ]"
fi
if [ "$TEST_SUITE" = "AngularJSTests" ]
then
elif [ "$TEST_SUITE" = "JavascriptTests" ]
diosmosis
a validé
touch ../javascript/enable_sqlite
phantomjs ../javascript/testrunner.js
elif [ "$TEST_SUITE" = "UITests" ]
then
if [ -n "$PLUGIN_NAME" ]
then
artifacts_folder="protected/ui-tests.master.$PLUGIN_NAME"
artifacts_folder="ui-tests.master"
diosmosis
a validé
echo ""
echo "View UI failures (if any) here http://builds-artifacts.piwik.org/$artifacts_folder/$TRAVIS_JOB_NUMBER/screenshot-diffs/diffviewer.html"
diosmosis
a validé
echo "If the new screenshots are valid, then you can copy them over to tests/PHPUnit/UI/expected-ui-screenshots/."
echo ""
diosmosis
a validé
if [ -n "$PLUGIN_NAME" ]
then
phantomjs ../lib/screenshot-testing/run-tests.js --assume-artifacts --persist-fixture-data --screenshot-repo=$TRAVIS_REPO_SLUG --plugin=$PLUGIN_NAME
phantomjs ../lib/screenshot-testing/run-tests.js --store-in-ui-tests-repo --persist-fixture-data --assume-artifacts
diosmosis
a validé
if [ -n "$PLUGIN_NAME" ]
then
mattab
a validé
travis_wait phpunit --configuration phpunit.xml --colors --testsuite $TEST_SUITE --group $PLUGIN_NAME
diosmosis
a validé
else
mattab
a validé
travis_wait phpunit --configuration phpunit.xml --testsuite $TEST_SUITE --colors
diosmosis
a validé
fi
fi
diosmosis
a validé
else
mattab
a validé
travis_wait phpunit --configuration phpunit.xml --coverage-text --colors
fi