This repository has been archived by the owner on Jul 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathops.test.props
514 lines (467 loc) · 18.5 KB
/
ops.test.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0"
DefaultTargets="Run"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
**** PREPARE - WORKSPACE ****
-->
<!--
The list of all files that should be deleted prior to starting the test process.
If the deletion process fails the test will continue and a warning will be printed.
-->
<ItemGroup Condition=" '$(ShouldLoadFilesToDelete)' == 'true' ">
<!--
<FilesToDelete Include="" />
-->
</ItemGroup>
<!--
The list of all directories that should be deleted prior to starting the test process.
Deleting the directories will also delete all the files contained in these directories.
If the deletion process fails the test will continue and a warning will be printed.
-->
<ItemGroup Condition=" '$(ShouldLoadDirectoriesToDelete)' == 'true' ">
<!--
<DirectoriesToDelete Include="" />
-->
</ItemGroup>
<!--
**** PREPARE - CALCULATE HASHES ****
-->
<!--
The collection of files for which the hashes need to be calculated. The available hash algorithms
are:
- MD5
- SHA1
- SHA256
- SHA512
Hash values are stored in a file in the temp directory and can be retrieved with the
'ReadHashFromFile' task
-->
<ItemGroup Condition=" '$(ShouldLoadFilesToHash)' == 'true' ">
<!-->
<FilesToHash Include="">
<Algorithm></Algorithm>
</FilesToHash>
-->
</ItemGroup>
<!--
**** PREPARE - COPY FILES ****
-->
<!--
Files that should be copied, either from the file system or from a NuGet package.
-->
<ItemGroup Condition=" '$(ShouldLoadNuGetFilesToCopy)' == 'true' ">
<!--
<NuGetFilesToCopy Include="My.Cool.NuGet.Package">
<Include>**/*.*</Include>
<Destinations>$(DirBuildTemp)</Destinations>
</NuGetFilesToCopy>
-->
</ItemGroup>
<ItemGroup Condition=" '$(ShouldLoadHttpFilesToCopy)' == 'true' ">
<!-- If the archive file with the exported VM does not exist in the deploy directory then download it from the archive server and unzip it -->
<HttpFilesToCopy
Condition=" '$(IsTest)' == 'true' AND !Exists('$(DirBuildDeploy)') "
Include="$(ArtefactRepositoryToPullFrom)/${ProductNameInFilePath}/${VersionSemantic}/${ProductName}-${VersionSemantic}.zip">
<Destination>$(DirBuildTemp)\$(ImageName)</Destination>
<UseDefaultCredentials>false</UseDefaultCredentials>
<Unzip>true</Unzip>
</HttpFilesToCopy>
</ItemGroup>
<ItemGroup Condition=" '$(ShouldLoadFilesToCopy)' == 'true' ">
<FilesToCopy
Condition=" '$(IsTest)' == 'true' "
Exclude="$(DirTestsIntegrationPester)\System.Tests.ps1;$(DirTestsIntegrationPester)\Users.Tests.ps1"
Include="$(DirTestsIntegrationPester)\**\*.*">
<Destination>$(DirBuildTempTestsIntegrationPester)</Destination>
</FilesToCopy>
</ItemGroup>
<ItemGroup Condition=" '$(ShouldLoadArchiveFilesToCopy)' == 'true' ">
<!-- If the archive file with the exported VM exists in the deploy directory unzip it from there -->
<ArchiveFilesToCopy
Condition=" '$(IsTest)' == 'true' AND Exists('$(DirBuildDeploy)') "
Include="$(DirBuildDeploy)\${ProductName}-${VersionSemantic}.zip">
<Destination>$(DirBuildTemp)\${ImageName}</Destination>
</ArchiveFilesToCopy>
</ItemGroup>
<!--
**** PREPARE - GENERATE FILES ****
-->
<!--
The list of all files that should be generated and their template files.
The template file may contain zero or more template parameters as indicated at the top of this
file. By default template parameters must be enclosed in '${}'. By providing a value for
'Expression' it is possible to use a custom regular expression to search for elements to replace,
e.g. $TOKEN$. Note that elements in the regular expession might need to be converted in a suitable
format because XML doesn't like < and > and MsBuild doesn't like $ (%24), * (%2A), ? (%3F).
Only the 'Template' value is required.
Additional parameters can be provided through the 'TemplateTokens' ItemGroup below.
-->
<ItemGroup Condition=" '$(ShouldLoadTestFilesToGenerate)' == 'true' ">
<TestFilesToGenerate Include="$(DirBuildTempTestsIntegrationPacker)\packer.json">
<Template>$(DirTestsIntegrationPacker)\packer.json</Template>
<Encoding></Encoding>
</TestFilesToGenerate>
<TestFilesToGenerate Include="$(DirBuildTempTestsIntegrationPacker)\packer_variables.json">
<Template>$(DirTestsIntegrationPacker)\packer_variables.json</Template>
<Encoding></Encoding>
</TestFilesToGenerate>
<TestFilesToGenerate Include="$(DirBuildTempTestsIntegrationPester)\System.Tests.ps1">
<Template>$(DirTestsIntegrationPester)\System.Tests.ps1</Template>
<Encoding></Encoding>
</TestFilesToGenerate>
<TestFilesToGenerate Include="$(DirBuildTempTestsIntegrationPester)\Users.Tests.ps1">
<Template>$(DirTestsIntegrationPester)\Users.Tests.ps1</Template>
<Encoding></Encoding>
</TestFilesToGenerate>
</ItemGroup>
<!--
**** INTEGRATION - PESTER ****
-->
<PropertyGroup>
<!--
The full path to the file into which Pester will write the test results.
-->
<!-- <FileTestReport>$(DirBuildLogs)\pester.integration.xml</FileTestReport> -->
</PropertyGroup>
<!--
The list of all arguments that should be passed to the Pester test.
The value elements may contain zero or more template parameters as indicated at the top of this
file. Template parameters must be enclosed in '${}'.
-->
<ItemGroup Condition=" '$(ShouldLoadPesterTestArguments)' == 'true' ">
<!--
<PesterTestArguments Include="">
<Value></Value>
</PesterTestArguments>
-->
</ItemGroup>
<!--
**** PACK - ISO ****
-->
<!--
The item group defining the location and contents of the ISO files that are generated during the build
All file paths allow build templates, e.g. $(DirBuildDeploy)\myarchive-${VersionSemantic}.zip.
-->
<ItemGroup Condition=" '$(ShouldLoadIsoPackageSpecs)' == 'true' ">
<IsoPackageSpecs
Condition=" '$(IsTest)' == 'true' "
Include="$(DirTests)\**\*.isospec" />
</ItemGroup>
<!--
**** INTEGRATION - PACKER ****
-->
<!--
The item group defining the location and contents of the Packer files that are used during the test
to validate the Packer images.
All file paths allow build templates, e.g. $(DirBuildDeploy)\myarchive-${VersionSemantic}.zip.
-->
<ItemGroup Condition=" '$(ShouldLoadPackerImagesToTest)' == 'true' ">
<PackerImagesToTest
Condition=" '$(DirTestsIntegrationPacker)' != '' AND '$(IsTest)' == 'true' "
Include="$(DirTestsIntegrationPacker)\packer.json">
<Variables>
$(DirBuildTempTestsIntegrationPacker)\packer_variables.json
</Variables>
</PackerImagesToTest>
</ItemGroup>
<!--
**** TEST STEPS ****
-->
<!--
The following ItemGroup defines which steps are taken during the test process. The order of the items in the item group
determines in which order the test steps are executed.
Each test step can define the following items:
- Properties - The semi-colon separated set of properties that should be passed to the script.
Properties are written as 'key=value'.
- Groups - All the groups that a given step belongs to. The user can elect to only run test steps for a given group.
- PreSteps - A semi-colon separated list of all additional scripts and their targets that should be executed before
the selected test step.
- PostSteps - A semi-colon separated list of all additional scripts and their targets that should be executed after
the selected test step.
The metadata to the script that is about to be executed is passed to each pre-step under the following properties:
- StepDescription : The full description of the step to be executed.
- StepId : The ID of the step. In general the name of the property that references the step file.
- StepName : The name of the step.
- StepPath : The full path to the script file for the step.
Additionally all the standard properties as seen below and the properties for the given test step are passed in.
The following ItemGroup defines which steps are taken during the test process. The order of the items in the item group
determines in which order the test steps are executed.
Additional test steps can be defined by providing the path to the MsBuild script that should be executed
for that step, e.g. adding a test step that points to the 'c:\stuff\MyCoolScript.msbuild' will execute
that script.
Any properties defined by the 'Properties' section are pushed up.
-->
<ItemGroup Condition=" '$(ShouldLoadTestStepsToExecute)' == 'true' ">
<TestStepsToExecute Include="$(TestStepsPrepareWorkspace)">
<Properties>
</Properties>
<Groups>
clean;
prepare;
prepare.clean;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<!--
<TestStepsToExecute Include="$(TestStepsBuildTargetsAssembly)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.bootstrap;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsGenerateTargetsFile)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.bootstrap;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
-->
<TestStepsToExecute Include="$(TestStepsPrepareRestoreNuGet)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.restore;
prepare.restore.nuget;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<!--
The following steps need to be executed on the original branch (i.e. the branch we are interested in
building.
-->
<TestStepsToExecute Include="$(TestStepsPrepareVcsBranch)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.buildserver;
prepare.buildserver.vcssetbranch;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsPrepareVcsInfo)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.get;
prepare.get.vcsinfo;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsPrepareGetIssueIds)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.get;
prepare.get.issueids;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsPrepareGetVersion)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.get;
prepare.get.version;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsPrepareReleaseNotes)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.get;
prepare.get.releasenotes;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsPrepareCopyNuGet)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.copy;
prepare.copy.nuget;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsPrepareCopyFiles)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.copy;
prepare.copy.files;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsPrepareCopyArchive)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.copy;
prepare.copy.archive;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsPrepareFileHashes)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.hash;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsPrepareGenerateFiles)">
<Properties>
</Properties>
<Groups>
prepare;
prepare.generate;
prepare.generate.files;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<!--
<TestStepsToExecute Include="$(TestStepsIntegrationPester)">
<Properties>
</Properties>
<Groups>
test;
test.pester;
test.pester.integration;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
-->
<TestStepsToExecute Include="$(TestStepsPackIso)">
<Properties>
Configuration=$(ProductionConfiguration);
Platform=$(Platform)
</Properties>
<Groups>
test;
test.iso;
test.iso.integration;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
<TestStepsToExecute Include="$(TestStepsIntegrationPacker)">
<Properties>
</Properties>
<Groups>
test;
test.packer;
test.packer.integration;
</Groups>
<PreSteps>
</PreSteps>
<PostSteps>
</PostSteps>
</TestStepsToExecute>
</ItemGroup>
<!--
Define the scripts that should be executed when any one of the test steps fails.
Steps can be defined by providing the path to the MsBuild script that should be executed
for that step, e.g. adding a test step that points to the 'c:\stuff\MyCoolScript.msbuild' will execute
that script.
Any properties defined by the 'Properties' section are pushed up.
-->
<ItemGroup Condition=" '$(ShouldLoadTestFailureStepsToExecute)' == 'true' ">
<!--
<TestFailureStepsToExecute Include="">
<Properties>
</Properties>
</TestFailureStepsToExecute>
-->
</ItemGroup>
<!--
The following item group stores metadata describing the custom test steps that are executed in the test process.
By providing this metadata it is possible for pre- and post-step actions to more clearly determine which step
they were attached to.
-->
<ItemGroup Condition=" '$(ShouldLoadAvailableStepMetadata)' == 'true' ">
<!--
<AvailableStepMetadata Include="$([System.IO.Path]::GetFileName('$(DirWorkspace)\my.test.step.msbuild'))">
<Description>
The description for my cool test step
</Description>
<Id></Id>
<Name>My test step</Name>
<Path>$(DirWorkspace)\my.test.step.msbuild</Path>
</AvailableStepMetadata>
-->
</ItemGroup>
<!--
*****************************************
* *
* TOOLS-OPS SPECIFIC SETTINGS *
* *
*****************************************
-->
<PropertyGroup>
<OpsConfigurationVersion>0.2</OpsConfigurationVersion>
</PropertyGroup>
</Project>