This repository has been archived by the owner on Jun 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
217 lines (191 loc) · 7.89 KB
/
build.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
<?xml version="1.0" encoding="UTF-8"?>
<project name="opencart-barzahlen">
<property file="build.properties" />
<property file="deploy.properties" />
<target name="build" depends="prepare,bundle"/>
<target name="deploy" depends="prepare-deploy,deploy-shopsystem,deploy-config,deploy-shopplugin,deploy-shopsystem-database,deploy-plugin-database"/>
<target name="test" depends="prepare,lint,phpunit"/>
<target name="analysis" depends="prepare,test,phpcs,phploc,pdepend,phpmd,phpcpd,phpdox,phpcb"/>
<target name="clean">
<delete dir="${basedir}/build" includeemptydirs="true"/>
</target>
<target name="prepare" depends="clean">
<mkdir dir="${basedir}/build/api"/>
<mkdir dir="${basedir}/build/bundle"/>
<mkdir dir="${basedir}/build/code-browser"/>
<mkdir dir="${basedir}/build/coverage"/>
<mkdir dir="${basedir}/build/integration"/>
<mkdir dir="${basedir}/build/logs"/>
<mkdir dir="${basedir}/build/pdepend"/>
<mkdir dir="${basedir}/build/phpdox"/>
</target>
<target name="clean-deploy">
<delete dir="${basedir}/build/deploy" includeemptydirs="true"/>
</target>
<target name="prepare-deploy" depends="clean-deploy">
<mkdir dir="${basedir}/build/deploy/opencart"/>
<mkdir dir="${basedir}/build/deploy/plugin"/>
</target>
<target name="deploy-shopsystem">
<unzip src="${basedir}/test/resources/opencart/v1.5.5.1.zip" dest="${basedir}/build/deploy/opencart"/>
<copy todir="${deploy.target}">
<fileset dir="${basedir}/build/deploy/opencart/opencart-1.5.5.1/upload"/>
</copy>
<chmod perm="ugo+rwx" type="both">
<fileset dir="${deploy.target}/system/cache"/>
<fileset dir="${deploy.target}/system/logs/"/>
<fileset dir="${deploy.target}/image"/>
<fileset dir="${deploy.target}/download"/>
</chmod>
</target>
<target name="deploy-config">
<copy todir="${deploy.target}">
<fileset dir="${basedir}/test/resources/config"/>
</copy>
<chmod perm="ugo+rwx" type="both">
<fileset dir="${deploy.target}">
<include name="config.php"/>
<include name="admin/config.php"/>
</fileset>
</chmod>
<chmod perm="ug+rwx" type="both">
<fileset dir="${deploy.target}">
<include name="**/*"/>
</fileset>
</chmod>
</target>
<target name="deploy-shopplugin">
<unzip src="${basedir}/build/barzahlen_opencart_plugin_${project.version.number_file}.zip" dest="${basedir}/build/deploy/plugin"/>
<copy todir="${deploy.target}">
<fileset dir="${basedir}/build/deploy/plugin/src"/>
</copy>
</target>
<target name="deploy-shopsystem-database">
<exec executable="mysqladmin">
<arg value="--host=${db.host}"/>
<arg value="--user=${db.user}"/>
<arg value="--password=${db.password}"/>
<arg value="--force"/>
<arg value="drop"/>
<arg value="${db.name}"/>
</exec>
<exec executable="mysqladmin">
<arg value="--host=${db.host}"/>
<arg value="--user=${db.user}"/>
<arg value="--password=${db.password}"/>
<arg value="--force"/>
<arg value="create"/>
<arg value="${db.name}"/>
</exec>
<exec executable="mysql" input="${basedir}/test/resources/sql/opencart/v1.5.5.1.sql">
<arg value="--host=${db.host}"/>
<arg value="--user=${db.user}"/>
<arg value="--password=${db.password}"/>
<arg value="${db.name}"/>
</exec>
</target>
<target name="deploy-plugin-database">
<exec executable="mysql" input="${basedir}/test/resources/sql/plugin/v1.0.0.sql">
<arg value="--host=${db.host}"/>
<arg value="--user=${db.user}"/>
<arg value="--password=${db.password}"/>
<arg value="${db.name}"/>
</exec>
</target>
<target name="lint">
<apply executable="php" failonerror="true">
<arg value="-l"/>
<fileset dir="${basedir}/src/">
<include name="**/*.php"/>
<modified/>
</fileset>
<fileset dir="${basedir}/test/">
<include name="**/*.php"/>
<modified/>
</fileset>
</apply>
</target>
<target name="phpunit">
<exec executable="phpunit" failonerror="true"/>
</target>
<target name="bundle" depends="prepare">
<copy todir="${basedir}/build/bundle">
<fileset dir="${basedir}">
<include name="changelog.txt"/>
<include name="license.txt"/>
<include name="readme.txt"/>
</fileset>
</copy>
<copy todir="${basedir}/build/bundle/src">
<fileset dir="${basedir}/src"/>
</copy>
<zip basedir="${basedir}/build/bundle" destfile="${basedir}/build/barzahlen_opencart_plugin_${project.version.number_file}.zip"/>
</target>
<target name="integration">
<exec dir="${basedir}/test/selenium" executable="mvn" failonerror="true">
<arg line="clean integration-test" />
</exec>
<copy todir="${basedir}/build/integration/surefire-reports">
<fileset dir="${basedir}/test/selenium/target/surefire-reports"/>
</copy>
</target>
<target name="phploc">
<exec executable="phploc">
<arg value="--log-csv"/>
<arg value="${basedir}/build/logs/phploc.csv"/>
<arg path="${basedir}/src/admin"/>
<arg path="${basedir}/src/catalog"/>
</exec>
</target>
<target name="phpcs"
description="Find coding standard violations using PHP_CodeSniffer creating a log file for the continuous integration server">
<exec executable="phpcs" output="/dev/null">
<arg value="--report=checkstyle"/>
<arg value="--report-file=${basedir}/build/logs/checkstyle.xml"/>
<arg value="--standard=PSR2"/>
<arg path="${basedir}/src/admin"/>
<arg path="${basedir}/src/catalog"/>
</exec>
</target>
<target name="pdepend">
<exec executable="pdepend">
<arg value="--jdepend-chart=${basedir}/build/pdepend/dependencies.svg"/>
<arg value="--jdepend-xml=${basedir}/build/logs/jdepend.xml"/>
<arg value="--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg"/>
<arg path="${basedir}/src/admin,${basedir}/src/catalog"/>
</exec>
</target>
<target name="phpmd"
description="Perform project mess detection using PHPMD creating a log file for the continuous integration server">
<exec executable="phpmd">
<arg path="${basedir}/src/admin,${basedir}/src/catalog"/>
<arg value="xml"/>
<arg value="${basedir}/phpmd.xml"/>
<arg value="--reportfile"/>
<arg value="${basedir}/build/logs/pmd.xml"/>
</exec>
</target>
<target name="phpcpd">
<exec executable="phpcpd">
<arg value="--log-pmd"/>
<arg value="${basedir}/build/logs/pmd-cpd.xml"/>
<arg path="${basedir}/src/admin"/>
<arg path="${basedir}/src/catalog"/>
</exec>
</target>
<target name="phpdox">
<exec executable="phpdox"/>
</target>
<target name="phpcb">
<exec executable="phpcb">
<arg value="--log"/>
<arg path="${basedir}/build/logs"/>
<arg value="--source"/>
<arg path="${basedir}/src/admin"/>
<arg value="--source"/>
<arg path="${basedir}/src/catalog"/>
<arg value="--output"/>
<arg path="${basedir}/build/code-browser"/>
</exec>
</target>
</project>