-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.xml
508 lines (449 loc) · 16.4 KB
/
run.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
<?xml version="1.0" ?>
<project>
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<pathelement location="apache-ant-1.6.0/lib/ant-contrib-1.0b3.jar"/>
</classpath>
</taskdef>
<target name="init">
<loadproperties srcfile="dtf.properties"/>
<path id="dtf.classpath">
<fileset dir="lib">
<include name="*.jar"/>
</fileset>
</path>
<condition property="dtf.connect.addr" value="localhost">
<not>
<isset property="dtf.connect.addr"/>
</not>
</condition>
<condition property="dtf.connect.port" value="20000">
<not>
<isset property="dtf.connect.port"/>
</not>
</condition>
<condition property="dtf.dtfa.ids" value="1,2,3">
<not>
<isset property="dtf.dtfa.ids"/>
</not>
</condition>
<property name="dtf.properties.filename" value="dtf.properties"/>
<property name="dtf.connect.addr" value="${dtf.connect.addr}"/>
<property name="dtf.connect.port" value="${dtf.connect.port}"/>
<property name="dtf.home" value="${dtf.home}"/>
<propertyset id="dtf.default.propertyset">
<propertyref name="dtf.properties.filename"/>
<propertyref name="dtf.connect.addr"/>
<propertyref name="dtf.connect.port"/>
<propertyref name="dtf.home"/>
</propertyset>
<condition property="dtf.cwd" value=".">
<not>
<isset property="dtf.cwd"/>
</not>
</condition>
<condition property="dtf.home" value=".">
<not>
<isset property="dtf.home"/>
</not>
</condition>
<tstamp>
<format property="stamp" pattern="dd-MM-yyyy.HH.mm.ss"/>
</tstamp>
<property name="logdir" value="${dtf.cwd}/logs/${stamp}"/>
<echo>Creating log dir ${logdir}</echo>
<mkdir dir="${logdir}"/>
</target>
<target name="run_dtfa_silent"
depends="init">
<condition property="dtfa.output" value="dtfa">
<not>
<isset property="dtfa.output"/>
</not>
</condition>
<echo>Starting DTFA</echo>
<echo>logging to ${logdir}/${dtfa.output}.*.log</echo>
<java classname="com.yahoo.dtf.DTFNode"
fork="true"
failonerror="true"
output="${logdir}/${dtfa.output}.out.log"
error="${logdir}/${dtfa.output}.err.log">
<classpath refid="dtf.classpath"/>
<syspropertyset refid="dtf.default.propertyset"/>
<sysproperty key="dtf.node.type" value="dtfa"/>
<jvmarg line="${dtf.jvm.arg} -enableassertions -Djava.security.policy=${dtf.home}/policy.txt"/>
<syspropertyset>
<propertyref builtin="commandline"/>
</syspropertyset>
</java>
</target>
<target name="run_dtfa"
depends="init"
description="startup the DTFA component"
>
<condition property="dtfa.output" value="dtfa">
<not>
<isset property="dtfa.output"/>
</not>
</condition>
<echo>Starting DTFA</echo>
<echo>logging to ${logdir}/${dtfa.output}.*.log</echo>
<java classname="com.yahoo.dtf.DTFNode"
fork="true"
dir="${dtf.cwd}"
failonerror="true">
<classpath refid="dtf.classpath"/>
<syspropertyset refid="dtf.default.propertyset"/>
<sysproperty key="dtf.node.type" value="dtfa"/>
<jvmarg line="${dtf.jvm.arg} -enableassertions -Djava.security.policy=${dtf.home}/policy.txt"/>
<syspropertyset>
<propertyref builtin="commandline"/>
</syspropertyset>
</java>
</target>
<target name="run_dtfx"
depends="init"
description="startup the DTFX component">
<java classname="com.yahoo.dtf.DTFNode"
fork="true"
dir="${dtf.cwd}"
failonerror="true">
<classpath refid="dtf.classpath"/>
<sysproperty key="dtf.node.type" value="dtfx"/>
<syspropertyset refid="dtf.default.propertyset"/>
<sysproperty key="net.sourceforge.cobertura.datafile"
file="cobertura-dtfx.ser" />
<jvmarg line="${dtf.jvm.arg} -enableassertions -Djava.security.policy=${dtf.home}/policy.txt"/>
<syspropertyset>
<propertyref builtin="commandline"/>
</syspropertyset>
</java>
</target>
<target name="run_dtfc"
depends="init"
description="startup the DTFC component"
>
<condition property="dtf.listen.port" value="20000">
<not>
<isset property="dtf.listen.port"/>
</not>
</condition>
<java classname="com.yahoo.dtf.DTFNode"
fork="true"
dir="${dtf.cwd}"
failonerror="true">
<classpath refid="dtf.classpath"/>
<syspropertyset refid="dtf.default.propertyset"/>
<sysproperty key="dtf.node.name" value="dtfc"/>
<sysproperty key="dtf.node.type" value="dtfc"/>
<sysproperty key="dtf.listen.port" value="${dtf.listen.port}" />
<sysproperty key="net.sourceforge.cobertura.datafile"
file="cobertura-dtfc.ser" />
<jvmarg line="${dtf.jvm.arg} -enableassertions -Djava.security.policy=${dtf.home}/policy.txt"/>
<syspropertyset>
<propertyref builtin="commandline"/>
</syspropertyset>
</java>
</target>
<target name="run_components" depends="init">
<parallel>
<sequential>
<echo>Starting up dtfc</echo>
<echo>logging to ${logdir}/dtfc.*.log</echo>
<condition property="dtf.listen.port" value="20000">
<not>
<isset property="dtf.listen.port"/>
</not>
</condition>
<java classname="com.yahoo.dtf.DTFNode"
fork="true"
failonerror="true"
dir="${dtf.cwd}"
output="${logdir}/dtfc.out.log"
error="${logdir}/dtfc.err.log">
<classpath refid="dtf.classpath"/>
<syspropertyset refid="dtf.default.propertyset"/>
<sysproperty key="dtf.node.name" value="dtfc"/>
<sysproperty key="dtf.node.type" value="dtfc"/>
<sysproperty key="dtf.listen.port" value="${dtf.listen.port}" />
<sysproperty key="dtf.heartbeat.timeout" value="10000" />
<sysproperty key="net.sourceforge.cobertura.datafile"
file="cobertura-dtfc.ser" />
<jvmarg line="${dtf.jvm.arg} -enableassertions -Djava.security.policy=${dtf.home}/policy.txt"/>
</java>
</sequential>
<sequential>
<!-- 3 seconds seems enough time to startup the DTFC -->
<sleep seconds="3"/>
<parallel>
<for list="${dtf.dtfa.ids}"
param="id"
parallel="true">
<sequential>
<echo>Starting DTFA@{id}...</echo>
<echo>logging to ${logdir}/dtfa-@{id}.*.log</echo>
<echo file="defaults.@{id}.properties">node.id=@{id}
</echo>
<java classname="com.yahoo.dtf.DTFNode"
fork="true"
failonerror="true"
dir="${dtf.cwd}"
output="${logdir}/dtfa-@{id}.out.log"
error="${logdir}/dtfa-@{id}.err.log">
<classpath refid="dtf.classpath"/>
<syspropertyset refid="dtf.default.propertyset" />
<sysproperty key="dtf.node.type" value="dtfa" />
<sysproperty key="dtf.heartbeat.timeout" value="10000" />
<sysproperty key="dtf.defaults" value="defaults.@{id}.properties"/>
<sysproperty key="net.sourceforge.cobertura.datafile"
file="cobertura-dtfa.@{id}.ser" />
<jvmarg line="${dtf.jvm.arg} -enableassertions -Djava.security.policy=${dtf.home}/policy.txt"/>
</java>
</sequential>
</for>
</parallel>
</sequential>
</parallel>
</target>
<target name="stop_dtfc" depends="init">
<java classname="com.yahoo.dtf.DTFNode"
fork="true"
failonerror="true"
dir="${dtf.cwd}"
output="${logdir}/shutdown_dtfc.out.log"
error="${logdir}/shutdown_dtfc.err.log">
<classpath refid="dtf.classpath"/>
<syspropertyset refid="dtf.default.propertyset"/>
<sysproperty key="dtf.node.type" value="dtfx"/>
<sysproperty key="dtf.xml.filename" value="tests/ut/stopdtfc.xml"/>
<jvmarg line="${dtf.jvm.arg} -enableassertions -Djava.security.policy=${dtf.home}/policy.txt"/>
</java>
</target>
<target name="run_ut"
depends="init"
description="run DTF unit tests."
>
<antcall target="run_test">
<param name="dtf.xml.filename" value="tests/ut/ut.xml"/>
</antcall>
</target>
<target name="run_dvt"
depends="init"
description="run DTF deployment verification tests (dvt)."
>
<property name="host" value="localhost"/>
<property name="user" value="${user.name}"/>
<property name="deploy.wait.interval" value="1000"/>
<property name="deploy.config" value="tests/setup/ut_config.xml"/>
<antcall target="deploy-start"/>
<antcall target="deploy-wait"/>
<antcall target="deploy-status"/>
<antcall target="deploy-stop"/>
<antcall target="deploy-savelogs"/>
</target>
<target name="run_pvt"
depends="init"
description="run DTF performance verification tests (pvt)."
>
<antcall target="run_test">
<param name="dtf.xml.filename" value="tests/perf/perf.xml"/>
</antcall>
</target>
<target name="run_test"
depends="init"
>
<parallel>
<antcall target="run_components"/>
<trycatch>
<try>
<sequential>
<!-- XXX: temporary hack -->
<sleep seconds="5"/>
<ant antfile="build.xml"
target="run_dtfx"
output="${logdir}/dtfx.log">
</ant>
</sequential>
</try>
<finally>
<echo>Shutting down background run_components task.</echo>
<antcall target="stop_dtfc"/>
</finally>
</trycatch>
</parallel>
</target>
<target name="applyxsl" depends="init">
<!-- check saxon is correctly setup -->
<available file="${saxon.home}"
type="dir"
property="saxon.ready"/>
<!--
currently this only works if you use the ant.sh which points the
classpath to the ${saxon.home} directory (bug in ant)
-->
<path id="saxon.classpath">
<fileset dir="${saxon.home}">
<include name="*.jar"/>
</fileset>
</path>
<if>
<isset property="saxon.ready"/>
<then>
<xslt basedir="${dtf.xsl.in.dir}"
destdir="${dtf.xsl.out.dir}"
includes="**/*.xml"
style="${dtf.xsl.filename}"
extension=".xml"
classpathref="saxon.classpath"
>
<factory name="net.sf.saxon.TransformerFactoryImpl"/>
</xslt>
</then>
<else>
<fail message="saxon home not set correctly, see build.properties file"/>
</else>
</if>
</target>
<target name="results" depends="init">
<ant target="tohtml" antfile="build.xml">
<property name="dtf.xsl.filename" value="xsl/report.xsl"/>
<property name="dtf.xsl.in.dir" value="tests"/>
<property name="dtf.xsl.out.dir" value="tests"/>
<property name="dtf.xsl.out.filename" value="results.html"/>
<property name="dtf.include.pattern" value="**/*results*.xml"/>
<property name="dtf.exclude.pattern" value=""/>
</ant>
</target>
<target name="inventory" depends="init">
<ant target="tohtml" antfile="build.xml">
<property name="dtf.xsl.filename" value="xsl/inventory.xsl"/>
<property name="dtf.xsl.in.dir" value="tests"/>
<property name="dtf.xsl.out.dir" value="tests"/>
<property name="dtf.xsl.out.filename" value="inventory.html"/>
<property name="dtf.include.pattern" value="**/*.xml"/>
<!-- exclude results output -->
<property name="dtf.exclude.pattern" value="**/suite-*"/>
</ant>
</target>
<!-- deployment -->
<target name="deploy-init">
<condition property="deploy.config" value="config.xml">
<not><isset property="deploy.config"/></not>
</condition>
<condition property="deploy.defaults" value="config.props">
<not><isset property="deploy.defaults"/></not>
</condition>
<condition property="deploy.user" value="N/A">
<not><isset property="deploy.user"/></not>
</condition>
</target>
<target name="setup-ssh"
depends="init,deploy-init"
description="sets up all machines identified in the ${deploy.config} file so that the deploy-xxx tags can SSH to those machines without any issues"
>
<java classname="com.yahoo.dtf.deploy.DeployDTF"
failonerror="true">
<classpath refid="dtf.classpath" />
<arg value="setup-ssh" />
<sysproperty key="dtf.home" value="."/>
<syspropertyset>
<propertyref builtin="all"/>
</syspropertyset>
</java>
</target>
<target name="deploy-start"
depends="init,deploy-init"
description="start the DTF setup defined in the ${deploy.config} file"
>
<java classname="com.yahoo.dtf.deploy.DeployDTF"
failonerror="true">
<classpath refid="dtf.classpath"/>
<arg value="start" />
<sysproperty key="dtf.home" value="."/>
<syspropertyset>
<propertyref builtin="all"/>
</syspropertyset>
</java>
</target>
<target name="deploy-wait"
depends="init,deploy-init"
description="wait for the DTF setup defined in the ${deploy.config} file to complete running the test"
>
<java classname="com.yahoo.dtf.deploy.DeployDTF"
failonerror="true">
<classpath refid="dtf.classpath"/>
<arg value="wait" />
<sysproperty key="dtf.home" value="."/>
<syspropertyset>
<propertyref builtin="all"/>
</syspropertyset>
</java>
</target>
<target name="deploy-stop"
depends="init,deploy-init"
description="This target will stop the specified DTF config and collect all of the logs">
<java classname="com.yahoo.dtf.deploy.DeployDTF"
failonerror="true">
<classpath refid="dtf.classpath"/>
<arg value="stop" />
<sysproperty key="dtf.home" value="."/>
<syspropertyset>
<propertyref builtin="all"/>
</syspropertyset>
</java>
</target>
<target name="deploy-status"
depends="init,deploy-init"
description="check the status of the DTF setup identified in the config file">
<java classname="com.yahoo.dtf.deploy.DeployDTF"
failonerror="true">
<classpath refid="dtf.classpath" />
<arg value="status" />
<sysproperty key="dtf.home" value="."/>
<syspropertyset>
<propertyref builtin="all"/>
</syspropertyset>
</java>
</target>
<target name="deploy-watch"
depends="init,deploy-init"
description="sets up all machines identified in the ${deploy.config} file so they can be used by the other deploy-xxx targets">
<java classname="com.yahoo.dtf.deploy.DeployDTF"
failonerror="true"
taskname="">
<classpath refid="dtf.classpath" />
<arg value="watch" />
<sysproperty key="dtf.home" value="."/>
<syspropertyset>
<propertyref builtin="all"/>
</syspropertyset>
</java>
</target>
<target name="deploy-savelogs"
depends="init,deploy-init"
description="collect all of the logs for the DTF setup identifed by the ${deploy.config} property">
<java classname="com.yahoo.dtf.deploy.DeployDTF"
failonerror="true">
<classpath refid="dtf.classpath"/>
<arg value="savelogs" />
<sysproperty key="dtf.home" value="."/>
<syspropertyset>
<propertyref builtin="all"/>
</syspropertyset>
</java>
</target>
<target name="setup-script"
depends="init,deploy-init"
description="execute a script on all machines identified in the ${deploy.config} file"
>
<java classname="com.yahoo.dtf.deploy.DeployDTF"
failonerror="true">
<classpath refid="dtf.classpath" />
<arg value="script" />
<sysproperty key="dtf.home" value="."/>
<syspropertyset>
<propertyref builtin="all"/>
</syspropertyset>
</java>
</target>
</project>