forked from belaban/JGroups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
547 lines (470 loc) · 21.8 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
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
<?xml version="1.0"?>
<project name="JGroups" default="compile" basedir=".">
<description>
build.xml file for JGroups. Needs Ant (jakarta.apache.org) to run
</description>
<property name="version" value="3.0.0.Alpha1"/>
<property name="build.properties.file" value="build.properties"/>
<property file="${build.properties.file}"/>
<property name="root.dir" value="${basedir}"/>
<property name="src.dir" value="${root.dir}/src"/>
<property name="tests.dir" value="${root.dir}/tests"/>
<property name="other.dir" value="${tests.dir}/other"/>
<property name="junit.dir" value="${tests.dir}/junit"/>
<property name="junit-functional.dir" value="${tests.dir}/junit-functional"/>
<property name="time-sensitive.dir" value="${tests.dir}/time-sensitive"/>
<property name="stress.dir" value="${tests.dir}/stress"/>
<property name="perf.dir" value="${tests.dir}/perf"/>
<property name="compile.dir" value="${root.dir}/classes"/>
<property name="lib.dir" value="${root.dir}/lib"/>
<property name="license.dir" value="${lib.dir}/licenses"/>
<property name="dist.dir" value="${root.dir}/dist"/>
<property name="tmp.dir" value="${root.dir}/tmp"/>
<property name="doc.dir" value="${root.dir}/doc"/>
<property name="manual.dir" value="${doc.dir}/manual"/>
<property name="tutorial.dir" value="${doc.dir}/tutorial"/>
<property name="javadoc.dir" value="${dist.dir}/javadoc"/>
<property name="conf.dir" value="${root.dir}/conf"/>
<property name="testng.conf.dir" value="${root.dir}/conf/testng"/>
<property name="bin.dir" value="${root.dir}/bin"/>
<property name="keystore.dir" value="${root.dir}/keystore"/>
<property name="javadoc.packages" value="org.jgroups.*"/>
<property name="timestamp" value=".timestamp"/>
<property name="protocols.xml" value="${manual.dir}/en/modules/protocols.xml"/>
<!-- 5 minutes per test suite timeout -->
<property name="unittest.timeout.low" value="500000"/>
<!-- default properties used in all test targets -->
<property name="channel.conf" value="udp.xml"/>
<property name="threadcount" value="false"/>
<property name="test.verbose" value="0"/>
<path id="jg.classpath">
<pathelement location="${compile.dir}"/>
<pathelement location="${conf.dir}"/>
<pathelement location="${keystore.dir}"/>
<fileset dir="${lib.dir}">
<include name="*.jar"/>
</fileset>
</path>
<taskdef resource="testngtasks" classpathref="jg.classpath"/>
<!-- properties to determine IP version used -->
<condition property="java.net.preferIPv4Stack" value="true" else="false">
<isfalse value="${jgroups.useIPv6}"/>
</condition>
<condition property="java.net.preferIPv6Addresses" value="true" else="false">
<istrue value="${jgroups.useIPv6}"/>
</condition>
<!-- patternsets used to define test sets -->
<patternset id="flush.tests">
<include name="org/jgroups/tests/FlushTest*"/>
<include name="org/jgroups/tests/ConcurrentStateTransferTest*"/>
<include name="org/jgroups/tests/ConcurrentStartupTest*"/>
</patternset>
<patternset id="all.tests">
<include name="org/jgroups/tests/**Test**"/>
<include name="org/jgroups/blocks/**Test**"/>
</patternset>
<patternset id="junit.excludes">
<exclude name="**/DistributedQueueTest*"/>
<exclude name="**/ChannelTestBase*"/>
</patternset>
<target name="prepare">
<property environment="env"/>
<mkdir dir="${compile.dir}"/>
<copy file="${build.properties.file}.template" tofile="${build.properties.file}" overwrite="false"/>
</target>
<target name="compile"
depends="prepare"
description="Compiles all Java files">
<javac destdir="${compile.dir}"
source="1.6"
classpathref="jg.classpath"
includeantruntime="false"
debug="on"
deprecation="off"
optimize="off"
listfiles="false"
includes="org/jgroups/**">
<exclude name="**/obsolete/**"/>
<src path="${src.dir}"/>
<src path="${other.dir}"/>
<src path="${junit.dir}"/>
<src path="${junit-functional.dir}"/>
<src path="${stress.dir}"/>
<src path="${perf.dir}"/>
</javac>
</target>
<target name="compile-no-unittests"
depends="prepare"
description="Compiles all Java files">
<javac destdir="${compile.dir}"
source="1.6"
classpathref="jg.classpath"
includeantruntime="false"
debug="on"
deprecation="off"
optimize="off"
listfiles="false"
includes="org/jgroups/**"
excludes="org/jgroups/tests/junit/,org/jgroups/tests/junit-functional/,org/jgroups/tests/stress">
<exclude name="**/obsolete/**"/>
<src path="${src.dir}"/>
<src path="${other.dir}"/>
<src path="${perf.dir}"/>
</javac>
</target>
<target name="jar"
description="Compiles and creates JAR files in the ./dist directory"
depends="jgroups.jar,jgroups-sources.jar">
<copy file="${doc.dir}/README" tofile="${dist.dir}/README" overwrite="true"/>
</target>
<target name="jgroups.jar"
description="Creates the jgroups-${version}.jar (includes everything)" depends="compile-no-unittests,create-schema">
<mkdir dir="${dist.dir}"/>
<jar destfile="${dist.dir}/jgroups-${version}.jar"
basedir="${compile.dir}"
manifest="${conf.dir}/manifest.mf"
includes="org/jgroups/**,schema/**">
<fileset dir="${conf.dir}" includes="*.dtd, *.xml" excludes="*-service.xml"/>
<fileset dir="${root.dir}">
<include name="CREDITS"/>
<include name="INSTALL.html"/>
<include name="LICENSE"/>
<include name="EULA"/>
</fileset>
<fileset dir="${lib.dir}">
<include name="licenses/*"/>
</fileset>
</jar>
</target>
<target name="jgroups-sources.jar"
description="Creates the jgroups-sources.jar. Includes only core source files, no demos, no tests">
<mkdir dir="${dist.dir}"/>
<jar jarfile="${dist.dir}/jgroups-sources.jar"
basedir="${src.dir}"
manifest="${conf.dir}/manifest.mf"
includes="org/jgroups/**">
</jar>
</target>
<!-- generate java doc -->
<target name="javadoc"
depends="prepare,check-javadoc" unless="javadoc.exists"
description="Create Javadoc documentation in the ./dist/javadoc directory">
<mkdir dir="${javadoc.dir}"/>
<javadoc packagenames="${javadoc.packages}"
sourcepath="${src.dir}"
destdir="${javadoc.dir}"
classpathref="jg.classpath"
author="true"
version="true"
use="true"
bottom="Copyright © 1998-2009 Bela Ban / Red Hat. All Rights Reserved."
useexternalfile="yes"
doctitle="JGroups"
overview="${src.dir}/org/jgroups/overview.html">
<!-- The tag option for Javadoc is available in Java 1.4 or later. -->
<tag name="todo" description="To do:"/>
</javadoc>
</target>
<target name="check-javadoc" description="Checks whether the ./dist/javadoc dir exists">
<available file="${javadoc.dir}" type="dir" property="javadoc.exists"/>
</target>
<target name="all" depends="compile"/>
<target name="docs" description="Build all html and pdf docs" depends="manual,tutorial">
</target>
<target name="manual" description="Build all html and pdf docs"
depends="check-docbook-support,check-manual,compile" unless="manual.up-to-date">
<echo message="Building manual from docbook ..."/>
<prot-properties-to-doc input="${protocols.xml}"/>
<ant dir="${root.dir}/doc/manual" antfile="build.xml" target="all.doc"/>
<delete file="${protocols.xml}.tmp"/>
<touch file="${manual.dir}/build/timestamp"/>
</target>
<target name="html" description="Build html docs"
depends="check-docbook-support,check-manual,compile" unless="manual.up-to-date">
<echo message="Building HTML manual from docbook ..."/>
<prot-properties-to-doc input="${protocols.xml}"/>
<ant dir="${root.dir}/doc/manual" antfile="build.xml" target="html"/>
<delete file="${protocols.xml}.tmp"/>
<touch file="${manual.dir}/build/timestamp"/>
</target>
<target name="tutorial" description="Build all html and pdf docs"
depends="check-docbook-support,check-tutorial" unless="tutorial.up-to-date">
<echo message="Building tutorial from docbook ..."/>
<ant dir="${root.dir}/doc/tutorial" antfile="build.xml" target="all.doc"/>
<touch file="${tutorial.dir}/build/timestamp"/>
</target>
<target name="check-tutorial">
<uptodate property="tutorial.up-to-date" targetfile="${tutorial.dir}/build/timestamp">
<srcfiles dir="${tutorial.dir}/en" includes="**/*">
</srcfiles>
</uptodate>
<echo message="tutorial.up-to-data=${tutorial.up-to-date}"/>
</target>
<target name="check-manual">
<uptodate property="manual.up-to-date" targetfile="${manual.dir}/build/timestamp">
<srcfiles dir="${manual.dir}/en" includes="**/*">
</srcfiles>
</uptodate>
<echo message="manual.up-to-data=${manual.up-to-date}"/>
</target>
<target name="create-schema" description="creates XML schema for this version of JGroups">
<delete dir="${compile.dir}/schema" failonerror="false"/>
<mkdir dir="${compile.dir}/schema"/>
<java classname="org.jgroups.util.XMLSchemaGenerator" classpathref="jg.classpath">
<arg line="-o ${compile.dir}/schema"/>
</java>
</target>
<target name="check-docbook-support">
<available file="${root.dir}/../docbook-support" type="dir"
property="docbook.support.present"/>
<fail message="docbook-support directory does not exist, please check it out from jboss first (run target checkout-docbook-support)"
unless="docbook.support.present"/>
</target>
<target name="checkout-docbook-support">
<exec executable="svn">
<arg value="co"/>
<arg value="http://anonsvn.jboss.org/repos/jbossas/projects/docs/docbook-support/"/>
<arg value="${root.dir}/../docbook-support"/>
</exec>
</target>
<target name="clean"
description="Removes all class files and the ./dist directory">
<delete dir="${compile.dir}" failonerror="false"/>
<delete dir="${dist.dir}" failonerror="false"/>
<delete dir="${tmp.dir}" failonerror="false"/>
<delete dir="${root.dir}/test-output" failonerror="false"/>
<delete dir="${keystore.dir}" failonerror="false"/>
<delete file="${lib.dir}/jboss-test.jar" failonerror="false"/>
<delete file="${root.dir}/velocity.log*" failonerror="false"/>
<delete>
<fileset dir="${root.dir}" defaultexcludes="no">
<include name="**/*~"/>
</fileset>
</delete>
<!-- clean the docs directory if docs have been processed -->
<delete dir="${manual.dir}/build"/>
<delete dir="${tutorial.dir}/build"/>
<delete dir="${root.dir}/schema" failonerror="false"/>
</target>
<target name="version"
depends="compile"
description="Prints some info about the Ant version and the OS/JDK used">
<echo message="${ant.version}"/>
<echo message="JDK=${java.vm.version} on ${os.name} ${os.version}"/>
<java classname="org.jgroups.Version" classpathref="jg.classpath"/>
</target>
<target name="makeKeystore" unless="isKeyStoreGenerated"
depends="keyStoreGenerated, compile"
description="Generates an appropriate temporary keystore file for the unit tests and the JVM in use">
<mkdir dir="${keystore.dir}"/>
<java classname="org.jgroups.demos.KeyStoreGenerator" fork="false">
<arg value="--storeName"/>
<arg value="keystore/defaultStore.keystore"/>
<classpath refid="jg.classpath"/>
</java>
<java classname="org.jgroups.demos.KeyStoreGenerator" fork="false">
<arg value="--storeName"/>
<arg value="keystore/defaultStore2.keystore"/>
<classpath refid="jg.classpath"/>
</java>
</target>
<target name="keyStoreGenerated">
<condition property="isKeyStoreGenerated">
<and>
<available filepath="${keystore.dir}" file="defaultStore.keystore"/>
<available filepath="${keystore.dir}" file="defaultStore2.keystore"/>
</and>
</condition>
</target>
<target name="postcompile" depends="makeKeystore">
</target>
<!--
=============================== TestNG ======================================== -->
<target name="all-tests-cc">
<antcall target="all-tests"/>
</target>
<target name="all-new-tests">
<antcall target="all-tests"/>
</target>
<target name="all-tests">
<sequential>
<antcall target="functional"/>
<antcall target="time-sensitive"/>
<antcall target="stack-independent"/>
<antcall target="udp"/>
<antcall target="tcp"/>
<antcall target="tcp-stress"/>
<antcall target="udp-flush"/>
<antcall target="tcp-flush"/>
</sequential>
</target>
<target name="functional" depends="postcompile">
<mkdir dir="${tmp.dir}/test-results/xml/functional"/>
<testng classpathref="jg.classpath"
usedefaultlisteners="false"
outputdir="${tmp.dir}/test-results/xml"
listeners="org.jgroups.util.JUnitXMLReporter"
threadcount="10"
parallel="methods"
>
<jvmarg value="-Djava.net.preferIPv4Stack=${java.net.preferIPv4Stack}"/>
<jvmarg value="-Djava.net.preferIPv6Addresses=${java.net.preferIPv6Addresses}"/>
<xmlfileset dir="${testng.conf.dir}" includes="functional.xml"/>
</testng>
</target>
<target name="time-sensitive" depends="postcompile">
<mkdir dir="${tmp.dir}/test-results/xml/time-sensitive"/>
<testng classpathref="jg.classpath"
usedefaultlisteners="false"
outputdir="${tmp.dir}/test-results/xml"
listeners="org.jgroups.util.JUnitXMLReporter"
threadcount="1"
parallel="methods"
>
<jvmarg value="-Djava.net.preferIPv4Stack=${java.net.preferIPv4Stack}"/>
<jvmarg value="-Djava.net.preferIPv6Addresses=${java.net.preferIPv6Addresses}"/>
<xmlfileset dir="${testng.conf.dir}" includes="time-sensitive.xml"/>
</testng>
</target>
<target name="stack-independent" depends="postcompile">
<mkdir dir="${tmp.dir}/test-results/xml/stack-independent"/>
<runtest testname.ext="ind"
threadcount="1"
parallel="tests"
testng.xmlfile="stack-independent.xml"
/>
</target>
<target name="udp" depends="postcompile">
<mkdir dir="${tmp.dir}/test-results/xml/udp"/>
<runtest testname.ext="udp"
threadcount="5"
parallel="tests"
initial.mcast.addr="${jgroups.udp.mcast_addr}"
initial.mcast.port="25000"
initial.tcp.port="25000"
testng.xmlfile="testng-udp.xml"
/>
</target>
<target name="udp-flush" depends="postcompile">
<mkdir dir="${tmp.dir}/test-results/xml/udp-flush"/>
<runtest testname.ext="udp-flush"
threadcount="5"
parallel="tests"
initial.mcast.addr="${jgroups.udp.mcast_addr}"
initial.mcast.port="26000"
initial.tcp.port="26000"
testng.xmlfile="testng-udp-flush.xml"
/>
</target>
<target name="tcp" depends="postcompile">
<!-- Needed to force reading of properties. Otherwise tcp tests will fail -->
<property name="build.properties.file" value="build.properties"/>
<property file="${build.properties.file}"/>
<mkdir dir="${tmp.dir}/test-results/xml/tcp"/>
<runtest testname.ext="tcp"
threadcount="5"
parallel="tests"
initial.mcast.addr="${jgroups.udp.mcast_addr}"
initial.mcast.port="27000"
initial.tcp.port="27000"
testng.xmlfile="testng-tcp.xml"
tcp.recv.buf.size="50000"
tcp.send.buf.size="10000"
/>
</target>
<target name="tcp-stress" depends="postcompile">
<!-- Needed to force reading of properties. Otherwise tcp tests will fail -->
<property name="build.properties.file" value="build.properties"/>
<property file="${build.properties.file}"/>
<mkdir dir="${tmp.dir}/test-results/xml/tcp"/>
<runtest testname.ext="tcp"
threadcount="1"
parallel="tests"
initial.mcast.addr="${jgroups.udp.mcast_addr}"
initial.mcast.port="28000"
initial.tcp.port="28000"
testng.xmlfile="testng-tcp-stress.xml"
tcp.recv.buf.size="50000"
tcp.send.buf.size="10000"
/>
</target>
<target name="tcp-flush" depends="postcompile">
<!-- Needed to force reading of properties. Otherwise tcp-flush tests will fail -->
<property name="build.properties.file" value="build.properties"/>
<property file="${build.properties.file}"/>
<mkdir dir="${tmp.dir}/test-results/xml/tcp-flush"/>
<runtest testname.ext="tcp-flush"
threadcount="10"
parallel="tests"
initial.mcast.addr="${jgroups.udp.mcast_addr}"
initial.mcast.port="29000"
initial.tcp.port="29000"
testng.xmlfile="testng-tcp-flush.xml"
tcp.recv.buf.size="50000"
tcp.send.buf.size="10000"
/>
</target>
<target name="report">
<antcall target="reports"/>
</target>
<target name="reports">
<mkdir dir="${tmp.dir}/test-results/html"/>
<junitreport todir="${tmp.dir}/test-results/html">
<fileset dir="${tmp.dir}/test-results/xml">
<include name="**/*.xml"/>
</fileset>
<report format="frames" todir="${tmp.dir}/test-results/html"/>
</junitreport>
<echo message="******************************************************************"/>
<echo message="The test report is ${tmp.dir}/test-results/html/index.html"/>
<echo message="******************************************************************"/>
</target>
<macrodef name="runtest" description="Runs a configuration-dependent test suite">
<attribute name="outputdir" default="${tmp.dir}/test-results/xml"/>
<attribute name="parallel" default="methods"/>
<attribute name="testname.ext" default="udp"/>
<attribute name="threadcount" default="1"/>
<attribute name="testng.xmlfile" default="stack-dependent.xml"/>
<attribute name="initial.mcast.addr" default="${jgroups.udp.mcast_addr}"/>
<attribute name="initial.mcast.port" default="23000"/>
<attribute name="initial.tcp.port" default="23000"/>
<attribute name="tcp.recv.buf.size" default="200000"/>
<attribute name="tcp.send.buf.size" default="64000"/>
<sequential>
<testng classpathref="jg.classpath"
usedefaultlisteners="false"
outputdir="@{outputdir}"
listeners="org.jgroups.util.JUnitXMLReporter"
timeout="${unittest.timeout.low}"
verbose="${test.verbose}"
>
<xmlfileset dir="${testng.conf.dir}" includes="@{testng.xmlfile}"/>
<sysproperty key="test.suffix" value="@{testname.ext}"/>
<sysproperty key="INITIAL_MCAST_ADDR" value="@{initial.mcast.addr}"/>
<sysproperty key="INITIAL_MCAST_PORT" value="@{initial.mcast.port}"/>
<sysproperty key="INITIAL_TCP_PORT" value="@{initial.tcp.port}"/>
<sysproperty key="tcp.recv_buf_size" value="@{tcp.recv.buf.size}"/>
<sysproperty key="tcp.send_buf_size" value="@{tcp.send.buf.size}"/>
<jvmarg value="-Djgroups.bind_addr=${jgroups.bind_addr}"/>
<jvmarg value="-Djgroups.tcpping.initial_hosts=${jgroups.tcpping.initial_hosts}"/>
<jvmarg value="-Djgroups.tunnel.gossip_router_hosts=${jgroups.tunnel.gossip_router_hosts}"/>
<jvmarg value="-Dtests.tmp.dir=${tmp.dir}"/>
<jvmarg value="-Dlog4j.configuration=file:${conf.dir}/log4j.properties"/>
<jvmarg value="-Djava.net.preferIPv4Stack=${java.net.preferIPv4Stack}"/>
<jvmarg value="-Djava.net.preferIPv6Addresses=${java.net.preferIPv6Addresses}"/>
<jvmarg value="-Xmx300M"/>
</testng>
</sequential>
</macrodef>
<macrodef name="prot-properties-to-doc">
<attribute name="input" default="${protocols.xml}"/>
<sequential>
<echo message="Replacing variables in @{input}"/>
<java classname="org.jgroups.util.PropertiesToXML" classpathref="jg.classpath">
<arg value="@{input}"/>
</java>
</sequential>
</macrodef>
<!--
=============================== TestNG ======================================== -->
</project>