forked from infection/infection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
268 lines (208 loc) · 7.92 KB
/
Makefile
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
SHELL=bash
.DEFAULT_GOAL := help
# See https://tech.davis-hansson.com/p/make/
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
.PHONY: help
help:
@printf "\033[33mUsage:\033[0m\n make TARGET\n\n\033[32m#\n# Commands\n#---------------------------------------------------------------------------\033[0m\n\n"
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' | awk 'BEGIN {FS = ":"}; {printf "\033[33m%s:\033[0m%s\n", $$1, $$2}'
#
# Variables
#---------------------------------------------------------------------------
BOX=./.tools/box
BOX_URL="https://github.com/humbug/box/releases/download/3.16.0/box.phar"
PHP_CS_FIXER=./.tools/php-cs-fixer
PHP_CS_FIXER_URL="https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.16.0/php-cs-fixer.phar"
PHP_CS_FIXER_CACHE=.php_cs.cache
PHPSTAN=./vendor/bin/phpstan
RECTOR=./vendor/bin/rector
PSALM=./.tools/psalm
PSALM_URL="https://github.com/vimeo/psalm/releases/download/5.11.0/psalm.phar"
PHPUNIT=vendor/phpunit/phpunit/phpunit
PARATEST=vendor/bin/paratest
INFECTION=./build/infection.phar
DOCKER_RUN=docker-compose run
DOCKER_RUN_81=$(DOCKER_RUN) php81 $(FLOCK) Makefile
DOCKER_FILE_IMAGE=devTools/Dockerfile.json
FLOCK=./devTools/flock
COMMIT_HASH=$(shell git rev-parse --short HEAD)
BENCHMARK_SOURCES=tests/benchmark/MutationGenerator/sources \
tests/benchmark/Tracing/coverage \
tests/benchmark/Tracing/sources
E2E_PHPUNIT_GROUP=integration,e2e
PHPUNIT_GROUP=default
#
# Commands (phony targets)
#---------------------------------------------------------------------------
.PHONY: compile
compile: ## Bundles Infection into a PHAR
compile:
rm $(INFECTION) || true
make $(INFECTION)
.PHONY: compile-docker
compile-docker: ## Bundles Infection into a PHAR using docker
compile-docker: $(DOCKER_FILE_IMAGE)
$(DOCKER_RUN_81) make compile
.PHONY: check_trailing_whitespaces
check_trailing_whitespaces:
./devTools/check_trailing_whitespaces.sh
.PHONY: cs
cs: ## Runs PHP-CS-Fixer
cs: $(PHP_CS_FIXER)
$(PHP_CS_FIXER) fix -v --cache-file=$(PHP_CS_FIXER_CACHE) --diff
LC_ALL=C sort -u .gitignore -o .gitignore
$(MAKE) check_trailing_whitespaces
.PHONY: cs-check
cs-check: ## Runs PHP-CS-Fixer in dry-run mode
cs-check: $(PHP_CS_FIXER)
$(PHP_CS_FIXER) fix -v --cache-file=$(PHP_CS_FIXER_CACHE) --diff --dry-run
LC_ALL=C sort -c -u .gitignore
$(MAKE) check_trailing_whitespaces
.PHONY: phpstan
phpstan: vendor $(PHPSTAN)
$(PHPSTAN) analyse --configuration devTools/phpstan-src.neon --no-interaction --no-progress
$(PHPSTAN) analyse --configuration devTools/phpstan-tests.neon --no-interaction --no-progress
.PHONY: phpstan-baseline
phpstan-baseline: vendor $(PHPSTAN)
$(PHPSTAN) analyse --configuration devTools/phpstan-src.neon --no-interaction --no-progress --generate-baseline devTools/phpstan-src-baseline.neon || true
$(PHPSTAN) analyse --configuration devTools/phpstan-tests.neon --no-interaction --no-progress --generate-baseline devTools/phpstan-tests-baseline.neon || true
.PHONY: psalm-baseline
psalm-baseline: vendor
$(PSALM) --threads=max --set-baseline=psalm-baseline.xml
.PHONY: psalm
psalm: vendor $(PSALM)
$(PSALM) --threads=max
.PHONY: rector
rector: vendor $(RECTOR)
$(RECTOR) process
.PHONY: rector-check
rector-check: vendor $(RECTOR)
$(RECTOR) process --dry-run
.PHONY: validate
validate:
composer validate --strict
.PHONY: profile
profile: ## Runs Blackfire
profile: vendor $(BENCHMARK_SOURCES)
composer dump --classmap-authoritative
blackfire run \
--samples=5 \
--title="MutationGenerator" \
--metadata="commit=$(COMMIT_HASH)" \
php tests/benchmark/MutationGenerator/profile.php
blackfire run \
--samples=5 \
--title="Tracing" \
--metadata="commit=$(COMMIT_HASH)" \
php tests/benchmark/Tracing/profile.php
composer dump
.PHONY: autoreview
autoreview: ## Runs various checks (static analysis & AutoReview test suite)
autoreview: phpstan psalm validate test-autoreview rector-check
.PHONY: test
test: ## Runs all the tests
test: autoreview test-unit test-e2e test-infection
.PHONY: test-docker
test-docker: ## Runs all the tests on the different Docker platforms
test-docker: autoreview test-unit-docker test-e2e-docker test-infection-docker
.PHONY: test-autoreview
test-autoreview: $(PHPUNIT) vendor
$(PHPUNIT) --configuration=phpunit_autoreview.xml
.PHONY: test-unit
test-unit: ## Runs the unit tests
test-unit: $(PHPUNIT) vendor
$(PHPUNIT) --group $(PHPUNIT_GROUP) --exclude-group e2e
.PHONY: test-unit-parallel
test-unit-parallel: ## Runs the unit tests in parallel
test-unit-parallel: $(PARATEST) vendor
$(PARATEST) --runner=WrapperRunner
.PHONY: test-unit-docker
test-unit-docker: ## Runs the unit tests on the different Docker platforms
test-unit-docker: test-unit-81-docker
test-unit-81-docker: $(DOCKER_FILE_IMAGE) $(PHPUNIT)
$(DOCKER_RUN_81) $(PHPUNIT) --group $(PHPUNIT_GROUP)
.PHONY: test-e2e
test-e2e: ## Runs the end-to-end tests
test-e2e: test-e2e-phpunit
./tests/e2e_tests $(INFECTION)
.PHONY: test-e2e-phpunit
test-e2e-phpunit: ## Runs PHPUnit-enabled subset of end-to-end tests
test-e2e-phpunit: $(PHPUNIT) $(BENCHMARK_SOURCES) vendor
$(PHPUNIT) --group $(E2E_PHPUNIT_GROUP)
.PHONY: test-e2e-docker
test-e2e-docker: ## Runs the end-to-end tests on the different Docker platforms
test-e2e-docker: test-e2e-xdebug-docker
.PHONY: test-e2e-xdebug-docker
test-e2e-xdebug-docker: test-e2e-xdebug-81-docker
.PHONY: test-e2e-xdebug-81-docker
test-e2e-xdebug-81-docker: $(DOCKER_FILE_IMAGE) $(INFECTION)
$(DOCKER_RUN_81) $(PHPUNIT) --group $(E2E_PHPUNIT_GROUP)
$(DOCKER_RUN_81) ./tests/e2e_tests $(INFECTION)
.PHONY: test-infection
test-infection: ## Runs Infection against itself
test-infection: $(INFECTION) vendor
$(INFECTION) --threads=max
.PHONY: test-infection-docker
test-infection-docker: ## Runs Infection against itself on the different Docker platforms
test-infection-docker: test-infection-xdebug-docker
.PHONY: test-infection-xdebug-docker
test-infection-xdebug-docker: test-infection-xdebug-81-docker
.PHONY: test-infection-xdebug-81-docker
test-infection-xdebug-81-docker: $(DOCKER_FILE_IMAGE)
$(DOCKER_RUN_81) ./bin/infection --threads=max
#
# Rules from files (non-phony targets)
#---------------------------------------------------------------------------
$(BOX): Makefile
wget -q $(BOX_URL) --output-document=$(BOX)
chmod a+x $(BOX)
touch -c $@
$(PHP_CS_FIXER): Makefile
wget -q $(PHP_CS_FIXER_URL) --output-document=$(PHP_CS_FIXER)
chmod a+x $(PHP_CS_FIXER)
touch -c $@
$(PHPSTAN): vendor
touch -c $@
$(PSALM): Makefile
wget -q $(PSALM_URL) --output-document=$(PSALM)
chmod a+x $(PSALM)
touch -c $@
$(INFECTION): vendor $(shell find bin/ src/ -type f) $(BOX) box.json.dist .git/HEAD
composer require infection/codeception-adapter infection/phpspec-adapter
$(BOX) --version
$(BOX) validate
$(BOX) compile
composer remove infection/codeception-adapter infection/phpspec-adapter
touch -c $@
vendor: composer.lock
composer install --prefer-dist
touch -c $@
composer.lock: composer.json
composer install --prefer-dist
touch -c $@
$(PHPUNIT): vendor phpunit.xml.dist
touch -c $@
phpunit.xml.dist:
# Not updating phpunit.xml with:
# phpunit --migrate-configuration || true
touch -c $@
$(DOCKER_FILE_IMAGE): devTools/Dockerfile
docker-compose build
touch -c $@
tests/benchmark/MutationGenerator/sources: tests/benchmark/MutationGenerator/sources.tar.gz
cd tests/benchmark/MutationGenerator; tar -xzf sources.tar.gz
touch -c $@
tests/benchmark/Tracing/coverage: tests/benchmark/Tracing/coverage.tar.gz
@echo "Untarring the coverage, this might take a while"
cd tests/benchmark/Tracing; tar -xzf coverage.tar.gz
touch -c $@
tests/benchmark/Tracing/sources: tests/benchmark/Tracing/sources.tar.gz
@echo "Untarring the sources, this might take a while"
cd tests/benchmark/Tracing; tar -xzf sources.tar.gz
touch -c $@
clean:
rm -fr tests/benchmark/MutationGenerator/sources
rm -fr tests/benchmark/Tracing/coverage
rm -fr tests/benchmark/Tracing/sources
git clean -f -X tests/e2e/