-
Notifications
You must be signed in to change notification settings - Fork 937
Expand file tree
/
Copy pathAddViteAppTests.cs
More file actions
227 lines (174 loc) · 8.78 KB
/
Copy pathAddViteAppTests.cs
File metadata and controls
227 lines (174 loc) · 8.78 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#pragma warning disable ASPIREDOCKERFILEBUILDER001 // Type is for evaluation purposes only
using Aspire.Hosting.ApplicationModel;
using Aspire.Hosting.Utils;
namespace Aspire.Hosting.NodeJs.Tests;
public class AddViteAppTests
{
[Fact]
public async Task VerifyDefaultDockerfile()
{
using var tempDir = new TempDirectory();
using var builder = TestDistributedApplicationBuilder.Create(DistributedApplicationOperation.Publish, outputPath: tempDir.Path).WithResourceCleanUp(true);
// Create vite directory to ensure manifest generates correct relative build context path
var viteDir = Path.Combine(tempDir.Path, "vite");
Directory.CreateDirectory(viteDir);
// Create a lock file so npm ci is used in the Dockerfile
File.WriteAllText(Path.Combine(viteDir, "package-lock.json"), "empty");
var nodeApp = builder.AddViteApp("vite", viteDir)
.WithNpm(install: true);
var manifest = await ManifestUtils.GetManifest(nodeApp.Resource, tempDir.Path);
var expectedManifest = $$"""
{
"type": "container.v1",
"build": {
"context": "vite",
"dockerfile": "vite.Dockerfile"
},
"env": {
"NODE_ENV": "production",
"PORT": "{vite.bindings.http.targetPort}"
},
"bindings": {
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http",
"targetPort": 8000
}
}
}
""";
Assert.Equal(expectedManifest, manifest.ToString());
var dockerfilePath = Path.Combine(tempDir.Path, "vite.Dockerfile");
var dockerfileContents = File.ReadAllText(dockerfilePath);
var expectedDockerfile = $$"""
FROM node:22-slim
WORKDIR /app
COPY . .
RUN npm ci
RUN npm run build
""".Replace("\r\n", "\n");
Assert.Equal(expectedDockerfile, dockerfileContents);
var dockerBuildAnnotation = nodeApp.Resource.Annotations.OfType<DockerfileBuildAnnotation>().Single();
Assert.False(dockerBuildAnnotation.HasEntrypoint);
var containerFilesSource = nodeApp.Resource.Annotations.OfType<ContainerFilesSourceAnnotation>().Single();
Assert.Equal("/app/dist", containerFilesSource.SourcePath);
}
[Fact]
public async Task VerifyDockerfileWithNodeVersionFromPackageJson()
{
using var tempDir = new TempDirectory();
// Create a package.json with engines.node specification
var packageJson = """
{
"name": "test-vite",
"engines": {
"node": ">=20.12"
}
}
""";
File.WriteAllText(Path.Combine(tempDir.Path, "package.json"), packageJson);
using var builder = TestDistributedApplicationBuilder.Create(DistributedApplicationOperation.Publish, outputPath: tempDir.Path).WithResourceCleanUp(true);
var nodeApp = builder.AddViteApp("vite", tempDir.Path)
.WithNpm();
var manifest = await ManifestUtils.GetManifest(nodeApp.Resource, tempDir.Path);
var dockerfileContents = File.ReadAllText(Path.Combine(tempDir.Path, "vite.Dockerfile"));
// Should detect version 20 from package.json
Assert.Contains("FROM node:20-slim", dockerfileContents);
}
[Fact]
public async Task VerifyDockerfileWithNodeVersionFromNvmrc()
{
using var tempDir = new TempDirectory();
// Create an .nvmrc file
File.WriteAllText(Path.Combine(tempDir.Path, ".nvmrc"), "18.20.0");
using var builder = TestDistributedApplicationBuilder.Create(DistributedApplicationOperation.Publish, outputPath: tempDir.Path).WithResourceCleanUp(true);
var nodeApp = builder.AddViteApp("vite", tempDir.Path)
.WithNpm();
var manifest = await ManifestUtils.GetManifest(nodeApp.Resource, tempDir.Path);
var dockerfileContents = File.ReadAllText(Path.Combine(tempDir.Path, "vite.Dockerfile"));
// Should detect version 18 from .nvmrc
Assert.Contains("FROM node:18-slim", dockerfileContents);
}
[Fact]
public async Task VerifyDockerfileWithNodeVersionFromNodeVersion()
{
using var tempDir = new TempDirectory();
// Create a .node-version file
File.WriteAllText(Path.Combine(tempDir.Path, ".node-version"), "v21.5.0");
using var builder = TestDistributedApplicationBuilder.Create(DistributedApplicationOperation.Publish, outputPath: tempDir.Path).WithResourceCleanUp(true);
var nodeApp = builder.AddViteApp("vite", tempDir.Path)
.WithNpm();
var manifest = await ManifestUtils.GetManifest(nodeApp.Resource, tempDir.Path);
var dockerfileContents = File.ReadAllText(Path.Combine(tempDir.Path, "vite.Dockerfile"));
// Should detect version 21 from .node-version
Assert.Contains("FROM node:21-slim", dockerfileContents);
}
[Fact]
public async Task VerifyDockerfileWithNodeVersionFromToolVersions()
{
using var tempDir = new TempDirectory();
// Create a .tool-versions file
var toolVersions = """
ruby 3.2.0
nodejs 19.8.1
python 3.11.0
""";
File.WriteAllText(Path.Combine(tempDir.Path, ".tool-versions"), toolVersions);
using var builder = TestDistributedApplicationBuilder.Create(DistributedApplicationOperation.Publish, outputPath: tempDir.Path).WithResourceCleanUp(true);
var nodeApp = builder.AddViteApp("vite", tempDir.Path)
.WithNpm();
var manifest = await ManifestUtils.GetManifest(nodeApp.Resource, tempDir.Path);
var dockerfileContents = File.ReadAllText(Path.Combine(tempDir.Path, "vite.Dockerfile"));
// Should detect version 19 from .tool-versions
Assert.Contains("FROM node:19-slim", dockerfileContents);
}
[Fact]
public async Task VerifyDockerfileDefaultsTo22WhenNoVersionFound()
{
using var tempDir = new TempDirectory();
// Don't create any version files - should default to 22
using var builder = TestDistributedApplicationBuilder.Create(DistributedApplicationOperation.Publish, outputPath: tempDir.Path).WithResourceCleanUp(true);
var nodeApp = builder.AddViteApp("vite", tempDir.Path)
.WithNpm();
var manifest = await ManifestUtils.GetManifest(nodeApp.Resource, tempDir.Path);
var dockerfileContents = File.ReadAllText(Path.Combine(tempDir.Path, "vite.Dockerfile"));
// Should default to version 22
Assert.Contains("FROM node:22-slim", dockerfileContents);
}
[Theory]
[InlineData("18", "node:18-slim")]
[InlineData("v20.1.0", "node:20-slim")]
[InlineData(">=18.12", "node:18-slim")]
[InlineData("^16.0.0", "node:16-slim")]
[InlineData("~19.5.0", "node:19-slim")]
public async Task VerifyDockerfileHandlesVariousVersionFormats(string versionString, string expectedImage)
{
using var tempDir = new TempDirectory();
File.WriteAllText(Path.Combine(tempDir.Path, ".nvmrc"), versionString);
using var builder = TestDistributedApplicationBuilder.Create(DistributedApplicationOperation.Publish, outputPath: tempDir.Path).WithResourceCleanUp(true);
var nodeApp = builder.AddViteApp("vite", tempDir.Path)
.WithNpm();
var manifest = await ManifestUtils.GetManifest(nodeApp.Resource, tempDir.Path);
var dockerfileContents = File.ReadAllText(Path.Combine(tempDir.Path, "vite.Dockerfile"));
Assert.Contains($"FROM {expectedImage}", dockerfileContents);
}
[Fact]
public async Task VerifyCustomBaseImage()
{
using var tempDir = new TempDirectory();
using var builder = TestDistributedApplicationBuilder.Create(DistributedApplicationOperation.Publish, outputPath: tempDir.Path).WithResourceCleanUp(true);
var customImage = "node:22-myspecialimage";
var nodeApp = builder.AddViteApp("vite", tempDir.Path)
.WithNpm(install: true)
.WithDockerfileBaseImage(buildImage: customImage);
var manifest = await ManifestUtils.GetManifest(nodeApp.Resource, tempDir.Path);
// Verify the manifest structure
Assert.Equal("container.v1", manifest["type"]?.ToString());
// Verify the Dockerfile contains the custom base image
var dockerfileContents = File.ReadAllText(Path.Combine(tempDir.Path, "vite.Dockerfile"));
Assert.Contains($"FROM {customImage}", dockerfileContents);
}
}