-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathPlatformSerializationTests.cs
More file actions
281 lines (250 loc) · 8.86 KB
/
PlatformSerializationTests.cs
File metadata and controls
281 lines (250 loc) · 8.86 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
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using Microsoft.DotNet.ImageBuilder.Models.Manifest;
using Xunit;
using static Microsoft.DotNet.ImageBuilder.Tests.Models.SerializationHelper;
namespace Microsoft.DotNet.ImageBuilder.Tests.Models;
/// <summary>
/// Serialization and deserialization tests for <see cref="Platform"/> model.
/// These tests ensure that serialization behavior does not change unexpectedly.
/// </summary>
public class PlatformSerializationTests
{
[Fact]
public void DefaultPlatform_Bidirectional()
{
// A default Platform can be serialized - it has default values for required properties
// Architecture defaults to AMD64 and is omitted due to DefaultValueHandling.IgnoreAndPopulate
Platform platform = new();
// Empty BuildArgs dictionary IS serialized (only IList is omitted)
// Empty Tags dictionary IS serialized (required)
// Empty arrays (CustomBuildLegGroups, Images) are omitted
string json = """
{
"buildArgs": {},
"dockerfile": "",
"os": "Linux",
"osVersion": "",
"tags": {}
}
""";
AssertBidirectional(platform, json, AssertPlatformsEqual);
}
[Fact]
public void FullyPopulatedPlatform_Bidirectional()
{
Platform platform = new()
{
Architecture = Architecture.ARM64,
BuildArgs = new Dictionary<string, string>
{
["DOTNET_VERSION"] = "8.0.0",
["ASPNET_VERSION"] = "8.0.0"
},
BuildContext = "src/runtime/8.0/jammy",
Dockerfile = "src/runtime/8.0/jammy/arm64v8/Dockerfile",
DockerfileTemplate = "src/runtime/Dockerfile.linux.template",
OS = OS.Linux,
OsVersion = "jammy",
Tags = new Dictionary<string, Tag>
{
["8.0-jammy-arm64v8"] = new Tag(),
["8.0"] = new Tag { DocType = TagDocumentationType.Undocumented }
},
CustomBuildLegGroups = [], // Leave sub-model arrays empty per instructions
Variant = "v8"
};
// Empty CustomBuildLegGroups is omitted; default Tag properties are omitted
string json = """
{
"architecture": "ARM64",
"buildArgs": {
"DOTNET_VERSION": "8.0.0",
"ASPNET_VERSION": "8.0.0"
},
"buildContext": "src/runtime/8.0/jammy",
"dockerfile": "src/runtime/8.0/jammy/arm64v8/Dockerfile",
"dockerfileTemplate": "src/runtime/Dockerfile.linux.template",
"os": "Linux",
"osVersion": "jammy",
"tags": {
"8.0-jammy-arm64v8": {},
"8.0": {
"docType": "Undocumented"
}
},
"variant": "v8"
}
""";
AssertBidirectional(platform, json, AssertPlatformsEqual);
}
[Fact]
public void FullyPopulatedPlatform_RoundTrip()
{
Platform platform = new()
{
Architecture = Architecture.ARM,
BuildArgs = new Dictionary<string, string> { ["VERSION"] = "8.0" },
BuildContext = "src",
Dockerfile = "src/Dockerfile",
DockerfileTemplate = "src/Dockerfile.template",
OS = OS.Linux,
OsVersion = "alpine3.18",
Tags = new Dictionary<string, Tag> { ["latest"] = new Tag() },
CustomBuildLegGroups = [],
Variant = "v7"
};
AssertRoundTrip(platform, AssertPlatformsEqual);
}
[Fact]
public void MinimalPlatform_Bidirectional()
{
// Platform with only required properties, using default Architecture
Platform platform = new()
{
Dockerfile = "src/Dockerfile",
OS = OS.Linux,
OsVersion = "jammy",
Tags = new Dictionary<string, Tag> { ["8.0"] = new Tag() }
};
// Architecture defaults to AMD64 and is not serialized due to DefaultValueHandling.IgnoreAndPopulate
// Empty dictionaries ARE serialized (only IList is omitted)
// Empty CustomBuildLegGroups array is omitted; default Tag properties are omitted
string json = """
{
"buildArgs": {},
"dockerfile": "src/Dockerfile",
"os": "Linux",
"osVersion": "jammy",
"tags": {
"8.0": {}
}
}
""";
AssertBidirectional(platform, json, AssertPlatformsEqual);
}
[Fact]
public void WindowsPlatform_Bidirectional()
{
Platform platform = new()
{
Architecture = Architecture.AMD64,
Dockerfile = "src/runtime/8.0/nanoserver-ltsc2022/amd64/Dockerfile",
OS = OS.Windows,
OsVersion = "nanoserver-ltsc2022",
Tags = new Dictionary<string, Tag> { ["8.0-nanoserver-ltsc2022"] = new Tag() }
};
// Architecture is AMD64 (default) so it's omitted
// Empty BuildArgs dictionary IS serialized (only IList is omitted)
// Empty CustomBuildLegGroups array is omitted; default Tag properties are omitted
string json = """
{
"buildArgs": {},
"dockerfile": "src/runtime/8.0/nanoserver-ltsc2022/amd64/Dockerfile",
"os": "Windows",
"osVersion": "nanoserver-ltsc2022",
"tags": {
"8.0-nanoserver-ltsc2022": {}
}
}
""";
AssertBidirectional(platform, json, AssertPlatformsEqual);
}
[Fact]
public void Deserialization_DockerfileIsRequired_Missing()
{
string json = """
{
"os": "Linux",
"osVersion": "jammy",
"tags": {}
}
""";
AssertDeserializationFails<Platform>(json, nameof(Platform.Dockerfile));
}
[Fact]
public void Deserialization_OsIsRequired_Missing()
{
string json = """
{
"dockerfile": "src/Dockerfile",
"osVersion": "jammy",
"tags": {}
}
""";
AssertDeserializationFails<Platform>(json, nameof(Platform.OS));
}
[Fact]
public void Deserialization_OsVersionIsRequired_Missing()
{
string json = """
{
"dockerfile": "src/Dockerfile",
"os": "Linux",
"tags": {}
}
""";
AssertDeserializationFails<Platform>(json, nameof(Platform.OsVersion));
}
[Fact]
public void Deserialization_TagsIsRequired_Missing()
{
string json = """
{
"dockerfile": "src/Dockerfile",
"os": "Linux",
"osVersion": "jammy"
}
""";
AssertDeserializationFails<Platform>(json, nameof(Platform.Tags));
}
[Fact]
public void Deserialization_TagsIsRequired_Null()
{
string json = """
{
"dockerfile": "src/Dockerfile",
"os": "Linux",
"osVersion": "jammy",
"tags": null
}
""";
AssertDeserializationFails<Platform>(json, nameof(Platform.Tags));
}
[Fact]
public void Deserialization_ArchitectureDefaultsToAMD64()
{
string json = """
{
"dockerfile": "src/Dockerfile",
"os": "Linux",
"osVersion": "jammy",
"tags": {}
}
""";
Platform expected = new()
{
Architecture = Architecture.AMD64,
Dockerfile = "src/Dockerfile",
OS = OS.Linux,
OsVersion = "jammy",
Tags = new Dictionary<string, Tag>()
};
AssertDeserialization(json, expected, AssertPlatformsEqual);
}
private static void AssertPlatformsEqual(Platform expected, Platform actual)
{
Assert.Equal(expected.Architecture, actual.Architecture);
Assert.Equal(expected.BuildArgs, actual.BuildArgs);
Assert.Equal(expected.BuildContext, actual.BuildContext);
Assert.Equal(expected.Dockerfile, actual.Dockerfile);
Assert.Equal(expected.DockerfileTemplate, actual.DockerfileTemplate);
Assert.Equal(expected.OS, actual.OS);
Assert.Equal(expected.OsVersion, actual.OsVersion);
Assert.Equal(expected.Tags?.Count ?? 0, actual.Tags?.Count ?? 0);
Assert.Equal(expected.CustomBuildLegGroups?.Length ?? 0, actual.CustomBuildLegGroups?.Length ?? 0);
Assert.Equal(expected.Variant, actual.Variant);
}
}