forked from Ed-Fi-Alliance-OSS/AdminAPI-2.x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ps1
522 lines (431 loc) · 16.3 KB
/
build.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
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
# 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.
* IntegrationTest: executes NUnit tests in projects named `*.Test`,
which connect to a database. Includes drop and deploy operations for
installing fresh test databases.
* BuildAndTest: executes the Build, UnitTest, and IntegrationTest
commands.
* Package: builds pre-release and release NuGet packages for the Admin
App web application.
* Push: uploads a NuGet package to the NuGet feed.
* BuildAndDeployToAdminApiDockerContainer: runs the build operation, update the appsettings.json with provided
DockerEnvValues and copy over the latest files to existing AdminApi docker container for testing.
.EXAMPLE
.\build.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.ps1 unittest
Output: test results displayed in the console and saved to XML files.
.EXAMPLE
.\build.ps1 integrationtest
Output: test results displayed in the console and saved to XML files.
.EXAMPLE
.\build.ps1 push -NuGetApiKey $env:nuget_key
.EXAMPLE
$p = @{
ProductionApiUrl = "http://api"
ApiExternalUrl = "https://localhost:5001"
AppStartup = "OnPrem"
XsdFolder = "/app/Schema"
ApiStartupType = "SharedInstance"
DatabaseEngine = "PostgreSql"
BulkUploadHashCache = "/app/BulkUploadHashCache/"
EncryptionKey = "<Generated encryption key>"
AdminDB = "host=db-admin;port=5432;username=username;password=password;database=EdFi_Admin;Application Name=EdFi.Ods.AdminApi;"
SecurityDB = "host=db-admin;port=5432;username=username;password=password;database=EdFi_Security;Application Name=EdFi.Ods.AdminApi;"
}
.\build.ps1 -Version "2.1" -Configuration Release -DockerEnvValues $p -Command BuildAndDeployToAdminApiDockerContainer
#>
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', '', Justification = 'False positive')]
param(
# Command to execute, defaults to "Build".
[string]
[ValidateSet("Clean", "Build", "BuildAndPublish", "UnitTest", "IntegrationTest", "PackageApi"
, "Push", "BuildAndTest", "BuildAndDeployToAdminApiDockerContainer"
, "BuildAndRunAdminApiDevDocker", "RunAdminApiDevDockerContainer", "RunAdminApiDevDockerCompose", "Run", "CopyToDockerContext", "RemoveDockerContextFiles")]
$Command = "Build",
# Assembly and package version number for Admin API. The current package number is
# configured in the build automation tool and passed to this script.
[string]
$APIVersion = "0.1",
# .NET project build configuration, defaults to "Debug". Options are: Debug, Release.
[string]
[ValidateSet("Debug", "Release")]
$Configuration = "Debug",
# 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 $APIVersion and $BuildCounter.
[string]
$PackageFile,
# Environment values for updating the appsettings on existing AdminApi docker container.
# Only required with the BuildAndDeployToAdminApiDockerContainer or BuildAndDeployToAdminApiDockerContainer commands.
[hashtable]
$DockerEnvValues,
# Only required with the Run command.
[string]
[ValidateSet("EdFi.Ods.AdminApi (Dev)", "EdFi.Ods.AdminApi (Prod)", "EdFi.Ods.AdminApi (Docker)", "IIS Express")]
$LaunchProfile,
# Only required with local builds and testing.
[switch]
$IsLocalBuild
)
$Env:MSBUILDDISABLENODEREUSE = "1"
$solutionRoot = "$PSScriptRoot/Application"
$dockerRoot = "$PSScriptRoot/Docker"
$supportedApiVersions = @(
@{
OdsPackageName = "EdFi.RestApi.Databases.EFA"
OdsVersion = "3.4.0"
Prerelease = $false
},
@{
OdsPackageName = "EdFi.Suite3.RestApi.Databases"
OdsVersion = "5.3.659"
Prerelease = $false
}
)
$maintainers = "Ed-Fi Alliance, LLC and contributors"
$appCommonPackageName = "EdFi.Installer.AppCommon"
$appCommonPackageVersion = "3.0.0"
Import-Module -Name "$PSScriptRoot/eng/build-helpers.psm1" -Force
Import-Module -Name "$PSScriptRoot/eng/package-manager.psm1" -Force
Import-Module -Name "$PSScriptRoot/eng/database-manager.psm1" -Force
function DotNetClean {
Invoke-Execute { dotnet clean $solutionRoot -c $Configuration --nologo -v minimal }
}
function InitializeNuGet {
Invoke-Execute { $script:nugetExe = Install-NugetCli }
}
function Restore {
Invoke-Execute { dotnet restore $solutionRoot }
}
function SetAdminApiAssemblyInfo {
Invoke-Execute {
$assembly_version = $APIVersion
Invoke-RegenerateFile "$solutionRoot/EdFi.Ods.AdminApi/Directory.Build.props" @"
<Project>
<!-- This file is generated by the build script. -->
<PropertyGroup>
<Product>Ed-Fi ODS Admin API</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 $solutionRoot -c $Configuration --nologo --no-restore
}
}
function PublishAdminApi {
Invoke-Execute {
$project = "$solutionRoot/EdFi.Ods.AdminApi/"
$outputPath = "$project/publish"
dotnet publish $project -c $Configuration /p:EnvironmentName=Production -o $outputPath --no-build --nologo
}
}
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"
}
$testAssemblies | ForEach-Object {
Write-Output "Executing: dotnet test $($_)"
Invoke-Execute {
dotnet test $_ `
--logger "trx;LogFileName=$($_).trx" `
--nologo
}
}
}
function UnitTests {
Invoke-Execute { RunTests -Filter "*.UnitTests" }
}
function ResetTestDatabases {
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseDeclaredVarsMoreThanAssignments', 'unused', Justification = 'False positive')]
param (
[string]
$OdsPackageName,
[string]
$OdsVersion,
[switch]
$Prerelease
)
Invoke-Execute {
$arguments = @{
RestApiPackageVersion = $OdsVersion
RestApiPackageName = $OdsPackageName
UseIntegratedSecurity = $true
RestApiPackagePrerelease = $Prerelease
NuGetFeed = $EdFiNuGetFeed
}
Invoke-PrepareDatabasesForTesting @arguments
}
}
function IntegrationTests {
Invoke-Execute { RunTests -Filter "*.DBTests" }
}
function RunNuGetPack {
param (
[string]
$ProjectPath,
[string]
$PackageVersion,
[string]
$nuspecPath
)
# NU5100 is the warning about DLLs outside of a "lib" folder. We're
# deliberately using that pattern, therefore we don't care about the
# warning.
dotnet pack $ProjectPath --output $PSScriptRoot -p:NuspecFile=$nuspecPath -p:NuspecProperties="version=$PackageVersion" /p:NoWarn=NU5100
}
function NewDevCertificate {
Invoke-Command { dotnet dev-certs https -c }
if ($lastexitcode) {
Write-Output "Generating a new Dev Certificate"
Invoke-Execute { dotnet dev-certs https --clean }
Invoke-Execute { dotnet dev-certs https -t }
}
else {
Write-Output "Dev Certificate already exists"
}
}
function AddAppCommonPackageForInstaller {
$project = "EdFi.Ods.AdminApi"
$mainPath = "$solutionRoot/$project"
$destinationPath = "$mainPath/publish"
$arguments = @{
AppCommonPackageName = $appCommonPackageName
AppCommonPackageVersion = $appCommonPackageVersion
NuGetFeed = $EdFiNuGetFeed
DestinationPath = $destinationPath
}
Add-AppCommon @arguments
}
function BuildApiPackage {
$project = "EdFi.Ods.AdminApi"
$mainPath = "$solutionRoot/$project"
$projectPath = "$mainPath/$project.csproj"
$nugetSpecPath = "$mainPath/publish/$project.nuspec"
RunNuGetPack -ProjectPath $projectPath -PackageVersion $APIVersion $nugetSpecPath
}
function Invoke-Build {
Invoke-Step { DotNetClean }
Invoke-Step { Restore }
Invoke-Step { Compile }
}
function Invoke-SetAssemblyInfo {
Write-Output "Setting Assembly Information"
Invoke-Step { SetAdminApiAssemblyInfo }
}
function Invoke-Publish {
Write-Output "Building Version AdminApi ($APIVersion)"
Invoke-Step { PublishAdminApi }
}
function Invoke-Run {
Write-Output "Running Admin API"
Invoke-Step { NewDevCertificate }
$projectFilePath = "$solutionRoot/EdFi.Ods.AdminApi"
if ([string]::IsNullOrEmpty($LaunchProfile)) {
Write-Error "LaunchProfile parameter is required for running Admin Api. Please " +
"specify the LaunchProfile parameter. Valid values include ""EdFi.Ods.AdminApi (Dev)""" +
", ""EdFi.Ods.AdminApi (Prod)"", ""EdFi.Ods.AdminApi (Docker)"", and ""IIS Express"""
}
else {
Invoke-Execute { dotnet run --project $projectFilePath --launch-profile $LaunchProfile }
}
}
function Invoke-Clean {
Invoke-Step { DotNetClean }
}
function Invoke-UnitTestSuite {
Invoke-Step { UnitTests }
}
function Invoke-IntegrationTestSuite {
Invoke-Step { InitializeNuGet }
$supportedApiVersions | ForEach-Object {
Write-Output "Running Integration Tests for ODS Version" $_.OdsVersion
Invoke-Step {
$arguments = @{
OdsVersion = $_.OdsVersion
OdsPackageName = $_.OdsPackageName
Prerelease = $_.Prerelease
}
ResetTestDatabases @arguments
}
Invoke-Step {
IntegrationTests
}
}
}
function Invoke-BuildApiPackage {
Invoke-Step { AddAppCommonPackageForInstaller }
Invoke-Step { BuildApiPackage }
}
function Invoke-BuildDatabasePackage {
Invoke-Step { BuildDatabasePackage }
}
function UpdateAppSettingsForAdminApiDocker {
$filePath = "$solutionRoot/EdFi.Ods.AdminApi/publish/appsettings.json"
$json = (Get-Content -Path $filePath) | ConvertFrom-Json
$json.AppSettings.ProductionApiUrl = $DockerEnvValues["ProductionApiUrl"]
$json.AppSettings.ApiExternalUrl = $DockerEnvValues["ApiExternalUrl"]
$json.AppSettings.ApiStartupType = $DockerEnvValues["ApiStartupType"]
$json.AppSettings.DatabaseEngine = $DockerEnvValues["DatabaseEngine"]
$json.AppSettings.PathBase = $DockerEnvValues["PathBase"]
$json.Authentication.IssuerUrl = $DockerEnvValues["IssuerUrl"]
$json.Authentication.SigningKey = $DockerEnvValues["SigningKey"]
$json.ConnectionStrings.Admin = $DockerEnvValues["AdminDB"]
$json.ConnectionStrings.Security = $DockerEnvValues["SecurityDB"]
$json.Log4NetCore.Log4NetConfigFileName = "./log4net.config"
$json | ConvertTo-Json -Depth 10 | Set-Content $filePath
}
function CopyLatestFilesToAdminApiContainer {
$source = "$solutionRoot/EdFi.Ods.AdminApi/publish/."
&docker cp $source adminapi:/app/AdminApi
}
function RestartAdminApiContainer {
&docker restart adminapi
}
function BuildAdminApiDevDockerImage {
&docker build -t adminapi-dev --no-cache -f "$dockerRoot/dev.Dockerfile" .
}
function RunAdminApiDevDockerContainer {
&docker run --env-file "$solutionRoot/EdFi.Ods.AdminApi/.env" -p 80:80 -v "$dockerRoot/Settings/ssl:/ssl/" adminapi-dev
}
function RunAdminApiDevDockerCompose {
&docker compose -f "$dockerRoot/Compose/pgsql/compose-build-dev.yml" --env-file "$solutionRoot/EdFi.Ods.AdminApi/E2E Tests/gh-action-setup/.automation.env" -p "ods_admin_api" up -d
}
function PushPackage {
if (-not $NuGetApiKey) {
throw "Cannot push a NuGet package without providing an API key in the `NuGetApiKey` argument."
}
if (-not $PackageFile) {
$PackageFile = "$PSScriptRoot/EdFi.Suite3.ODS.AdminApi.$APIVersion.nupkg"
}
$arguments = @{
PackageFile = $PackageFile
NuGetApiKey = $NuGetApiKey
NuGetFeed = $EdFiNuGetFeed
}
Invoke-Execute { Push-Package @arguments }
}
function Invoke-AdminApiDockerDeploy {
Invoke-Step { UpdateAppSettingsForAdminApiDocker }
Invoke-Step { CopyLatestFilesToAdminApiContainer }
Invoke-Step { RestartAdminApiContainer }
}
function Invoke-BuildAdminApiDevDockerImage {
Invoke-Step { BuildAdminApiDevDockerImage }
}
function Invoke-RunAdminApiDevDockerContainer {
Invoke-Step { RunAdminApiDevDockerContainer }
}
function Invoke-RunAdminApiDevDockerCompose {
Invoke-Step { RunAdminApiDevDockerCompose }
}
function Invoke-PushPackage {
Invoke-Step { PushPackage }
}
function CopyTempFilesToDockerContext {
New-Item -Path "$dockerRoot/Application" -ItemType Directory
$sourceAdminApi = "$solutionRoot/EdFi.Ods.AdminApi/"
$destinationAdminApi = "$dockerRoot/Application/"
Copy-Item -Path $sourceAdminApi -Destination $destinationAdminApi -Recurse
$sourceNugetConfig = "$solutionRoot/NuGet.Config"
$destinationNugetConfig = "$dockerRoot/Application/"
Copy-Item -Path $sourceNugetConfig -Destination $destinationNugetConfig -Recurse
}
function Invoke-CopyTempFilesToDockerContext {
Invoke-Step { CopyTempFilesToDockerContext }
}
function RemoveDockerContextTempFiles {
$destinationApplication = "$dockerRoot/Application/"
if (Test-Path $destinationApplication) {
Remove-Item $destinationApplication -Recurse -Force
}
}
function Invoke-RemoveDockerContextTempFiles {
Invoke-Step { RemoveDockerContextTempFiles }
}
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
}
Run { Invoke-Run }
UnitTest { Invoke-UnitTestSuite }
IntegrationTest { Invoke-IntegrationTestSuite }
BuildAndTest {
Invoke-Build
Invoke-UnitTestSuite
Invoke-IntegrationTestSuite
}
Package { Invoke-BuildPackage }
PackageApi { Invoke-BuildApiPackage }
Push { Invoke-PushPackage }
BuildAndDeployToAdminApiDockerContainer {
Invoke-Build
Invoke-AdminApiDockerDeploy
}
BuildAndRunAdminApiDevDocker{
Invoke-BuildAdminApiDevDockerImage
Invoke-RunAdminApiDevDockerContainer
}
RunAdminApiDevDockerContainer{
Invoke-RunAdminApiDevDockerContainer
}
RunAdminApiDevDockerCompose{
Invoke-RunAdminApiDevDockerCompose
}
CopyToDockerContext{
Invoke-RemoveDockerContextTempFiles
Invoke-CopyTempFilesToDockerContext
}
RemoveDockerContextFiles{
Invoke-RemoveDockerContextTempFiles
}
default { throw "Command '$Command' is not recognized" }
}
}