-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdev.ps1
548 lines (438 loc) · 19.1 KB
/
dev.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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
# This script is for local development purposes only to make it easier
# for developers to work with all the various scripts and their parameters.
# This script operates similarly to a CI/CD system in that it feeds
# settings and configuration values into the various scripts to run them.
# Because this script behaves similarly to the CI/CD system, using it to
# run and test Earth locally should behave consistently with how these scripts
# will behave when executed by the CI/CD system so that there's no surprises
# when running everything outside of a developers environment.
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[ValidateSet(
'BuildRelease',
'BuildReleaseAndPublish',
'StartWebsiteLocallyDevMode',
'StartWebsiteLocallyProdMode',
'DeployToAzure',
'OpenE2ETests',
'RunE2ETests',
'Push',
'DestroyAzureEnvironment'
)]
[String]
$Workflow
)
Set-StrictMode –Version latest
$ErrorActionPreference = "Stop"
$InformationPreference = "Continue"
enum DevWorkflows {
BuildRelease
BuildReleaseAndPublish
StartWebsiteLocallyDevMode
StartWebsiteLocallyProdMode
DeployToAzure
OpenE2ETests
RunE2ETests
Push
DestroyAzureEnvironment
}
function Get-DeployerServicePrincipalCredentials {
[CmdletBinding()]
Param(
[Parameter(Mandatory = $true)]
[Object]
$GlobalDevelopmentSettings,
[Parameter(Mandatory = $true)]
[Object]
$DeveloperEnvironmentSettings,
[Parameter(Mandatory = $true)]
[PSCustomObject]
$EarthRuntimeConfig
)
process {
$CacheDirectory = $GlobalDevelopmentSettings.CachedAzureCredsDirectory
$CredsPath = "$CacheDirectory/$($EarthRuntimeConfig.EarthDeployerServicePrincipalName).json"
if (-Not (Test-Path $CredsPath)) {
Write-Information "Deployer Service Principal cached credentials not found at $CredsPath.
To resolve this, please perform the following:
1. Sign in to Azure as the Administrator of your Azure Subscription by running the following on your command line:
az login
2. Run the following script on your command line:
./src/azure/provisioning/subscription-provision.ps1
This will create a Service Principal in Azure and cache the credentials for use.
3. Rerun your previous command.
"
exit
}
$ServicePrincipalCredentials = Get-Content -Path $CredsPath | ConvertFrom-Json
$ServicePrincipalCredentials = @{
Tenant = $ServicePrincipalCredentials.tenant
DisplayName = $ServicePrincipalCredentials.displayName
AppId = $ServicePrincipalCredentials.appId
Password = ConvertTo-SecureString -String $ServicePrincipalCredentials.password -AsPlainText
}
return $ServicePrincipalCredentials
}
}
function Invoke-Workflow {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[DevWorkflows]
$Workflow
)
# Load some configuration values...
$GlobalDevelopmentSettings = Get-Content 'dev/development-config.json' | ConvertFrom-Json
$DevelopmentToolsDirectory = $GlobalDevelopmentSettings.DevelopmentToolsDirectory
. "$DevelopmentToolsDirectory/local-config-manager.ps1"
$DeveloperEnvironmentSettings = Get-DeveloperEnvironmentSettings
. ./src/releasables/earth-runtime-config.ps1
$EarthRuntimeConfig = Get-EarthRuntimeConfig `
-AzureSubscriptionName $DeveloperEnvironmentSettings.AzureSubscriptionName
switch ($Workflow) {
BuildRelease
{
Invoke-Build `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings
}
BuildReleaseAndPublish
{
Invoke-BuildAndPublish `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings `
-EarthRuntimeConfig $EarthRuntimeConfig
}
DeployToAzure
{
Invoke-Deploy `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings `
-EarthRuntimeConfig $EarthRuntimeConfig
}
DestroyAzureEnvironment
{
Invoke-Destroy `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings
}
Push
{
Invoke-Push `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings `
-EarthRuntimeConfig $EarthRuntimeConfig
}
StartWebsiteLocallyDevMode
{
Start-Website `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings `
-Mode Dev
}
StartWebsiteLocallyProdMode
{
Start-Website `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings `
-Mode Prod
}
OpenE2ETests
{
Invoke-OpenE2ETests `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings
}
RunE2ETests
{
Invoke-RunE2ETests `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings
}
default { throw "The specified workflow '${Workflow}' is not implemented." }
}
}
function Invoke-Build {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[Object]
$GlobalDevelopmentSettings,
[Parameter(Mandatory = $true)]
[Object]
$DeveloperEnvironmentSettings
)
try {
Push-Location $GlobalDevelopmentSettings.SourceDirectory
$BuildNumber = [Guid]::NewGuid()
./build.ps1 `
-BuildNumber $BuildNumber `
-FlexportApiClientID $DeveloperEnvironmentSettings.FlexportApiClientID `
-FlexportApiClientSecret $($DeveloperEnvironmentSettings.FlexportApiClientSecret | ConvertFrom-SecureString -AsPlainText)
Write-Information ""
Write-Information "To run the build locally:"
Write-Information ""
Write-Information " ./dev StartWebsiteLocallyDevMode"
Write-Information " ./dev StartWebsiteLocallyProdMode"
Write-Information ""
Write-Information "To deploy the build to Azure:"
Write-Information ""
Write-Information " ./dev DeployToAzure"
Write-Information ""
}
finally {
Pop-Location
}
}
function Invoke-BuildAndPublish {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[Object]
$GlobalDevelopmentSettings,
[Parameter(Mandatory = $true)]
[Object]
$DeveloperEnvironmentSettings,
[Parameter(Mandatory = $true)]
[PSCustomObject]
$EarthRuntimeConfig
)
$ServicePrincipalCredentials = Get-DeployerServicePrincipalCredentials `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings `
-EarthRuntimeConfig $EarthRuntimeConfig
try {
Push-Location $GlobalDevelopmentSettings.SourceDirectory
$BuildNumber = [Guid]::NewGuid()
./build-and-publish.ps1 `
-BuildNumber $BuildNumber `
-FlexportApiClientID $DeveloperEnvironmentSettings.FlexportApiClientID `
-FlexportApiClientSecret $($DeveloperEnvironmentSettings.FlexportApiClientSecret | ConvertFrom-SecureString -AsPlainText) `
-PublishToEnvironment $DeveloperEnvironmentSettings.EnvironmentName `
-AzureServicePrincipalTenant $ServicePrincipalCredentials.Tenant `
-AzureServicePrincipalAppId $ServicePrincipalCredentials.AppId `
-AzureServicePrincipalPassword $ServicePrincipalCredentials.Password
Write-Information ""
Write-Information "To run the build locally:"
Write-Information ""
Write-Information " ./dev StartWebsiteLocallyDevMode"
Write-Information " ./dev StartWebsiteLocallyProdMode"
Write-Information ""
Write-Information "To deploy the build to Azure:"
Write-Information ""
Write-Information " ./dev DeployToAzure"
Write-Information ""
}
finally {
Pop-Location
}
}
function Invoke-Deploy {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[Object]
$GlobalDevelopmentSettings,
[Parameter(Mandatory = $true)]
[Object]
$DeveloperEnvironmentSettings,
[Parameter(Mandatory = $true)]
[PSCustomObject]
$EarthRuntimeConfig
)
$ReleasablesPath = $GlobalDevelopmentSettings.ReleasablesDirectory
$DevelopmentToolsDirectory = $GlobalDevelopmentSettings.DevelopmentToolsDirectory
. "$DevelopmentToolsDirectory/sign-into-azure.ps1"
. "$DevelopmentToolsDirectory/build-number.ps1"
$DeployerServicePrincipalCredentials = Get-DeployerServicePrincipalCredentials `
-GlobalDevelopmentSettings $GlobalDevelopmentSettings `
-DeveloperEnvironmentSettings $DeveloperEnvironmentSettings `
-EarthRuntimeConfig $EarthRuntimeConfig
$BuildNumber = Get-BuildNumber
try {
Push-Location $ReleasablesPath
./deploy-earth.ps1 `
-BuildNumber $BuildNumber `
-EnvironmentName $DeveloperEnvironmentSettings.EnvironmentName `
-EarthWebsiteCustomDomainName $DeveloperEnvironmentSettings.EarthWebsiteCustomDomainName `
-FlexportApiClientId $DeveloperEnvironmentSettings.FlexportApiClientId `
-FlexportApiClientSecret $DeveloperEnvironmentSettings.FlexportApiClientSecret `
-GoogleAnalyticsMeasurementId $DeveloperEnvironmentSettings.GoogleAnalyticsMeasurementId `
-ContainerTargetRegistryTenant $DeployerServicePrincipalCredentials.Tenant `
-ContainerTargetRegistryUsername $DeployerServicePrincipalCredentials.AppId `
-ContainerTargetRegistryPassword $DeployerServicePrincipalCredentials.Password `
-EarthEnvironmentOperatorsEmailAddress $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsEmailAddress `
-EarthEnvironmentOperatorsGmailApiClientId $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsGmailApiClientId `
-EarthEnvironmentOperatorsGmailApiClientSecret $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsGmailApiClientSecret `
-EarthEnvironmentOperatorsGmailApiRefreshToken $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsGmailApiRefreshToken
}
finally {
Pop-Location
}
}
function Invoke-Destroy {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[Object]
$GlobalDevelopmentSettings,
[Parameter(Mandatory = $true)]
[Object]
$DeveloperEnvironmentSettings
)
$DevelopmentToolsDirectory = $GlobalDevelopmentSettings.DevelopmentToolsDirectory
$RelesablesDirectory = $GlobalDevelopmentSettings.ReleasablesDirectory
. "$DevelopmentToolsDirectory/sign-into-azure.ps1"
try {
Push-Location $RelesablesDirectory
./destroy-earth.ps1 `
-EnvironmentName $DeveloperEnvironmentSettings.EnvironmentName
}
finally {
Pop-Location
}
}
function Invoke-Push {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[Object]
$GlobalDevelopmentSettings,
[Parameter(Mandatory = $true)]
[Object]
$DeveloperEnvironmentSettings,
[Parameter(Mandatory = $true)]
[PSCustomObject]
$EarthRuntimeConfig
)
$RelesablesDirectory = $GlobalDevelopmentSettings.ReleasablesDirectory
# Run dependency management
. "$RelesablesDirectory/dependencies/dependency-manager.ps1"
# Make sure there's no pending changes.
$GitStatus = git status
if (-Not ($GitStatus -like "*nothing to commit*")) {
Write-Error "You have pending changes that need to be committed."
}
# Make sure we're testing with latest from origin/main.
Write-Information "Fetching latest changes from the main Flexport Earth GitHub repository to ensure you're up to date before continuing..."
Write-Information ""
git fetch origin main
$CurrentBranchName = git rev-parse --abbrev-ref HEAD
$DiffCounts = ((git rev-list --left-right --count origin/main...$CurrentBranchName) -split '\t')
$CommitsBehindOriginMain = $DiffCounts[0]
if ($CommitsBehindOriginMain -gt 0) {
Write-Error "The current branch is behind origin/main by $CommitsBehindOriginMain, please update it before continuing."
}
Write-Information ""
Write-Information "You're in sync with origin main, excellent! Continuing to test and push your changes..."
Write-Information ""
Invoke-BuildAndPublish -GlobalDevelopmentSettings $GlobalDevelopmentSettings -DeveloperEnvironmentSettings $DeveloperEnvironmentSettings -EarthRuntimeConfig $EarthRuntimeConfig
Invoke-Deploy -GlobalDevelopmentSettings $GlobalDevelopmentSettings -DeveloperEnvironmentSettings $DeveloperEnvironmentSettings -EarthRuntimeConfig $EarthRuntimeConfig
Invoke-Destroy -GlobalDevelopmentSettings $GlobalDevelopmentSettings -DeveloperEnvironmentSettings $DeveloperEnvironmentSettings
git push --set-upstream origin $CurrentBranchName
}
enum LocalWebsiteModes {
Dev
Prod
}
function Start-Website {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[Object]
$GlobalDevelopmentSettings,
[Parameter(Mandatory = $true)]
[Object]
$DeveloperEnvironmentSettings,
[Parameter(Mandatory = $true)]
[LocalWebsiteModes]
$Mode
)
$WebsiteContentDirectory = $GlobalDevelopmentSettings.WebsiteContentSourceDirectory
try {
Push-Location $WebsiteContentDirectory
$GoogleAnalyticsMeasurementId = $DeveloperEnvironmentSettings.GoogleAnalyticsMeasurementId
# Set environment variables that the website requires before starting.
$env:NEXT_PUBLIC_GOOGLE_ANALYTICS_MEASUREMENT_ID=$GoogleAnalyticsMeasurementId
switch ($Mode) {
Dev
{
npm run dev
}
Prod
{
npm run start
}
default { throw "The specified mode '${Mode}' is not valid." }
}
}
finally {
Pop-Location
# Clean up env vars
Remove-Item Env:\NEXT_PUBLIC_GOOGLE_ANALYTICS_MEASUREMENT_ID
}
}
function Invoke-OpenE2ETests {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[Object]
$GlobalDevelopmentSettings,
[Parameter(Mandatory = $true)]
[Object]
$DeveloperEnvironmentSettings
)
$DevelopmentToolsDirectory = $GlobalDevelopmentSettings.DevelopmentToolsDirectory
$RelesablesDirectory = $GlobalDevelopmentSettings.ReleasablesDirectory
. "$DevelopmentToolsDirectory/build-number.ps1"
$BuildNumber = Get-BuildNumber
try {
Push-Location "$RelesablesDirectory/testing/e2e"
./run-e2e-tests.ps1 `
-EnvironmentName $DeveloperEnvironmentSettings.EnvironmentName `
-EarthWebsiteUrl http://localhost:3000 `
-BuildNumber $BuildNumber `
-EarthEnvironmentOperatorsEmailAddress $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsEmailAddress `
-EarthEnvironmentOperatorsGmailApiClientId $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsGmailApiClientId `
-EarthEnvironmentOperatorsGmailApiClientSecret $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsGmailApiClientSecret `
-EarthEnvironmentOperatorsGmailApiRefreshToken $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsGmailApiRefreshToken `
-OpenTestUI
}
finally {
Pop-Location
}
}
function Invoke-RunE2ETests {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[Object]
$GlobalDevelopmentSettings,
[Parameter(Mandatory = $true)]
[Object]
$DeveloperEnvironmentSettings
)
$DevelopmentToolsDirectory = $GlobalDevelopmentSettings.DevelopmentToolsDirectory
$RelesablesDirectory = $GlobalDevelopmentSettings.ReleasablesDirectory
. "$DevelopmentToolsDirectory/build-number.ps1"
$BuildNumber = Get-BuildNumber
try {
Push-Location "$RelesablesDirectory"
./test-earth.ps1 `
-EnvironmentName $DeveloperEnvironmentSettings.EnvironmentName `
-EarthWebsiteUrl http://localhost:3000 `
-BuildNumber $BuildNumber `
-EarthEnvironmentOperatorsEmailAddress $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsEmailAddress `
-EarthEnvironmentOperatorsGmailApiClientId $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsGmailApiClientId `
-EarthEnvironmentOperatorsGmailApiClientSecret $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsGmailApiClientSecret `
-EarthEnvironmentOperatorsGmailApiRefreshToken $DeveloperEnvironmentSettings.EarthEnvironmentOperatorsGmailApiRefreshToken `
}
finally {
Pop-Location
}
}
# Ensure all the local development tools are installed
# and up to date before running any development workflows.
./dev/tools/install-development-tools.ps1
Invoke-Workflow -Workflow $Workflow