-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild-dms.ps1
454 lines (383 loc) · 13.4 KB
/
build-dms.ps1
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
# SPDX-License-Identifier: Apache-2.0
# Licensed to the Ed-Fi Alliance under one or more agreements.
# The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
# See the LICENSE and NOTICES files in the project root for more information.
[CmdLetBinding()]
<#
.SYNOPSIS
Automation script for running build operations from the command line.
.DESCRIPTION
Provides automation of the following tasks:
* Clean: runs `dotnet clean`
* Build: runs `dotnet build` with several implicit steps
(clean, restore, inject version information).
* UnitTest: executes NUnit tests in projects named `*.UnitTests`, which
do not connect to a database.
* E2ETest: executes NUnit tests in projects named `*.E2ETests`, which
runs the API in an isolated Docker environment and executes API Calls .
* IntegrationTest: executes NUnit test in projects named `*.IntegrationTests`,
which connect to a database.
* BuildAndPublish: build and publish with `dotnet publish`
* Package: builds pre-release and release NuGet packages for the Dms API application.
* Push: uploads a NuGet package to the NuGet feed.
* DockerBuild: builds a Docker image from source code
* DockerRun: runs the Docker image that was built from source code
* Run: starts the application
.EXAMPLE
.\build-dms.ps1 build -Configuration Release -Version "2.0" -BuildCounter 45
Overrides the default build configuration (Debug) to build in release
mode with assembly version 2.0.45.
.EXAMPLE
.\build-dms.ps1 unittest
Output: test results displayed in the console and saved to XML files.
.EXAMPLE
.\build-dms.ps1 push -NuGetApiKey $env:nuget_key
#>
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', '', Justification = 'False positive')]
param(
# Command to execute, defaults to "Build".
[string]
[ValidateSet("Clean", "Build", "BuildAndPublish", "UnitTest", "E2ETest", "IntegrationTest", "Coverage", "Package", "Push", "DockerBuild", "DockerRun", "Run")]
$Command = "Build",
# Assembly and package version number for the Data Management Service. The
# current package number is configured in the build automation tool and
# passed to this script.
[string]
$DMSVersion = "0.1",
# .NET project build configuration, defaults to "Debug". Options are: Debug, Release.
[string]
[ValidateSet("Debug", "Release")]
$Configuration = "Debug",
[bool]
$DryRun = $false,
# Ed-Fi's official NuGet package feed for package download and distribution.
[string]
$EdFiNuGetFeed = "https://pkgs.dev.azure.com/ed-fi-alliance/Ed-Fi-Alliance-OSS/_packaging/EdFi/nuget/v3/index.json",
# API key for accessing the feed above. Only required with with the Push
# command.
[string]
$NuGetApiKey,
# Full path of a package file to push to the NuGet feed. Optional, only
# applies with the Push command. If not set, then the script looks for a
# NuGet package corresponding to the provided $DMSVersion and $BuildCounter.
[string]
$PackageFile,
# Only required with local builds and testing.
[switch]
$IsLocalBuild,
# Only required with E2E testing.
[switch]
$EnableOpenSearch,
# Only required with E2E testing.
[switch]
$EnableElasticSearch
)
$solutionRoot = "$PSScriptRoot/src/dms"
$defaultSolution = "$solutionRoot/EdFi.DataManagementService.sln"
$applicationRoot = "$solutionRoot/frontend"
$backendRoot = "$solutionRoot/backend"
$projectName = "EdFi.DataManagementService.Frontend.AspNetCore"
$installerProjectName = "EdFi.DataManagementService.Backend.Installer"
$packageName = "EdFi.DataManagementService"
$testResults = "$PSScriptRoot/TestResults"
#Coverage
$thresholdCoverage = 58
$coverageOutputFile = "coverage.cobertura.xml"
$targetDir = "coveragereport"
$maintainers = "Ed-Fi Alliance, LLC and contributors"
Import-Module -Name "$PSScriptRoot/eng/build-helpers.psm1" -Force
function DotNetClean {
Invoke-Execute { dotnet clean $defaultSolution -c $Configuration --nologo -v minimal }
}
function Restore {
Invoke-Execute { dotnet restore $defaultSolution }
}
function SetDMSAssemblyInfo {
Invoke-Execute {
$assembly_version = $DMSVersion
Invoke-RegenerateFile "$solutionRoot/Directory.Build.props" @"
<Project>
<!-- This file is generated by the build script. -->
<PropertyGroup>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<ErrorLog>results.sarif,version=2.1</ErrorLog>
<Product>Ed-Fi Data Management Service</Product>
<Authors>$maintainers</Authors>
<Company>$maintainers</Company>
<Copyright>Copyright © ${(Get-Date).year)} Ed-Fi Alliance</Copyright>
<VersionPrefix>$assembly_version</VersionPrefix>
<VersionSuffix></VersionSuffix>
</PropertyGroup>
</Project>
"@
}
}
function Compile {
Invoke-Execute {
dotnet build $defaultSolution -c $Configuration --nologo --no-restore
}
}
function PublishApi {
Invoke-Execute {
$project = "$applicationRoot/$projectName/"
$outputPath = "$project/publish"
dotnet publish $project -c $Configuration -o $outputPath --nologo
}
}
function PublishBackendInstaller {
Invoke-Execute {
$installerProject = "$backendRoot/$installerProjectName/"
$outputPath = "$installerProject/publish"
dotnet publish $installerProject -c $Configuration -o $outputPath --nologo
}
}
function SetQueryHandler {
param (
# E2E test directory
[string]
$E2EDirectory
)
$appSettingsPath = Join-Path -Path $E2EDirectory -ChildPath "appsettings.json"
$json = Get-Content $appSettingsPath -Raw | ConvertFrom-Json
if ($EnableOpenSearch -or $EnableElasticSearch) {
$json.QueryHandler = "opensearch"
}
else {
$json.QueryHandler = "postgresql"
}
$json | ConvertTo-Json -Depth 32 | Set-Content $appSettingsPath
}
function RunTests {
param (
# File search filter
[string]
$Filter
)
$testAssemblyPath = "$solutionRoot/*/$Filter/bin/$Configuration/"
$testAssemblies = Get-ChildItem -Path $testAssemblyPath -Filter "$Filter.dll" -Recurse
if ($testAssemblies.Length -eq 0) {
Write-Output "no test assemblies found in $testAssemblyPath"
}
Write-Output "Tests Assemblies List"
Write-Output $testAssemblies
Write-Output "End Tests Assemblies List"
$testAssemblies | ForEach-Object {
Write-Output "Executing: dotnet test $($_)"
$target = $_.FullName
if ($Filter.Equals("*.Tests.Unit")) {
Invoke-Execute {
# Execution with coverlet to generate code coverage analysis
coverlet $($_) `
--target dotnet --targetargs "test $target --logger:console --logger:trx --nologo --blame"`
--threshold $thresholdCoverage `
--threshold-type line `
--threshold-type branch `
--threshold-stat total `
--format json `
--format cobertura `
--merge-with "coverage.json"
}
}
else {
$fileNameNoExt = $_.Name.subString(0, $_.Name.length - 4)
$trx = "$testResults/$fileNameNoExt"
# Set Query Handler for E2E tests
if ($Filter -like "*E2E*") {
$dirPath = Split-Path -parent $($_)
SetQueryHandler($dirPath)
}
Invoke-Execute {
dotnet test $target `
--logger "trx;LogFileName=$trx.trx" `
--logger "console" `
--nologo
}
}
}
}
function UnitTests {
Invoke-Execute { RunTests -Filter "*.Tests.Unit" }
}
function IntegrationTests {
Invoke-Execute { RunTests -Filter "*.Test.Integration" }
}
function RunE2E {
Invoke-Execute { RunTests -Filter "*.Tests.E2E" }
}
function E2ETests {
Invoke-Step { DockerBuild }
# Clean up all the containers and volumes
Invoke-Execute {
try {
Push-Location eng/docker-compose/
./start-local-dms.ps1 -d -v
./start-local-dms.ps1 -SearchEngine "ElasticSearch" -d -v
}
finally {
Pop-Location
}
}
if ($EnableOpenSearch) {
Invoke-Execute {
try {
Push-Location eng/docker-compose/
./start-local-dms.ps1 -EnvironmentFile "./.env.e2e" -r
}
finally {
Pop-Location
}
}
}
elseif ($EnableElasticSearch) {
Invoke-Execute {
try {
Push-Location eng/docker-compose/
./start-local-dms.ps1 -EnvironmentFile "./.env.e2e" -SearchEngine "ElasticSearch" -r
}
finally {
Pop-Location
}
}
}
else {
Invoke-Step { DockerRun }
}
Invoke-Step { RunE2E }
}
function RunNuGetPack {
param (
[string]
$ProjectPath,
[string]
$PackageVersion,
[string]
$nuspecPath
)
$copyrightYear = ${(Get-Date).year)}
# NU5100 is the warning about DLLs outside of a "lib" folder. We're
# deliberately using that pattern, therefore we bypass the
# warning.
dotnet pack $ProjectPath `
--no-build `
--no-restore `
--output $PSScriptRoot `
-p:NuspecFile=$nuspecPath `
-p:NuspecProperties="version=$PackageVersion;year=$copyrightYear" `
/p:NoWarn=NU5100
}
function BuildPackage {
$mainPath = "$applicationRoot/$projectName"
$projectPath = "$mainPath/$projectName.csproj"
$nugetSpecPath = "$mainPath/publish/$projectName.nuspec"
RunNuGetPack -ProjectPath $projectPath -PackageVersion $DMSVersion $nugetSpecPath
}
function Invoke-Build {
Invoke-Step { DotNetClean }
Invoke-Step { Restore }
Invoke-Step { Compile }
}
function Invoke-SetAssemblyInfo {
Write-Output "Setting Assembly Information"
Invoke-Step { SetDMSAssemblyInfo }
}
function Invoke-Publish {
Write-Output "Building Version ($DMSVersion)"
Invoke-Step { PublishApi }
Invoke-Step { PublishBackendInstaller }
}
function Invoke-Clean {
Invoke-Step { DotNetClean }
}
function Invoke-TestExecution {
param (
[ValidateSet("E2ETests", "UnitTests", "IntegrationTests",
ErrorMessage = "Please specify a valid Test Type name from the list.",
IgnoreCase = $true)]
# File search filter
[string]
$Filter,
[switch]
$EnableOpenSearch,
[switch]
$EnableElasticSearch
)
switch ($Filter) {
E2ETests { Invoke-Step { E2ETests -EnableOpenSearch:$EnableOpenSearch -EnableElasticSearch:$EnableElasticSearch } }
UnitTests { Invoke-Step { UnitTests } }
IntegrationTests { Invoke-Step { IntegrationTests } }
Default { "Unknown Test Type" }
}
}
function Invoke-Coverage {
reportgenerator -reports:"$coverageOutputFile" -targetdir:"$targetDir" -reporttypes:Html
}
function Invoke-BuildPackage {
Invoke-Step { BuildPackage }
}
function PushPackage {
Invoke-Execute {
if (-not $NuGetApiKey) {
throw "Cannot push a NuGet package without providing an API key in the `NuGetApiKey` argument."
}
if (-not $EdFiNuGetFeed) {
throw "Cannot push a NuGet package without providing a feed in the `EdFiNuGetFeed` argument."
}
if (-not $PackageFile) {
$PackageFile = "$PSScriptRoot/$packageName.$DMSVersion.nupkg"
}
if ($DryRun) {
Write-Info "Dry run enabled, not pushing package."
}
else {
Write-Info ("Pushing $PackageFile to $EdFiNuGetFeed")
dotnet nuget push $PackageFile --api-key $NuGetApiKey --source $EdFiNuGetFeed
}
}
}
function Invoke-PushPackage {
Invoke-Step { PushPackage }
}
$dockerTagBase = "local"
$dockerTagDMS = "$($dockerTagBase)/data-management-service"
function DockerBuild {
Push-Location src/dms/
&docker buildx build -t $dockerTagDMS -f Dockerfile . --build-context parentdir=../
Pop-Location
}
function DockerRun {
&docker run --rm -p 8080:8080 --env-file ./src/dms/.env -d $dockerTagDMS
}
function Run {
Push-Location src/dms
try {
dotnet run --no-build --no-restore --project ./frontend/EdFi.DataManagementService.Frontend.AspNetCore
}
finally {
Pop-Location
}
}
Invoke-Main {
if ($IsLocalBuild) {
$nugetExePath = Install-NugetCli
Set-Alias nuget $nugetExePath -Scope Global -Verbose
}
switch ($Command) {
Clean { Invoke-Clean }
Build { Invoke-Build }
BuildAndPublish {
Invoke-SetAssemblyInfo
Invoke-Build
Invoke-Publish
}
UnitTest { Invoke-TestExecution UnitTests }
E2ETest { Invoke-TestExecution E2ETests -EnableOpenSearch:$EnableOpenSearch -EnableElasticSearch:$EnableElasticSearch }
IntegrationTest { Invoke-TestExecution IntegrationTests }
Coverage { Invoke-Coverage }
Package { Invoke-BuildPackage }
Push { Invoke-PushPackage }
DockerBuild { Invoke-Step { DockerBuild } }
DockerRun { Invoke-Step { DockerRun } }
Run { Invoke-Step { Run } }
default { throw "Command '$Command' is not recognized" }
}
}