-
Notifications
You must be signed in to change notification settings - Fork 28
/
build.ant.xml
363 lines (363 loc) · 18.3 KB
/
build.ant.xml
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<?xml version="1.0" encoding="UTF-8"?>
<project name="php-automate-build-ant" default="full-build" basedir=".">
<!-- By default the tools are managed by Composer in ${basedir}/vendor/bin -->
<property name="url.composer.download" value="https://getcomposer.org/download/2.2.6/composer.phar"/>
<property name="url.validator.download" value="https://github.com/itplr-kosit/validator/releases/download/v1.5.0/validator-1.5.0-distribution.zip"/>
<property name="url.validator.scenarios.download" value="https://github.com/itplr-kosit/validator-configuration-xrechnung/releases/download/release-2023-07-31/validator-configuration-xrechnung_3.0.0_2023-07-31.zip"/>
<property name="url.phpdocumentor.download" value="https://phpdoc.org/phpDocumentor.phar"/>
<property name="validatorzipdir" value="${basedir}/build/validator"/>
<property name="validatorconfigzipdir" value="${validatorzipdir}"/>
<property name="validatorzipname" value="validator.zip"/>
<property name="validatorconfigzipname" value="validator-configuration.zip"/>
<property name="validatorzip" value="${validatorzipdir}/${validatorzipname}"/>
<property name="validatorconfigzip" value="${validatorconfigzipdir}/${validatorconfigzipname}"/>
<property name="validatorjarfilename" value="validationtool-1.5.0-standalone.jar"/>
<property name="composer" value="${basedir}/composer.phar"/>
<property name="phpdocumentor" value="${basedir}/phpDocumentor.phar"/>
<property name="pdepend" value="${basedir}/vendor/bin/pdepend"/>
<property name="phpcpd" value="${basedir}/vendor/bin/phpcpd"/>
<property name="phpcs" value="${basedir}/vendor/bin/phpcs"/>
<property name="phploc" value="${basedir}/vendor/bin/phploc"/>
<property name="phpmd" value="${basedir}/vendor/bin/phpmd"/>
<property name="phpunit" value="${basedir}/vendor/bin/phpunit"/>
<property name="phpstan" value="${basedir}/vendor/bin/phpstan"/>
<property name="git" value="/usr/bin/git"/>
<property name="result.schematron.en16931" value="0"/>
<property name="result.schematron.xrechnung" value="0"/>
<target name="clean" unless="clean.done" description="Cleanup build artifacts.">
<delete dir="${basedir}/build/builddoc"/>
<delete dir="${basedir}/build/doc"/>
<delete dir="${basedir}/build/coverage"/>
<delete dir="${basedir}/build/logs"/>
<delete dir="${basedir}/build/pdepend"/>
<delete dir="${basedir}/build/dist"/>
<delete dir="${basedir}/build/phpdoc"/>
<property name="clean.done" value="true"/>
</target>
<target name="composer" description="Install composer packages including require-dev.">
<get src="${url.composer.download}" dest="${composer}"/>
<exec executable="chmod" failonerror="true">
<arg value="+x"/>
<arg path="${composer}"/>
</exec>
<exec executable="php" failonerror="true">
<arg path="${composer}"/>
<arg value="install"/>
<arg value="--prefer-dist"/>
<arg value="--no-progress"/>
</exec>
<exec executable="php" failonerror="true">
<arg path="${composer}"/>
<arg value="update"/>
</exec>
</target>
<target name="downloadphpdocumentor" description="Install phpdocumentor.">
<get src="${url.phpdocumentor.download}" dest="${phpdocumentor}"/>
<exec executable="chmod" failonerror="true">
<arg value="+x"/>
<arg path="${phpdocumentor}"/>
</exec>
</target>
<target name="full-build" depends="prepare,composer,static-analysis,phpunit,schematron,-check-failure,projectdoc,deploy" description="Perform static analysis, run tests, and generate project documentation.">
<echo message="Built"/>
</target>
<target name="lint" unless="lint.done" description="Perform syntax check of PHP sourcecode files.">
<apply executable="php" failonerror="true" taskname="lint">
<arg value="-l"/>
<fileset dir="${basedir}/src">
<include name="**/*.php"/>
</fileset>
<fileset dir="${basedir}/tests">
<include name="**/*.php"/>
</fileset>
</apply>
<property name="lint.done" value="true"/>
</target>
<target name="pdepend" unless="pdepend.done" depends="prepare" description="Calculate software metrics using PHP_Depend and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${pdepend}" taskname="pdepend">
<arg value="--jdepend-xml=${basedir}/build/logs/jdepend.xml"/>
<arg value="--jdepend-chart=${basedir}/build/pdepend/dependencies.svg"/>
<arg value="--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg"/>
<arg path="${basedir}/src"/>
</exec>
<property name="pdepend.done" value="true"/>
</target>
<target name="phpcpd" unless="phpcpd.done" description="Find duplicate code using PHPCPD and print human readable output. Intended for usage on the command line before committing.">
<exec executable="${phpcpd}" taskname="phpcpd">
<arg value="--exclude"/>
<arg path="${basedir}/src/entities"/>
<arg path="${basedir}/src"/>
</exec>
<property name="phpcpd.done" value="true"/>
</target>
<target name="phpcpd-ci" unless="phpcpd.done" depends="prepare" description="Find duplicate code using PHPCPD and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phpcpd}" taskname="phpcpd">
<arg value="--log-pmd"/>
<arg path="${basedir}/build/logs/pmd-cpd.xml"/>
<arg value="--exclude"/>
<arg path="${basedir}/src/entities/"/>
<arg path="${basedir}/src"/>
</exec>
<property name="phpcpd.done" value="true"/>
</target>
<target name="phpcs" unless="phpcs.done" description="Find coding standard violations using PHP_CodeSniffer and print human readable output. Intended for usage on the command line before committing.">
<exec executable="${phpcs}" taskname="phpcs">
<arg value="--standard=${basedir}/build/phpcsrules.xml"/>
<arg value="--extensions=php"/>
<arg value="--ignore=autoload.php"/>
<arg path="${basedir}/src"/>
<arg path="${basedir}/tests"/>
</exec>
<property name="phpcs.done" value="true"/>
</target>
<target name="phpcs-ci" unless="phpcs.done" depends="prepare" description="Find coding standard violations using PHP_CodeSniffer and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phpcs}" output="/dev/null" taskname="phpcs">
<arg value="--report=checkstyle"/>
<arg value="--report-file=${basedir}/build/logs/checkstyle.xml"/>
<arg value="--standard=${basedir}/build/phpcsrules.xml"/>
<arg value="--extensions=php"/>
<arg value="--ignore=autoload.php"/>
<arg path="${basedir}/src"/>
<arg path="${basedir}/tests"/>
</exec>
<property name="phpcs.done" value="true"/>
</target>
<target name="phpstan" unless="phpstan.done" description="Find coding standard violations using PHPStan and print human readable output. Intended for usage on the command line before committing.">
<exec executable="${phpstan}" taskname="phpstan">
<arg value="analyze"/>
<arg value="-c"/>
<arg path="${basedir}/build/phpstan.neon"/>
<arg value="--autoload-file=${basedir}/vendor/autoload.php"/>
<arg value="--no-interaction"/>
<arg value="--no-progress"/>
<arg value="--error-format=table"/>
</exec>
<property name="phpstan.done" value="true"/>
</target>
<target name="phpstan-ci" unless="phpstan.done" depends="prepare" description="Find coding standard violations using PHPStan and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phpstan}" taskname="phpstan" outputproperty="phpstan.output">
<arg value="analyze"/>
<arg value="-c"/>
<arg path="${basedir}/build/phpstan.neon"/>
<arg value="--autoload-file=${basedir}/vendor/autoload.php"/>
<arg value="--no-interaction"/>
<arg value="--no-progress"/>
<arg value="--error-format=checkstyle"/>
</exec>
<echo message="${phpstan.output}" file="${basedir}/build/logs/checkstyle_phpstan.xml"/>
<property name="phpstan.done" value="true"/>
</target>
<target name="phploc" unless="phploc.done" description="Measure project size using PHPLOC and print human readable output. Intended for usage on the command line.">
<exec executable="${phploc}" taskname="phploc">
<arg value="--count-tests"/>
<arg path="${basedir}/src"/>
<arg path="${basedir}/tests"/>
</exec>
<property name="phploc.done" value="true"/>
</target>
<target name="phploc-ci" unless="phploc.done" depends="prepare" description="Measure project size using PHPLOC and log result in CSV and XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phploc}" taskname="phploc">
<arg value="--count-tests"/>
<arg value="--log-csv"/>
<arg path="${basedir}/build/logs/phploc.csv"/>
<arg value="--log-xml"/>
<arg path="${basedir}/build/logs/phploc.xml"/>
<arg path="${basedir}/src"/>
<arg path="${basedir}/tests"/>
</exec>
<property name="phploc.done" value="true"/>
</target>
<target name="phpmd" unless="phpmd.done" description="Perform project mess detection using PHPMD and print human readable output. Intended for usage on the command line before committing.">
<exec executable="${phpmd}" taskname="phpmd">
<arg path="${basedir}/src"/>
<arg value="text"/>
<arg path="${basedir}/build/phpmd.xml"/>
<arg value="--exclude"/>
<arg path="${basedir}/src/entities/"/>
</exec>
<property name="phpmd.done" value="true"/>
</target>
<target name="phpmd-ci" unless="phpmd.done" depends="prepare" description="Perform project mess detection using PHPMD and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phpmd}" taskname="phpmd">
<arg path="${basedir}/src"/>
<arg value="xml"/>
<arg path="${basedir}/build/phpmd.xml"/>
<arg value="--reportfile"/>
<arg path="${basedir}/build/logs/pmd.xml"/>
<arg value="--exclude"/>
<arg path="${basedir}/src/entities/"/>
</exec>
<exec executable="${phpmd}" taskname="phpmd">
<arg path="${basedir}/src"/>
<arg value="html"/>
<arg path="${basedir}/build/phpmd.xml"/>
<arg value="--reportfile"/>
<arg path="${basedir}/build/logs/pmd.html"/>
<arg value="--exclude"/>
<arg path="${basedir}/src/entities/"/>
</exec>
<property name="phpmd.done" value="true"/>
</target>
<target name="phpunit" unless="phpunit.done" depends="prepare" description="Run unit tests with PHPUnit.">
<exec executable="${phpunit}" resultproperty="result.phpunit" taskname="phpunit">
<arg value="--configuration"/>
<arg path="${basedir}/build/phpunit.xml"/>
</exec>
<property name="phpunit.done" value="true"/>
</target>
<target name="phpunit-no-coverage" unless="phpunit.done" depends="prepare" description="Run unit tests with PHPUnit without generating code coverage reports.">
<exec executable="${phpunit}" failonerror="true" taskname="phpunit">
<arg value="--configuration"/>
<arg path="${basedir}/build/phpunit.xml"/>
<arg path="tests"/>
<arg value="--no-coverage"/>
</exec>
<property name="phpunit.done" value="true"/>
</target>
<target name="prepare" unless="prepare.done" depends="clean" description="Prepare for build.">
<mkdir dir="${basedir}/build/builddoc"/>
<mkdir dir="${basedir}/build/doc"/>
<mkdir dir="${basedir}/build/coverage"/>
<mkdir dir="${basedir}/build/logs"/>
<mkdir dir="${basedir}/build/pdepend"/>
<mkdir dir="${basedir}/build/dist"/>
<mkdir dir="${basedir}/build/phpdoc"/>
<property name="prepare.done" value="true"/>
</target>
<target name="quick-build" depends="prepare,composer,lint,phpunit-no-coverage" description="Perform lint check and run tests without generating code coverage reports.">
<echo message="Built"/>
</target>
<target name="static-analysis" depends="lint,phploc-ci,pdepend,phpmd-ci,phpcs-ci,phpstan-ci,phpcpd-ci" description="Perform static analysis.">
<echo message="Done"/>
</target>
<target name="-check-failure">
<fail message="PHPUnit did not finish successfully">
<condition>
<not>
<equals arg1="${result.phpunit}" arg2="0"/>
</not>
</condition>
</fail>
<fail message="Schematron for XRechnung 2.0 did not finish successfully">
<condition>
<not>
<equals arg1="${result.schematron.xrechnung}" arg2="0"/>
</not>
</condition>
</fail>
<fail message="Schematron for EN16931 did not finish successfully">
<condition>
<not>
<equals arg1="${result.schematron.en16931}" arg2="0"/>
</not>
</condition>
</fail>
<echo message="Checked failure"/>
</target>
<target name="deploy" description="Deplay build">
<zip destfile="${basedir}/build/dist/doc.zip">
<fileset dir="${basedir}/build/doc">
<include name="**/*.*"/>
</fileset>
</zip>
<zip destfile="${basedir}/build/dist/src.zip">
<fileset dir="${basedir}/src">
<include name="**/*.*"/>
</fileset>
</zip>
<zip destfile="${basedir}/build/dist/builddoc.zip">
<fileset dir="${basedir}/build">
<include name="builddoc/**/*.*"/>
<include name="coverage/**/*.*"/>
<include name="coverage-html/**/*.*"/>
<include name="logs/**/*.*"/>
<include name="pdepend/**/*.*"/>
<exclude name="phpdoc/**/*.*"/>
</fileset>
</zip>
</target>
<target name="schematron" description="Validate agains schematron">
<!-- Clean -->
<delete dir="${validatorzipdir}"/>
<delete dir="${validatorconfigzipdir}"/>
<delete file="${basedir}/examples/factur-x.xml"/>
<mkdir dir="${validatorzipdir}"/>
<mkdir dir="${validatorconfigzipdir}"/>
<!-- Get Validator -->
<echo message="Downloading validator..."/>
<exec executable="wget" failonerror="true">
<arg value="${url.validator.download}"/>
<arg value="-O"/>
<arg path="${validatorzip}"/>
</exec>
<echo message="Downloaded validator."/>
<!-- Get Scenarios -->
<echo message="Downloading scenarios..."/>
<exec executable="wget" failonerror="true">
<arg value="${url.validator.scenarios.download}"/>
<arg value="-O"/>
<arg path="${validatorconfigzip}"/>
</exec>
<echo message="Downloaded validator."/>
<!-- Unpacking -->
<echo message="Unpacking..."/>
<exec executable="unzip" failonerror="true">
<arg path="${validatorzip}"/>
<arg value="-d"/>
<arg path="${validatorzipdir}"/>
</exec>
<exec executable="unzip" failonerror="true">
<arg path="${validatorconfigzip}"/>
<arg value="-d"/>
<arg path="${validatorconfigzipdir}"/>
</exec>
<echo message="Unpacked."/>
<!-- Create XRechnung 3.0 -->
<echo message="Creating XRechnung 3.0..."/>
<exec executable="php" dir="${basedir}/examples" failonerror="true">
<arg value="-f"/>
<arg path="./examples/XRechnung3SimpleQuick.php"/>
</exec>
<echo message="Created XRechnung 3.0."/>
<!-- Validate XRechnugn 3.0 -->
<exec executable="java" resultproperty="result.schematron.xrechnung" failonerror="false">
<arg value="-jar"/>
<arg path="${validatorzipdir}/${validatorjarfilename}"/>
<arg value="-r"/>
<arg path="${validatorconfigzipdir}/"/>
<arg value="-s"/>
<arg path="${validatorconfigzipdir}/scenarios.xml"/>
<arg path="${basedir}/examples/factur-x.xml"/>
</exec>
<!-- Create EN16931 -->
<echo message="Creating EN16931..."/>
<exec executable="php" dir="${basedir}/examples" failonerror="true">
<arg value="-f"/>
<arg path="./examples/En16931SimpleQuick.php"/>
</exec>
<echo message="Created EN16931."/>
<!-- Validate EN16931 -->
<exec executable="java" resultproperty="result.schematron.en16931" failonerror="false">
<arg value="-jar"/>
<arg path="${validatorzipdir}/${validatorjarfilename}"/>
<arg value="-r"/>
<arg path="${validatorconfigzipdir}/"/>
<arg value="-s"/>
<arg path="${validatorconfigzipdir}/scenarios.xml"/>
<arg path="${basedir}/examples/factur-x.xml"/>
</exec>
<!-- Clean -->
<delete dir="${validatorzipdir}"/>
<delete dir="${validatorconfigzipdir}"/>
<delete file="${basedir}/examples/factur-x.xml"/>
</target>
<target name="projectdoc" description="Generate documentation">
<antcall target="clean"/>
<antcall target="downloadphpdocumentor"/>
<exec executable="php" dir="${basedir}/build">
<arg path="${phpdocumentor}"/>
</exec>
<delete file="${phpdocumentor}"/>
<antcall target="clean"/>
</target>
</project>