forked from Nimut/testing-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
164 lines (145 loc) · 4.55 KB
/
.travis.yml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
language: php
addons:
apt:
packages:
- parallel
sonarcloud:
organization: "ichhabrecht-github"
branches:
- master
- pre-merge
cache:
directories:
- $HOME/.composer/cache
- $HOME/.sonar/cache
jdk:
- oraclejdk8
services:
- mysql
sudo: required
before_install:
- if php -i | grep -v TRAVIS_CMD | grep -q xdebug; then phpenv config-rm xdebug.ini; fi
install:
- >
if [ "$TYPO3" == "dev-master" ]; then
composer config minimum-stability dev;
composer config prefer-stable true;
fi
- composer require nimut/typo3-complete="$TYPO3"
- git checkout composer.json
- export TYPO3_PATH_ROOT=$PWD/.Build/Web
- export typo3DatabaseName=typo3
- export typo3DatabaseHost=localhost
- export typo3DatabaseUsername=root
- export typo3DatabasePassword=
script:
- >
echo;
echo "Running unit tests";
echo;
echo;
.Build/bin/phpunit -c res/Configuration/UnitTests.xml .Build/Web/typo3conf/ext/testbase/Tests/Unit/;
- >
echo;
echo "Running functional tests";
echo;
echo;
find '.Build/Web/typo3conf/ext/testbase/Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo "Running functional test suite {}"; .Build/bin/phpunit -c res/Configuration/FunctionalTests.xml --exclude-group destructive {}';
- >
echo;
echo "Running destructive functional tests";
echo;
echo;
rm -Rf .Build/Web/typo3temp/*;
.Build/bin/phpunit -c res/Configuration/FunctionalTests.xml --group destructive .Build/Web/typo3conf/ext/testbase/Tests/Functional/;
- >
echo;
echo "Running php lint";
echo;
echo;
find . -name \*.php ! -path "./.Build/*" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \;;
jobs:
fast_finish: true
allow_failures:
- env: TYPO3=dev-master
include:
- stage: test
php: 7.3
env: TYPO3=dev-master
- stage: test
php: 7.3
env: TYPO3=^9.5
- stage: test
php: 7.3
env: TYPO3=^8.7
- stage: test
php: 7.2
env: TYPO3=dev-master
- stage: test
php: 7.2
env: TYPO3=^9.5
- stage: test
php: 7.2
env: TYPO3=^8.7
- stage: test
php: 7.1
env: TYPO3=^8.7
- stage: test
php: 7.0
env: TYPO3=^8.7
- stage: sonarqube scanner
if: type = push AND branch IN (master, pre-merge)
php: 7.2
before_install: skip
install:
- mkdir -p .Log/coverage/ .Log/log/
- export TYPO3_PATH_ROOT=$PWD/.Build/Web
- export typo3DatabaseName=typo3
- export typo3DatabaseHost=localhost
- export typo3DatabaseUsername=root
- export typo3DatabasePassword=
before_script:
script:
- >
for TYPO3 in "^8.7" "^9.5"; do
echo;
echo "Running TYPO3 version $TYPO3";
echo;
echo;
git clean -Xdf;
composer require nimut/typo3-complete="$TYPO3";
git checkout composer.json;
VERSION=${TYPO3//[!0-9]/};
echo;
echo "Running unit tests";
echo;
echo;
.Build/bin/phpunit -c res/Configuration/UnitTests.xml --log-junit .Log/log/unit$VERSION.xml --coverage-php .Log/coverage/unit$VERSION.cov --whitelist ./ .Build/Web/typo3conf/ext/testbase/Tests/Unit/;
echo;
echo "Running functional tests";
echo;
echo;
.Build/bin/phpunit -c res/Configuration/FunctionalTests.xml --exclude-group destructive --log-junit .Log/log/functional$VERSION.xml --coverage-php .Log/coverage/functional$VERSION.cov --whitelist ./ .Build/Web/typo3conf/ext/testbase/Tests/Functional/;
echo;
echo "Running destructive functional tests";
echo;
echo;
rm -Rf .Build/Web/typo3temp/*;
.Build/bin/phpunit -c res/Configuration/FunctionalTests.xml --group destructive --log-junit .Log/log/functional-destructive$VERSION.xml --coverage-php .Log/coverage/functional-destructive$VERSION.cov --whitelist ./ .Build/Web/typo3conf/ext/testbase/Tests/Functional/;
done
- >
echo;
echo "Merging log and coverage files";
echo;
echo;
.Build/bin/phpunit-merger coverage .Log/coverage/ .Log/coverage.xml;
.Build/bin/phpunit-merger log .Log/log/ .Log/log.xml;
- git fetch --unshallow
- >
echo;
echo "Running SonarQube Scanner";
echo;
echo;
if [ -n "$SONAR_TOKEN" ]; then
sonar-scanner;
fi