This repository has been archived by the owner on Dec 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathintegration-tests.xml
538 lines (441 loc) · 24.8 KB
/
integration-tests.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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2013-2015 Rimero Solutions
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project basedir="../../../"
xmlns:au="antlib:org.apache.ant.antunit"
xmlns:git="antlib:com.rimerosolutions.ant.git"
xmlns="antlib:org.apache.tools.ant">
<taskdef uri="antlib:com.rimerosolutions.ant.git"
resource="com/rimerosolutions/ant/git/jgit-ant-lib.xml">
<classpath>
<path refid="compile.classpath"/>
<path refid="classes.location"/>
</classpath>
</taskdef>
<pathconvert property="testData.folder" refid="testData.location"/>
<property name="dummy.patch.file" value="${testData.folder}/data-patch.txt"/>
<property name="branchlist.file" value="${testData.folder}/branch-list.txt"/>
<property name="branchlist.file.baseline" value="${testData.folder}/branch-list-baseline.txt"/>
<property name="taglist.file" value="${testData.folder}/tag-list.txt"/>
<property name="taglist.file.baseline" value="${testData.folder}/tag-list-baseline.txt"/>
<property name="testLocalRepo" value="${testData.folder}/testLocalRepo"/>
<property name="testLocalRepoClient" value="${testData.folder}/testLocalRepoClient"/>
<property name="testLocalRepoClone" value="${testData.folder}/testLocalRepoClone"/>
<property name="dummy.commit.message" value="Initial commit"/>
<property name="dummy.checkout.branch" value="feature/checkout"/>
<property name="tree.modified.property" value="treeModified"/>
<property name="dummy.tag.name" value="dummytag"/>
<property name="master.branch.name" value="master"/>
<property name="tomerge.branch.name" value="tomerge"/>
<!-- ****************************************** -->
<!-- Test lifecycle -->
<!-- ****************************************** -->
<target name="setUp">
<mkdir dir="${testLocalRepo}"/>
<mkdir dir="${testLocalRepoClone}"/>
<mkdir dir="${testLocalRepoClient}"/>
</target>
<target name="tearDown">
<delete dir="${testLocalRepo}" quiet="true"/>
<delete dir="${testLocalRepoClone}" quiet="true"/>
<delete dir="${testLocalRepoClient}" quiet="true"/>
<delete file="${branchlist.file}" quiet="true"/>
<delete file="${taglist.file}" quiet="true"/>
</target>
<macrodef name="initLocalRepo" description="Macro to ensure good setUp-tearDown behavior">
<sequential>
<git:settings refId="git.testing"
username="xxxtesting"
password="xxxtesting"
name="xxxtesting"
email="xxxtesting@gmail.com"/>
<git:git directory="${testLocalRepo}" settingsRef="git.testing">
<git:init/>
<git:commit message="${dummy.commit.message}"
revCommitIdProperty="revcommit"/>
</git:git>
</sequential>
</macrodef>
<macrodef name="initLocalRepoBare" description="Macro to ensure good setUp-tearDown behavior">
<sequential>
<git:settings refId="git.testing"
username="xxxtesting"
password="xxxtesting"
name="xxxtesting"
email="xxxtesting@gmail.com"/>
<git:git directory="${testLocalRepo}" settingsRef="git.testing">
<git:init bare="true" directory="${testLocalRepo}"/>
</git:git>
</sequential>
</macrodef>
<!-- ****************************************** -->
<!-- Tags -->
<!-- ****************************************** -->
<target name="testTagDelete" description="Test git-tag-delete">
<initLocalRepo/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:tag name="${dummy.tag.name}"/>
<git:tagdelete tags="${dummy.tag.name}"/>
</git:git>
<au:expectfailure>
<git:git directory="${testLocalRepo}" verbose="true">
<git:taglist verifycontainnames="${dummy.tag.name}"
failonerror="true"/>
</git:git>
</au:expectfailure>
</target>
<target name="testTagAdd" description="Test git-tag-add">
<initLocalRepo/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:tag name="${dummy.tag.name}"/>
<git:taglist outputfilename="${taglist.file}"
verifycontainnames="${dummy.tag.name}"
failonerror="true"/>
</git:git>
</target>
<target name="testTagList" description="Test git-tag-list">
<initLocalRepo/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:tag name="${dummy.tag.name}"/>
<git:taglist outputfilename="${taglist.file}"
failonerror="true"/>
</git:git>
<au:assertFileExists file="${taglist.file}"/>
<au:assertResourceContains resource="${taglist.file.baseline}"
value="${dummy.tag.name}"
message="Cannot find tag ${dummy.tag.name} in tag list baseline"/>
<au:assertResourceContains resource="${taglist.file}"
value="${dummy.tag.name}"
message="Cannot find tag ${dummy.tag.name} in tag list dump"/>
<au:assertFilesMatch expected="${taglist.file.baseline}"
actual="${taglist.file}"
message="Tags list doesn't match baseline"/>
</target>
<!-- ****************************************** -->
<!-- Branches -->
<!-- ****************************************** -->
<target name="testBranch" description="Test git-branch">
<initLocalRepo/>
<git:git directory="${testLocalRepo}" verbose="true">
<git:branch branchName="${dummy.checkout.branch}"/>
<git:branchlist verifycontainnames="${dummy.checkout.branch}"
outputfilename="${branchlist.file}"
failonerror="true"/>
</git:git>
</target>
<target name="testCurrentBranch" description="Test git-currentbranch">
<initLocalRepo/>
<git:git directory="${testLocalRepo}" verbose="true">
<git:checkout branchName="${dummy.checkout.branch}" createBranch="true"/>
<git:currentbranch outputProperty="currentBranchName"/>
</git:git>
<au:assertEquals expected="${dummy.checkout.branch}" actual="${currentBranchName}"/>
</target>
<target name="testBranchFromTag" description="Test branch from tag">
<initLocalRepo/>
<git:git directory="${testLocalRepo}" verbose="true">
<git:checkout branchName="${dummy.checkout.branch}" createBranch="true"/>
</git:git>
<echo file="${testLocalRepo}/test.txt" message="test"/>
<git:git directory="${testLocalRepo}" verbose="true">
<git:add>
<fileset dir="${testLocalRepo}" includes="*.txt"/>
</git:add>
<git:commit message="${dummy.commit.message}" settingsRef="git.testing"/>
<git:checkout branchName="${master.branch.name}"/>
</git:git>
<au:expectfailure>
<au:assertFileExists file="${testLocalRepo}/test.txt"/>
</au:expectfailure>
<git:git directory="${testLocalRepo}" verbose="true">
<git:checkout branchName="${dummy.checkout.branch}" startPoint="${dummy.checkout.branch}"/>
</git:git>
<au:assertFileExists file="${testLocalRepo}/test.txt"/>
</target>
<target name="testBranchDelete" description="Test git-branch-delete">
<initLocalRepo/>
<au:expectfailure>
<git:git directory="${testLocalRepo}" verbose="true">
<git:checkout branchName="${dummy.checkout.branch}"
createBranch="true"/>
<git:branchDelete failonerror="true" branches="${dummy.checkout.branch}"/>
</git:git>
</au:expectfailure>
<git:git directory="${testLocalRepo}" verbose="true">
<git:checkout branchName="${master.branch.name}"/>
<git:branchDelete failonerror="true" branches="${dummy.checkout.branch}"/>
</git:git>
</target>
<target name="testBranchList" description="Test git-branch-list">
<initLocalRepo/>
<git:git directory="${testLocalRepo}" verbose="true">
<git:checkout branchName="${dummy.checkout.branch}" createBranch="true"/>
<git:branchlist outputfilename="${branchlist.file}"/>
</git:git>
<au:assertFileExists file="${branchlist.file}"/>
<au:assertResourceContains resource="${branchlist.file.baseline}"
value="${dummy.checkout.branch}"
message="Cannot find branch ${dummy.checkout.branch} in branch list baseline"/>
<au:assertResourceContains resource="${branchlist.file}"
value="${dummy.checkout.branch}"
message="Cannot find branch ${dummy.checkout.branch} in branch list dump"/>
<au:assertFilesMatch expected="${branchlist.file.baseline}"
actual="${branchlist.file}"
message="Branches list doesn't match baseline"/>
</target>
<!-- ****************************************** -->
<!-- Others -->
<!-- ****************************************** -->
<!-- git-merge -->
<target name="testMerge" description="Test git-merge">
<initLocalRepo/>
<!-- create a first branch with one file -->
<git:git directory="${testLocalRepo}" verbose="true">
<git:checkout
branchName="${dummy.checkout.branch}"
createBranch="true"/>
</git:git>
<echo file="${testLocalRepo}/test.txt" message="test"/>
<git:git directory="${testLocalRepo}" verbose="true">
<git:add>
<fileset dir="${testLocalRepo}" includes="*.txt"/>
</git:add>
<git:commit message="${dummy.commit.message}" settingsRef="git.testing"/>
</git:git>
<!-- create a second branch with one file from master -->
<git:git directory="${testLocalRepo}" verbose="true">
<git:checkout
branchName="${master.branch.name}"
createBranch="false"/>
<git:checkout
branchName="${tomerge.branch.name}"
createBranch="true"/>
</git:git>
<echo file="${testLocalRepo}/test1.txt" message="test1"/>
<git:git directory="${testLocalRepo}" verbose="true">
<git:add>
<fileset dir="${testLocalRepo}" includes="*.txt"/>
</git:add>
<git:commit
message="${dummy.commit.message}"
settingsRef="git.testing"/>
</git:git>
<!-- merge from the second branch into the first branch -->
<git:git directory="${testLocalRepo}" verbose="true">
<git:checkout
branchName="${dummy.checkout.branch}"
createBranch="false"/>
<git:merge branchname="${tomerge.branch.name}"/>
</git:git>
<!-- we expect 2 text files -->
<au:assertFileExists file="${testLocalRepo}/test.txt"/>
<au:assertFileExists file="${testLocalRepo}/test1.txt"/>
</target>
<!-- git-checkout -->
<target name="testCheckout" description="Test git-checkout">
<initLocalRepo/>
<git:git directory="${testLocalRepo}" verbose="true">
<git:checkout branchName="${dummy.checkout.branch}" createBranch="true"/>
<git:branchlist verifycontainnames="${dummy.checkout.branch}"
outputfilename="${branchlist.file}"
failonerror="true"/>
</git:git>
</target>
<!-- git-clone -->
<target name="testClone" description="Test git-clone">
<initLocalRepo/>
<git:git directory="${testLocalRepoClone}" verbose="true">
<git:clone uri="file://${testLocalRepo}/.git" directory="${testLocalRepoClone}"/>
</git:git>
<au:assertFileExists file="${testLocalRepoClone}/.git/index"/>
</target>
<!-- git-push -->
<target name="testPush" description="Test git-push">
<initLocalRepoBare/>
<git:git directory="${testLocalRepoClone}" verbose="true">
<git:clone uri="file://${testLocalRepo}" directory="${testLocalRepoClone}"/>
</git:git>
<echo file="${testLocalRepoClone}/test.txt" message="test"/>
<git:git directory="${testLocalRepoClone}" verbose="true" settingsRef="git.testing">
<git:add>
<fileset dir="${testLocalRepoClone}" includes="*.txt"/>
</git:add>
<git:commit message="${dummy.commit.message}"/>
<git:uptodate failOnError="true"/>
<git:push uri="file://${testLocalRepo}"/>
</git:git>
<git:git directory="${testLocalRepoClient}" verbose="true" settingsRef="git.testing">
<git:clone uri="file://${testLocalRepo}"/>
</git:git>
<au:assertFileExists file="${testLocalRepoClient}/test.txt"/>
</target>
<!-- git-fetch -->
<target name="testFetch" description="Test git-fetch">
<initLocalRepoBare/>
<git:git directory="${testLocalRepoClone}" verbose="true">
<git:clone uri="file://${testLocalRepo}"/>
</git:git>
<echo file="${testLocalRepoClone}/test.txt" message="test"/>
<git:git directory="${testLocalRepoClone}" verbose="true" settingsRef="git.testing">
<git:add>
<fileset dir="${testLocalRepoClone}" includes="*.txt"/>
</git:add>
<git:commit message="${dummy.commit.message}"/>
<git:uptodate failOnError="true"/>
<git:push uri="file://${testLocalRepo}"/>
</git:git>
<git:git directory="${testLocalRepoClient}" verbose="true" settingsRef="git.testing">
<git:init directory="${testLocalRepoClient}"/>
<git:fetch uri="file://${testLocalRepo}" directory="${testLocalRepoClient}"/>
<git:pull/>
</git:git>
<au:assertFileExists file="${testLocalRepoClient}/test.txt"/>
</target>
<!-- git-rm -->
<target name="testRm" description="Test git-rm">
<initLocalRepo/>
<echo file="${testLocalRepo}/test.txt" message="test"/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:add>
<fileset dir="${testLocalRepo}" includes="*.txt"/>
</git:add>
<git:commit message="${dummy.commit.message}" revCommitIdProperty="testAdd.revcommit"/>
<git:rm>
<fileset dir="${testLocalRepo}" includes="*.txt"/>
</git:rm>
<git:commit message="${dummy.commit.message}" revCommitIdProperty="testRm.revcommit"/>
<git:uptodate failOnError="true"/>
</git:git>
<au:expectfailure>
<au:assertFileExists file="${testLocalRepoClone}/test.txt"/>
</au:expectfailure>
</target>
<!-- git-add -->
<target name="testAdd" description="Test git-add">
<initLocalRepo/>
<echo file="${testLocalRepo}/test.txt" message="test"/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:add>
<fileset dir="${testLocalRepo}" includes="*.txt"/>
</git:add>
<git:commit message="${dummy.commit.message}" revCommitIdProperty="testAdd.revcommit"/>
<git:uptodate failOnError="true"/>
</git:git>
</target>
<!-- git-commit -->
<target name="testCommit" description="Test git-commit">
<initLocalRepo/>
<echo file="${testLocalRepo}/test.txt" message="test"/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:add>
<fileset dir="${testLocalRepo}" includes="*.txt"/>
</git:add>
<git:commit message="${dummy.commit.message}" revCommitIdProperty="testAdd.revcommit"/>
<git:uptodate failOnError="true"/>
</git:git>
<echo file="${testLocalRepo}/test-fileset1.txt" message="test"/>
<echo file="${testLocalRepo}/test-fileset2.txt" message="test"/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:add>
<fileset dir="${testLocalRepo}" includes="test-fileset*.txt"/>
</git:add>
<git:commit message="${dummy.commit.message}" revCommitIdProperty="testAdd.revcommit">
<fileset dir="${testLocalRepo}" includes="test-fileset*.txt"/>
</git:commit>
<git:uptodate failOnError="true"/>
</git:git>
<au:expectfailure>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:commit message="${dummy.commit.message}" only="test.txt"/>
</git:git>
</au:expectfailure>
</target>
<!-- git-clean -->
<target name="testClean" description="Test git-clean">
<initLocalRepo/>
<echo file="${testLocalRepo}/test.txt" message="test"/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:clean/>
<git:uptodate failOnError="true"/>
</git:git>
<echo file="${testLocalRepo}/test.txt" message="test"/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:clean paths="test.txt"/>
<git:uptodate failOnError="true"/>
</git:git>
</target>
<!-- git-apply -->
<target name="testApply" description="Test git-apply">
<initLocalRepo/>
<echo file="${testLocalRepo}/file.txt" message="test file"/>
<git:git directory="${testLocalRepo}" verbose="true">
<git:apply updatedCountProperty="updatedCountProperty" patchfile="${dummy.patch.file}"/>
</git:git>
<au:assertTrue message="Only one file impacted by patch">
<equals arg1="${updatedCountProperty}" arg2="1"/>
</au:assertTrue>
</target>
<!-- git-pull -->
<target name="testPull" description="Test git-pull">
<initLocalRepo/>
<git:git directory="${testLocalRepoClone}" verbose="true">
<git:clone uri="file://${testLocalRepo}/.git" directory="${testLocalRepoClone}"/>
</git:git>
<echo file="${testLocalRepo}/file.txt" message="test file"/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:add>
<fileset dir="${testLocalRepo}" includes="*.txt"/>
</git:add>
<git:commit message="${dummy.commit.message}"/>
</git:git>
<git:git directory="${testLocalRepoClone}" verbose="true">
<git:pull/>
</git:git>
<au:assertFileExists file="${testLocalRepoClone}/file.txt"/>
</target>
<!-- git-status -->
<target name="testUpToDateFailure" description="Test git-status">
<initLocalRepo/>
<echo file="${testLocalRepo}/test.txt" message="test"/>
<au:expectfailure>
<git:git directory="${testLocalRepo}" settingsRef="git.testing">
<git:uptodate failOnError="true" modificationExistProperty="${tree.modified.property}"/>
</git:git>
</au:expectfailure>
<au:assertPropertySet name="${tree.modified.property}"/>
<au:assertPropertyEquals name="${tree.modified.property}" value="true"/>
</target>
<!-- git-init -->
<target name="testInit" description="Test git-init">
<initLocalRepo/>
<au:assertFileExists file="${testLocalRepo}/.git/index"/>
</target>
<!-- git-reset -->
<target name="testReset" description="Test git-reset">
<initLocalRepo/>
<echo file="${testLocalRepo}/test.txt" message="test"/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:add>
<fileset dir="${testLocalRepo}" includes="*.txt"/>
</git:add>
<git:commit message="${dummy.commit.message}" revCommitIdProperty="testAdd.revcommit"/>
<git:uptodate failOnError="true"/>
</git:git>
<delete file="${testLocalRepo}/test.txt"/>
<git:git directory="${testLocalRepo}" verbose="true" settingsRef="git.testing">
<git:reset mode="hard"/>
<git:uptodate failOnError="true"/>
</git:git>
<au:assertFileExists file="${testLocalRepo}/test.txt"/>
</target>
</project>