Skip to main content
summaryrefslogtreecommitdiffstats
blob: 55f6edce5aeed886025a7387afddbdee60c555e7 (plain) (blame)
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
<!-- Copyright (c) 2011, 2018 IBM Corporation and others. 

  This program and the accompanying materials are made available under the
  terms of the Eclipse Public License 2.0 which accompanies this distribution,
  https://www.eclipse.org/legal/epl-2.0/

  SPDX-License-Identifier: EPL-2.0.

  Contributors:
  IBM Corporation - initial API and implementation
-->

<!--
  this script is invoked by the build, on the build machine,
  to signify to hudson "the build is done", pass a few parameters,
  then let Hudson take over.

    wget - -no-verbose -O invokeTestsJSON.xml http://git.eclipse.org/c/platform/eclipse.platform.releng.eclipsebuilder.git/plain/invokeTestsJSON.xml?h=master 2>&1;

-->

<project
  name="Hudson-Tests"
  default="runTests"
  basedir=".">

  <target
    name="runTests"
    depends="init">
    <echo message="== Properties in invokeTestsJSON.xml" />
    <echo message="buildId: ${buildId} " />
    <echo message="eclipseStream: ${eclipseStream}" />
    <echo message="eclipseStreamMajor: ${eclipseStreamMajor}" />
    <echo message="eclipseStreamMinor: ${eclipseStreamMinor}" />
    <echo message="buildType: ${buildType}" />
    <echo message="EBUILDER_HASH: ${EBUILDER_HASH}" />
    <antcall target="JUnitTests" />
    <antcall target="PerfTests" />
  </target>


  <target
    name="JUnitTests"
    depends="init">

    <!--
      currently we test on three platforms.
      So, three parallel calls since on different machines (and Hudson queues).
      TODO: Can these be called, in parallel via callant (or, perhaps subant?
      for greater flexibility in what to test?)
    -->

    <antcall target="triggerHudsonTests">
      <param
        name="job"
        value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-win32-java8" />
    </antcall>

    <antcall target="triggerHudsonTests">
      <param
        name="job"
        value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-mac64-java8" />
    </antcall>

    <!--
      currently we test on four platforms.
      These GTK3 tests are "just like the others", except the URL to "send it to" differs.
    -->
    
    <antcall target="triggerHudsonTests">
      <param
        name="job"
        value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-cen64-gtk3-java8" />
    </antcall>

    <antcall target="triggerHudsonTests">
      <param
        name="job"
        value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-cen64-gtk3-java11" />
    </antcall>
    
  </target>
  
  <target
    name="PerfTests"
    depends="init">

    <!--
      currently we test on three platforms.
      So, three parallel calls since on different machines (and Hudson queues).
      TODO: Can these be called, in parrallel via callant (or, perhaps subant?)
      for greater flexibility in what to test?
    -->

      <antcall target="triggerHudsonPerfTests">
        <param
          name="job"
          value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-perf-lin64-baseline" />
      </antcall>
      <!--
        <antcall target="triggerHudsonTests">
        <param
        name="job"
        value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-win32" />
        </antcall>

        <antcall target="triggerHudsonTests">
        <param
        name="job"
        value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-mac64" />
        </antcall>
      -->

  </target>


  <target
    name="triggerHudsonTests"
    depends="init">



    <!--
      baseURL used to be "required parameter" for Hudson job, but seemed overly complicated so
      I compute all this later (based on stream and id) but, I've learned, one disadvantage is this
      restricts test code locations to "downloads". There might be times we want to do from "build"
      locations, or similar. Not to mention, other, internal test systems someday.

      <property
      name="baseURL"
      value="http://download.eclipse.org/eclipse/downloads/${dropsDirSegment}/${buildId}" />
    -->

    <!-- Hudson jobs currently have four required parameters -->
    <property
      name="JSON_buildId"
      value="{&quot;name&quot;:&quot;buildId&quot;,&quot;value&quot;:&quot;${buildId}&quot;}" />
    
    <property
      name="json"
      value="{&quot;parameter&quot;:[${JSON_buildId},${JSON_eclipseStream},${JSON_EBUILDER_HASH}]}" />

    <echo message="env.HUDSON_PROTOCOL: ${env.HUDSON_PROTOCOL}" />
    <echo message="env.HUDSON_HOST: ${env.HUDSON_HOST}" />
    <echo message="env.HUDSON_PORT: ${env.HUDSON_PORT}" />
    <echo message="env.HUDSON_ROOT_URI: ${env.HUDSON_ROOT_URI}" />
    <echo message="json for unit curl post: ${json}" />
    <echo message="job: ${job}" />
    <echo message="${env.HUDSON_PROTOCOL}://${env.HUDSON_HOST}:${env.HUDSON_PORT}/${env.HUDSON_ROOT_URI}/job/${job}/buildWithParameters" />

    <exec
      executable="curl"
      resultproperty="rcUnit"
      outputproperty="unitOutput"
      errorproperty="unitErrorOutput">
      <arg line="-X GET" />
      <arg value="${env.HUDSON_PROTOCOL}://${env.HUDSON_HOST}:${env.HUDSON_PORT}/${env.HUDSON_ROOT_URI}/job/${job}/buildWithParameters?token=${env.HUDSON_TOKEN}&amp;buildId=${buildId}" />
      <arg value="--fail" />
    </exec>
    <echo message="DEBUG: rcUnit: ${rcUnit}" />
    <condition property="invocationNotOk">
      <not>
        <equals
          arg1="${rcUnit}"
          arg2="0" />
      </not>
    </condition>
    <!--
       TODO: We could produced a "TEST_ARE_RUNNING_ON" file here too, when rc = 0 .. that is unless="invocationNoOk" 
       and included the URL of build or performance machine tests. 
    -->
    <antcall target="checkInvocation">
      <param
        name="returnCode"
        value="${rcUnit}" />
      <param
        name="job"
        value="${job}" />
      <param
        name="output"
        value="${unitOutput}" />
      <param
        name="errorOutput"
        value="${unitErrorOutput}" />
    </antcall>
  </target>

  <target
    name="triggerHudsonWinTests"
    depends="init">
    <!--
      baseURL used to be "required parameter" for Hudson job, but seemed overly complicated so
      I compute all this later (based on stream and id) but, I've learned, one disadvantage is this
      restricts test code locations to "downloads". There might be times we want to do from "build"
      locations, or similar. Not to mention, other, internal test systems someday.

      <property
      name="baseURL"
      value="http://download.eclipse.org/eclipse/downloads/${dropsDirSegment}/${buildId}" />
    -->

    <!-- Hudson jobs currently have four required parameters -->
    <property
      name="JSON_buildId"
      value="{&quot;name&quot;:&quot;buildId&quot;,&quot;value&quot;:&quot;${buildId}&quot;}" />
    
    <property
      name="json"
      value="{&quot;parameter&quot;:[${JSON_buildId},${JSON_eclipseStream},${JSON_EBUILDER_HASH}]}" />

    <echo message="env.HUDSON_PROTOCOL: ${env.HUDSON_PROTOCOL}" />
    <echo message="env.HUDSON_HOST: ${env.HUDSON_HOST}" />
    <echo message="env.HUDSON_PORT: ${env.HUDSON_PORT}" />
    <echo message="env.HUDSON_WIN32_ROOT_URI: ${env.HUDSON_WIN32_ROOT_URI}" />
    <echo message="json for unit curl post: ${json}" />
    <echo message="job: ${job}" />
    <echo message="${env.HUDSON_PROTOCOL}://${env.HUDSON_HOST}:${env.HUDSON_PORT}/${env.HUDSON_WIN32_ROOT_URI}/job/${job}/buildWithParameters" />

    <exec
      executable="curl"
      resultproperty="rcUnit"
      outputproperty="unitOutput"
      errorproperty="unitErrorOutput">
      <arg line="-X GET" />
      <arg value="${env.HUDSON_PROTOCOL}://${env.HUDSON_HOST}:${env.HUDSON_PORT}/${env.HUDSON_WIN32_ROOT_URI}/job/${job}/buildWithParameters?token=${env.HUDSON_TOKEN}&amp;buildId=${buildId}" />
      <arg value="--fail" />
    </exec>
    <echo message="DEBUG: rcUnit: ${rcUnit}" />
    <condition property="invocationNotOk">
      <not>
        <equals
          arg1="${rcUnit}"
          arg2="0" />
      </not>
    </condition>
    <!--
       TODO: We could produced a "TEST_ARE_RUNNING_ON" file here too, when rc = 0 .. that is unless="invocationNoOk" 
       and included the URL of build or performance machine tests. 
    -->
    <antcall target="checkInvocation">
      <param
        name="returnCode"
        value="${rcUnit}" />
      <param
        name="job"
        value="${job}" />
      <param
        name="output"
        value="${unitOutput}" />
      <param
        name="errorOutput"
        value="${unitErrorOutput}" />
    </antcall>
  </target>

  <target
    name="checkInvocation"
    if="invocationNotOk">
    <echo
      message="&lt;p&gt;Invocation of Curl did not return 0 return code for ${job}.&lt;br /&gt;${line.separator}"
      file="${postingDirectory}/TEST_INVOCATION_FAILED.html"
      append="true" />
    <echo
      message="   return code was ${returnCode}&lt;br /&gt;${line.separator}"
      file="${postingDirectory}/TEST_INVOCATION_FAILED.html"
      append="true" />
    <echo
      message="   Likely due to Hudson job not being defined (or, possibly network issues).&lt;br /&gt;${line.separator}"
      file="${postingDirectory}/TEST_INVOCATION_FAILED.html"
      append="true" />
    
     <echo
      message="ERROR: Invocation of Curl did not return 0 return code for ${job}." />
    <echo
      message="= = = standard out = = ${line.separator}${output}" />
    <echo
      message="= = = standard err = = ${line.separator}${errorOutput}${line.separator}${line.separator}" />
    <!-- We don't want to fail automatically here, since just one machine may be "offline". -->
    <echo message="Curl invocation failed. See ${postingDirectory}/TEST_INVOCATION_FAILED.html" />
  </target>

  <target
    name="triggerHudsonPerfTests"
    depends="init">

    <!--
      baseURL used to be "required parameter" for Hudson job, but seemed overly complicated so
      I compute all this later (based on stream and id) but, I've learned, one disadvantage is this
      restricts test code locations to "downloads". There might be times we want to do from "build"
      locations, or similar. Not to mention, other, internal test systems someday.

      <property
      name="baseURL"
      value="http://download.eclipse.org/eclipse/downloads/${dropsDirSegment}/${buildId}" />
    -->

    <!-- Hudson jobs currently have 3 required parameters -->
    <property
      name="JSON_buildId"
      value="{&quot;name&quot;:&quot;buildId&quot;,&quot;value&quot;:&quot;${buildId}&quot;}" />
    <property
      name="JSON_eclipseStream"
      value="{&quot;name&quot;:&quot;eclipseStream&quot;,&quot;value&quot;:&quot;${eclipseStream}&quot;}" />
    <property
      name="JSON_EBUILDER_HASH"
      value="{&quot;name&quot;:&quot;EBUILDER_HASH&quot;,&quot;value&quot;:&quot;${EBUILDER_HASH}&quot;}" />

    <property
      name="JSON_defaultTestSuite"
      value="{&quot;name&quot;:&quot;testToRun&quot;,&quot;value&quot;:&quot;selectPerformance&quot;}" />

    <property
      name="json"
      value="{&quot;parameter&quot;:[${JSON_buildId},${JSON_eclipseStream},${JSON_EBUILDER_HASH},${JSON_defaultTestSuite}]}" />

    <!-- TODO: "segment" varies by test, and/or environment ... must be an easier way? -->
    <property
      name="env.LINUX_PERF_SEGMENT"
      value="releng" />

    <echo message="env.HUDSON_PERF_PROTOCOL: ${env.HUDSON_PERF_PROTOCOL}" />
    <echo message="env.HUDSON_PERF_HOST: ${env.HUDSON_PERF_HOST}" />
    <echo message="env.HUDSON_PERF_PORT: ${env.HUDSON_PERF_PORT}" />
    <echo message="json for perf curl post: ${json}" />
    <echo message="${env.HUDSON_PERF_PROTOCOL}://${env.HUDSON_PERF_HOST}:${env.HUDSON_PERF_PORT}/${env.LINUX_PERF_SEGMENT}/job/${job}/build" />

    <exec
      executable="curl"
      resultproperty="rcPerf"      
      outputproperty="perfOutput"
      errorproperty="perfErrorOutput">
      <arg line="-X GET" />
      <arg
        value="${env.HUDSON_PERF_PROTOCOL}://${env.HUDSON_PERF_HOST}:${env.HUDSON_PERF_PORT}/${env.LINUX_PERF_SEGMENT}/job/${job}/buildWithParameters?token=${env.HUDSON_TOKEN}&amp;buildId=${buildId}&amp;eclipseStream=${eclipseStream}&amp;EBUILDER_HASH=${EBUILDER_HASH}" />
      <arg value="--fail" />
    </exec>
    <echo message="DEBUG: rcPerf: ${rcPerf}" />
    <condition property="invocationNotOk">
      <not>
        <equals
          arg1="${rcPerf}"
          arg2="0" />
      </not>
    </condition>
    <antcall target="checkInvocation">
      <param
        name="returnCode"
        value="${rcPerf}" />
      <param
        name="job"
        value="${job}" />
      <param
        name="output"
        value="${perfOutput}" />
      <param
        name="errorOutput"
        value="${perfErrorOutput}" />
    </antcall>
  </target>


  <target
    name="init"
    depends="initStreamVariables"
    unless="invokeTestsJSONinitialized">

    <property environment="env" />
    
    <!-- posting directory should be passed in to us ... but, in case not 
         we will at least define it.
    -->
    <property
      name="postingDirectory"
      value="${basedir}/postingDirectory" />

    <property
      name="env.HUDSON_HOST"
      value="ci.eclipse.org" />
    <property
      name="env.HUDSON_PROTOCOL"
      value="https" />
    <property
      name="env.HUDSON_PORT"
      value="443" />
    <property
      name="env.HUDSON_ROOT_URI"
      value="releng" />
    <property
      name="env.HUDSON_WIN32_ROOT_URI"
      value="shared" />
    <property
      name="env.HUDSON_PERF_HOST"
      value="ci.eclipse.org" />
    <property
      name="env.HUDSON_PERF_PROTOCOL"
      value="https" />
    <property
      name="env.HUDSON_PERF_PORT"
      value="443" />

    <script language="javascript">
          <![CDATA[
            var buildId = project.getProperty("buildId");
            var pattern = new RegExp(/^([IMXYPNSRU])(\d{8})-(\d{4})$/);

            var sArray = pattern.exec(buildId);
            // sArray 0 is "whole match"
            project.setProperty("buildType", sArray[1]);
          ]]>
    </script>
    <echo message="Computed buildType of ${buildType} from ${buildId}" />
    <property
      name="invokeTestsJSONinitialized"
      value="true" />
  </target>

  <target name="initStreamVariables">

    <fail
      unless="eclipseStream"
      message="eclipseStream must be provided by caller" />
    <condition property="streamOK">
      <matches
        pattern="\d+\.\d+\.\d+"
        string="${eclipseStream}" />
    </condition>
    <fail
      message="eclipseStream variable had unexpected format. Should be digit.digit.digit, but was ${eclipseStream}"
      unless="streamOK" />
    <script language="javascript">
          <![CDATA[
            var eclipseStream = project.getProperty("eclipseStream");
            var pattern = new
            RegExp(/(\d+)\.(\d+)\.(\d+)/);

            var sArray = pattern.exec(eclipseStream);
            // sArray[0] is "whole match"
            project.setProperty("eclipseStreamMajor", sArray[1]);
            project.setProperty("eclipseStreamMinor", sArray[2]);
            project.setProperty("eclipseStreamService", sArray[3]);
           ]]>
    </script>

  </target>

</project>

Back to the top