-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathruntime_config_parser_test.go
More file actions
323 lines (284 loc) · 9.65 KB
/
runtime_config_parser_test.go
File metadata and controls
323 lines (284 loc) · 9.65 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
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
package dotnetcoreaspnetruntime_test
import (
"os"
"path/filepath"
"testing"
dotnetcoreaspnetruntime "github.com/paketo-buildpacks/dotnet-core-aspnet-runtime"
"github.com/sclevine/spec"
. "github.com/onsi/gomega"
)
func testRuntimeConfigParser(t *testing.T, context spec.G, it spec.S) {
var (
Expect = NewWithT(t).Expect
workingDir string
parser dotnetcoreaspnetruntime.RuntimeConfigParser
)
it.Before(func() {
var err error
workingDir, err = os.MkdirTemp("", "working-dir")
Expect(err).NotTo(HaveOccurred())
err = os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{}`), 0600)
Expect(err).NotTo(HaveOccurred())
parser = dotnetcoreaspnetruntime.NewRuntimeConfigParser()
})
it.After(func() {
Expect(os.RemoveAll(workingDir)).To(Succeed())
})
context("Parse", func() {
it("parses the runtime config", func() {
frameworkVersion, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).NotTo(HaveOccurred())
Expect(frameworkVersion).To(Equal(""))
})
context("when the runtime config includes comments", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{
"runtimeOptions": {
/*
Multi line
Comment
*/
"configProperties": {
"System.GC.Server": true
}
// comment here ok?
}
}`), 0600)).To(Succeed())
})
it("parses the runtime config", func() {
frameworkVersion, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).NotTo(HaveOccurred())
Expect(frameworkVersion).To(Equal(""))
})
})
context("when the runtime framework version is specified", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{
"runtimeOptions": {
"framework": {
"name": "Microsoft.NETCore.App",
"version": "2.1.3"
}
}
}`), 0600)).To(Succeed())
})
it("returns the runtime version", func() {
frameworkVersion, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).NotTo(HaveOccurred())
Expect(frameworkVersion).To(Equal("2.1.3"))
})
})
context("when runtime frameworks are specified", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{
"runtimeOptions": {
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "2.1.3"
}
]
}
}`), 0600)).To(Succeed())
})
it("returns the runtime version", func() {
frameworkVersion, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).NotTo(HaveOccurred())
Expect(frameworkVersion).To(Equal("2.1.3"))
})
})
context("when runtime frameworks include AspNetCore", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{
"runtimeOptions": {
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "2.1.3"
},
{
"name": "Microsoft.AspNetCore.App",
"version": "2.1.4"
}
]
}
}`), 0600)).To(Succeed())
})
it("returns the runtime and ASPNET versions", func() {
frameworkVersion, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).NotTo(HaveOccurred())
Expect(frameworkVersion).To(Equal("2.1.4"))
})
})
context("when the runtime framework is specified with no version", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{
"runtimeOptions": {
"framework": {
"name": "Microsoft.NETCore.App"
}
}
}`), 0600)).To(Succeed())
})
it("returns that version", func() {
frameworkVersion, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).NotTo(HaveOccurred())
Expect(frameworkVersion).To(Equal("*"))
})
})
context("when the app requires ASP.Net via Microsoft.AspNetCore.App", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{
"runtimeOptions": {
"framework": {
"name": "Microsoft.AspNetCore.App",
"version": "2.1.0"
}
}
}`), 0600)).To(Succeed())
})
it("sets runtime and ASP.NET versions to the AspNetCore.App version", func() {
frameworkVersion, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).NotTo(HaveOccurred())
Expect(frameworkVersion).To(Equal("2.1.0"))
})
})
context("the runtimeconfig.json does not exist", func() {
it.Before(func() {
Expect(os.RemoveAll(filepath.Join(workingDir, "some-app.runtimeconfig.json"))).To(Succeed())
})
it("returns an empty string", func() {
frameworkVersion, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).To(MatchError(os.ErrNotExist))
Expect(frameworkVersion).To(Equal(""))
})
})
context("failure cases", func() {
context("when given an invalid glob", func() {
it("returns an error", func() {
_, err := parser.Parse("[-]")
Expect(err).To(MatchError(`syntax error in pattern: "[-]"`))
})
})
context("when there are multiple runtimeconfig.json files", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "other-app.runtimeconfig.json"), []byte(`{}`), 0600)).To(Succeed())
})
it("returns an error", func() {
_, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).To(MatchError(ContainSubstring("multiple *.runtimeconfig.json files present")))
Expect(err).To(MatchError(ContainSubstring("some-app.runtimeconfig.json")))
Expect(err).To(MatchError(ContainSubstring("other-app.runtimeconfig.json")))
})
})
context("the runtimeconfig.json file cannot be minimized", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte("var x = /hello"), 0600)).To(Succeed())
})
it("returns an error", func() {
_, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).To(MatchError(ContainSubstring("unterminated regular expression literal")))
})
})
context("the runtimeconfig.json file cannot be parsed", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`%%%`), 0600)).To(Succeed())
})
it("returns an error", func() {
_, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).To(MatchError(ContainSubstring("invalid character")))
})
})
context("when frameworks array is specified in runtimeconfig.json", func() {
context("when the framework object and frameworks array are both in use", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{
"runtimeOptions": {
"framework": {
"name": "Microsoft.AspNetCore.App",
"version": "2.1.3"
},
"frameworks": [
{
"name": "Microsoft.AspNetCore.App",
"version": "2.1.3"
}
]
}
}`), 0600)).To(Succeed())
})
it("returns an error", func() {
_, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).To(MatchError(ContainSubstring("malformed runtimeconfig.json: multiple 'Microsoft.AspNetCore.App' frameworks specified")))
})
})
context("when there are multiple NETCore framework entries in the frameworks array", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{
"runtimeOptions": {
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "2.1.3"
},
{
"name": "Microsoft.NETCore.App",
"version": "2.0.0"
}
]
}
}`), 0600)).To(Succeed())
})
it("returns an error", func() {
_, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).To(MatchError(ContainSubstring("malformed runtimeconfig.json: multiple 'Microsoft.NETCore.App' frameworks specified")))
})
})
context("when there are multiple ASP.NET framework entries in the frameworks array", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{
"runtimeOptions": {
"frameworks": [
{
"name": "Microsoft.AspNetCore.App",
"version": "2.1.3"
},
{
"name": "Microsoft.AspNetCore.App",
"version": "2.0.0"
}
]
}
}`), 0600)).To(Succeed())
})
it("returns an error", func() {
_, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).To(MatchError(ContainSubstring("malformed runtimeconfig.json: multiple 'Microsoft.AspNetCore.App' frameworks specified")))
})
})
context("when there are multiple NETCore framework entries in the frameworks array", func() {
it.Before(func() {
Expect(os.WriteFile(filepath.Join(workingDir, "some-app.runtimeconfig.json"), []byte(`{
"runtimeOptions": {
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "2.1.3"
},
{
"name": "Microsoft.NETCore.App",
"version": "2.0.0"
}
]
}
}`), 0600)).To(Succeed())
})
it("returns an error", func() {
_, err := parser.Parse(filepath.Join(workingDir, "*.runtimeconfig.json"))
Expect(err).To(MatchError(ContainSubstring("malformed runtimeconfig.json: multiple 'Microsoft.NETCore.App' frameworks specified")))
})
})
})
})
})
}