forked from dotnet/aspnetcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest-Template.ps1
104 lines (92 loc) · 3.41 KB
/
Test-Template.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
#!/usr/bin/env pwsh
#requires -version 4
Set-StrictMode -Version 2
$ErrorActionPreference = 'Stop'
function Test-Template($templateName, $templateArgs, $templateNupkg, $isBlazorWasm) {
if ($isBlazorWasm -and $templateArgs.Contains("hosted")) {
$isBlazorWasmHosted = $true
}
else {
$isBlazorWasmHosted = $false
}
$tmpDir = "$PSScriptRoot/$templateName"
Remove-Item -Path $tmpDir -Recurse -ErrorAction Ignore
Push-Location ..
try {
dotnet pack
}
finally {
Pop-Location
}
Run-DotnetNew "install", "$PSScriptRoot/../../../artifacts/packages/Debug/Shipping/$templateNupkg"
New-Item -ErrorAction Ignore -Path $tmpDir -ItemType Directory
Push-Location $tmpDir
try {
Run-DotnetNew $templateArgs, "--no-restore"
if ($templateArgs -match 'F#') {
$extension = "fsproj"
}
else {
$extension = "csproj"
}
if ($isBlazorWasmHosted) {
$proj = @("$tmpDir/Server/$templateName.Server.$extension",
"$tmpDir/Client/$templateName.Client.$extension",
"$tmpDir/Shared/$templateName.Shared.$extension")
}
else {
$proj = @("$tmpDir/$templateName.$extension")
}
foreach ($projPath in $proj) {
$projContent = Get-Content -Path $projPath -Raw
if ($isBlazorWasmHosted) {
$importPath = "$PSScriptRoot/../test/Templates.Tests/bin/Debug/net9.0/TestTemplates"
}
else {
$importPath = "$PSScriptRoot/../test/Templates.Tests/bin/Debug/net9.0/TestTemplates"
}
$projContent = $projContent -replace ('(?:<Project Sdk="Microsoft.NET.(?<SdkSuffix>Sdk\.\w+)">)', ('<Project Sdk="Microsoft.NET.${SdkSuffix}">
<Import Project="' + $importPath + '/Directory.Build.props" />
<Import Project="' + $importPath + '/Directory.Build.targets" />
<PropertyGroup>
<DisablePackageReferenceRestrictions>true</DisablePackageReferenceRestrictions>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<TrimmerSingleWarn>false</TrimmerSingleWarn>
</PropertyGroup>'))
$projContent | Set-Content $projPath
}
if ($isBlazorWasmHosted) {
Push-Location Server
}
if ($templateArgs -match '-au') {
dotnet.exe ef migrations add Initial
}
$publishOutputDir = ".\.publish";
dotnet.exe publish --configuration Release --output $publishOutputDir
if (Test-Path $publishOutputDir) {
Set-Location $publishOutputDir
}
else {
throw "Publish output directory could not be found";
}
if ($isBlazorWasm -eq $false) {
Invoke-Expression "./$templateName.exe"
}
if ($isBlazorWasmHosted) {
# Identity Server only runs in Development by default due to key signing requirements
$env:ASPNETCORE_ENVIRONMENT="Development"
Invoke-Expression "./$templateName.Server.exe"
$env:ASPNETCORE_ENVIRONMENT=""
}
}
finally {
Pop-Location
if ($isBlazorWasmHosted) {
Pop-Location
}
}
}
function Run-DotnetNew($arguments) {
$expression = "dotnet new $arguments"
Invoke-Expression $expression
}