forked from Ed-Fi-Alliance-OSS/Ed-Fi-ODS-AdminApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ps1
467 lines (384 loc) · 14.7 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
# 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.
* BuildAndDeployToAdminAppDockerContainer: runs the build operation, update the appsettings.json with provided
DockerEnvValues and copy over the latest files to existing AdminApp 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"
ApiStartupType = "SharedInstance"
DatabaseEngine = "PostgreSql"
EncryptionKey = "<Generated encryption key>"
AdminDB = "host=db-admin;port=5432;username=username;password=password;database=EdFi_Admin;Application Name=EdFi.Ods.AdminApp;"
SecurityDB = "host=db-admin;port=5432;username=username;password=password;database=EdFi_Security;Application Name=EdFi.Ods.AdminApp;"
ProductionOdsDB = "host=db-ods;port=5432;username=username;password=password;database=EdFi_{0};Application Name=EdFi.Ods.AdminApp;"
}
.\build.ps1 -Version "2.1" -Configuration Release -DockerEnvValues $p -Command BuildAndDeployToAdminAppDockerContainer
#>
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', '', Justification = 'False positive')]
param(
# Command to execute, defaults to "Build".
[string]
[ValidateSet("Clean", "Build", "BuildAndPublish", "UnitTest", "IntegrationTest", "Package", "PackageDatabase", "Push", "BuildAndTest", "BuildAndDeployToAdminAppDockerContainer", "Run")]
$Command = "Build",
# Assembly and package version number for AdminApp Web. The current package number is
# configured in the build automation tool and passed to this script.
[string]
$Version = "0.1.0",
# .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 $Version and $BuildCounter.
[string]
$PackageFile,
# Environment values for updating the appsettings on existing AdminApp docker container.
# Only required with the BuildAndDeployToAdminAppDockerContainer or BuildAndDeployToAdminApiDockerContainer commands.
[hashtable]
$DockerEnvValues,
# Only required with the Run command.
[string]
[ValidateSet("mssql-district", "mssql-shared", "mssql-year", "pg-district", "pg-shared", "pg-year")]
$LaunchProfile,
# Only required with local builds and testing.
[switch]
$IsLocalBuild
)
$Env:MSBUILDDISABLENODEREUSE = "1"
$solutionRoot = "$PSScriptRoot/Application"
$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.1.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 Clean {
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 SetAdminAppAssemblyInfo {
Invoke-Execute {
$assembly_version = $Version
Invoke-RegenerateFile "$solutionRoot/Directory.Build.props" @"
<Project>
<!-- This file is generated by the build script. -->
<PropertyGroup>
<Product>Ed-Fi ODS Admin App</Product>
<Authors>$maintainers</Authors>
<Company>$maintainers</Company>
<Copyright>Copyright © 2016 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 PublishAdminApp {
Invoke-Execute {
$project = "$solutionRoot/EdFi.Ods.AdminApp.Web/"
$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 `
--no-build
}
}
}
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 "*.Tests" }
}
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" -ForegroundColor Magenta
Invoke-Execute { dotnet dev-certs https --clean }
Invoke-Execute { dotnet dev-certs https -t }
}
else {
Write-Output "Dev Certificate already exists" -ForegroundColor Magenta
}
}
function AddAppCommonPackageForInstaller {
$project = "EdFi.Ods.AdminApp.Web"
$mainPath = "$solutionRoot/$project"
$destinationPath = "$mainPath/publish"
$arguments = @{
AppCommonPackageName = $appCommonPackageName
AppCommonPackageVersion = $appCommonPackageVersion
NuGetFeed = $EdFiNuGetFeed
DestinationPath = $destinationPath
}
Add-AppCommon @arguments
}
function BuildDatabasePackage {
$project = "EdFi.Ods.AdminApp.Web"
$mainPath = "$solutionRoot/$project"
$projectPath = "$mainPath/$project.csproj"
$nugetSpecPath = "$mainPath/publish/EdFi.Ods.AdminApp.Database.nuspec"
RunNuGetPack -ProjectPath $projectPath -PackageVersion $Version $nugetSpecPath
}
function BuildAdminAppPackage {
$project = "EdFi.Ods.AdminApp.Web"
$mainPath = "$solutionRoot/$project"
$projectPath = "$mainPath/$project.csproj"
$nugetSpecPath = "$mainPath/publish/$project.nuspec"
RunNuGetPack -ProjectPath $projectPath -PackageVersion $Version $nugetSpecPath
}
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.Ods.AdminApp.Web.$(GetPackageVersion).nupkg"
}
$arguments = @{
PackageFile = $PackageFile
NuGetApiKey = $NuGetApiKey
NuGetFeed = $EdFiNuGetFeed
}
Invoke-Execute { Push-Package @arguments }
}
function Invoke-Build {
Invoke-Step { Clean }
Invoke-Step { Restore }
Invoke-Step { Compile }
}
function Invoke-SetAssemblyInfo {
Write-Output "Setting Assembly Information" -ForegroundColor Cyan
Invoke-Step { SetAdminAppAssemblyInfo }
}
function Invoke-Publish {
Write-Output "Building Version AdminApp ($Version)" -ForegroundColor Cyan
Invoke-Step { PublishAdminApp }
}
function Invoke-Run {
Write-Output "Running Admin App" -ForegroundColor Cyan
Invoke-Step { NewDevCertificate }
$projectFilePath = "$solutionRoot/EdFi.Ods.AdminApp.Web"
if ([string]::IsNullOrEmpty($LaunchProfile)) {
Write-Output "LaunchProfile parameter is required for running Admin App. Please specify the LaunchProfile parameter. Valid values include 'mssql-district', 'mssql-shared', 'mssql-year', 'pg-district', 'pg-shared' and 'pg-year'" -ForegroundColor Red
}
else {
Invoke-Execute { dotnet run --project $projectFilePath --launch-profile $LaunchProfile }
}
}
function Invoke-Clean {
Invoke-Step { Clean }
}
function Invoke-UnitTestSuite {
Invoke-Step { UnitTests }
}
function Invoke-IntegrationTestSuite {
Invoke-Step { InitializeNuGet }
$supportedApiVersions | ForEach-Object {
Write-Output "Running Integration Tests for ODS Version" $_.OdsVersion -ForegroundColor Cyan
Invoke-Step {
$arguments = @{
OdsVersion = $_.OdsVersion
OdsPackageName = $_.OdsPackageName
Prerelease = $_.Prerelease
}
ResetTestDatabases @arguments
}
Invoke-Step {
IntegrationTests
}
}
}
function Invoke-BuildPackage {
Invoke-Step { AddAppCommonPackageForInstaller }
Invoke-Step { BuildAdminAppPackage }
}
function Invoke-BuildDatabasePackage {
Invoke-Step { BuildDatabasePackage }
}
function Invoke-PushPackage {
Invoke-Step { PushPackage }
}
function UpdateAppSettingsForAdminAppDocker {
$filePath = "$solutionRoot/EdFi.Ods.AdminApp.Web/publish/appsettings.json"
$json = (Get-Content -Path $filePath) | ConvertFrom-Json
$json.AppSettings.ProductionApiUrl = $DockerEnvValues["ProductionApiUrl"]
$json.AppSettings.ApiExternalUrl = $DockerEnvValues["ApiExternalUrl"]
$json.AppSettings.AppStartup = $DockerEnvValues["AppStartup"]
$json.AppSettings.ApiStartupType = $DockerEnvValues["ApiStartupType"]
$json.AppSettings.DatabaseEngine = $DockerEnvValues["DatabaseEngine"]
$json.AppSettings.PathBase = $DockerEnvValues["PathBase"]
if ($null -eq $json.AppSettings.EncryptionKey) {
$json.AppSettings | Add-Member -NotePropertyName EncryptionKey -NotePropertyValue $DockerEnvValues["EncryptionKey"]
}
else
{
$json.AppSettings.EncryptionKey = $DockerEnvValues["EncryptionKey"]
}
$json.ConnectionStrings.Admin = $DockerEnvValues["AdminDB"]
$json.ConnectionStrings.Security = $DockerEnvValues["SecurityDB"]
$json.ConnectionStrings.ProductionOds = $DockerEnvValues["ProductionOdsDB"]
$json.Log4NetCore.Log4NetConfigFileName = "./log4net.config"
$json | ConvertTo-Json -Depth 10 | Set-Content $filePath
}
function CopyLatestFilesToAdminAppContainer {
$source = "$solutionRoot/EdFi.Ods.AdminApp.Web/publish/."
docker cp $source ed-fi-ods-adminapp:/app
}
function RestartAdminAppContainer {
&docker restart ed-fi-ods-adminapp
}
function Invoke-AdminAppDockerDeploy {
Invoke-Step { UpdateAppSettingsForAdminAppDocker }
Invoke-Step { CopyLatestFilesToAdminAppContainer }
Invoke-Step { RestartAdminAppContainer }
}
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 }
PackageDatabase { Invoke-BuildDatabasePackage }
Push { Invoke-PushPackage }
BuildAndDeployToAdminAppDockerContainer {
Invoke-Build
Invoke-AdminAppDockerDeploy
}
default { throw "Command '$Command' is not recognized" }
}
}