forked from buildpacks/lifecycle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalyzer_test.go
498 lines (416 loc) · 16.7 KB
/
analyzer_test.go
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
package lifecycle_test
import (
"encoding/json"
"io/ioutil"
"os"
"path/filepath"
"strings"
"testing"
"github.com/apex/log"
"github.com/apex/log/handlers/discard"
"github.com/buildpacks/imgutil/fakes"
"github.com/buildpacks/imgutil/local"
"github.com/golang/mock/gomock"
"github.com/sclevine/spec"
"github.com/sclevine/spec/report"
"github.com/buildpacks/lifecycle"
"github.com/buildpacks/lifecycle/cache"
"github.com/buildpacks/lifecycle/cmd"
h "github.com/buildpacks/lifecycle/testhelpers"
"github.com/buildpacks/lifecycle/testmock"
)
func TestAnalyzer(t *testing.T) {
spec.Run(t, "Analyzer", testAnalyzer, spec.Report(report.Terminal{}))
}
func testAnalyzer(t *testing.T, when spec.G, it spec.S) {
var (
analyzer *lifecycle.Analyzer
mockCtrl *gomock.Controller
layerDir string
tmpDir string
cacheDir string
testCache lifecycle.Cache
)
it.Before(func() {
var err error
tmpDir, err = ioutil.TempDir("", "analyzer-tests")
h.AssertNil(t, err)
layerDir, err = ioutil.TempDir("", "lifecycle-layer-dir")
h.AssertNil(t, err)
cacheDir, err = ioutil.TempDir("", "some-cache-dir")
h.AssertNil(t, err)
testCache, err = cache.NewVolumeCache(cacheDir)
h.AssertNil(t, err)
analyzer = &lifecycle.Analyzer{
Buildpacks: []lifecycle.Buildpack{{ID: "metadata.buildpack"}, {ID: "no.cache.buildpack"}, {ID: "no.metadata.buildpack"}},
LayersDir: layerDir,
Logger: &log.Logger{Handler: &discard.Handler{}},
}
if testing.Verbose() {
analyzer.Logger = cmd.Logger
cmd.SetLogLevel("debug")
}
mockCtrl = gomock.NewController(t)
})
it.After(func() {
h.AssertNil(t, os.RemoveAll(tmpDir))
h.AssertNil(t, os.RemoveAll(layerDir))
h.AssertNil(t, os.RemoveAll(cacheDir))
mockCtrl.Finish()
})
when("#Analyze", func() {
var (
image *fakes.Image
appImageMetadata lifecycle.LayersMetadata
ref *testmock.MockReference
)
it.Before(func() {
image = fakes.NewImage("image-repo-name", "", local.IDIdentifier{
ImageID: "s0m3D1g3sT",
})
ref = testmock.NewMockReference(mockCtrl)
ref.EXPECT().Name().AnyTimes()
})
it.After(func() {
image.Cleanup()
})
when("image exists", func() {
it.Before(func() {
metadata := h.MustReadFile(t, filepath.Join("testdata", "analyzer", "app_metadata.json"))
h.AssertNil(t, image.SetLabel("io.buildpacks.lifecycle.metadata", string(metadata)))
h.AssertNil(t, json.Unmarshal(metadata, &appImageMetadata))
})
it("restores layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
for _, data := range []struct{ name, want string }{
{"metadata.buildpack/launch.toml", "[metadata]\n launch-key = \"launch-value\""},
{"metadata.buildpack/launch-build-cache.toml", "[metadata]\n launch-build-cache-key = \"launch-build-cache-value\""},
{"metadata.buildpack/launch-cache.toml", "[metadata]\n launch-cache-key = \"launch-cache-value\""},
{"no.cache.buildpack/some-layer.toml", "[metadata]\n some-layer-key = \"some-layer-value\""},
} {
got := h.MustReadFile(t, filepath.Join(layerDir, data.name))
h.AssertStringContains(t, string(got), data.want)
}
})
it("restores layer sha files", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
for _, data := range []struct{ name, want string }{
{"metadata.buildpack/launch.sha", "launch-sha"},
{"metadata.buildpack/launch-build-cache.sha", "launch-build-cache-sha"},
{"metadata.buildpack/launch-cache.sha", "launch-cache-sha"},
{"no.cache.buildpack/some-layer.sha", "some-layer-sha"},
} {
got := h.MustReadFile(t, filepath.Join(layerDir, data.name))
h.AssertStringContains(t, string(got), data.want)
}
})
it("does not restore launch=false layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-false.toml"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-false.sha"))
})
it("does not restore build=true, cache=false layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-build.sha"))
})
when("subset of buildpacks are detected", func() {
it.Before(func() {
analyzer.Buildpacks = []lifecycle.Buildpack{{ID: "no.cache.buildpack"}}
})
it("restores layers for detected buildpacks", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
path := filepath.Join(layerDir, "no.cache.buildpack", "some-layer.toml")
got := h.MustReadFile(t, path)
want := "[metadata]\n some-layer-key = \"some-layer-value\""
h.AssertStringContains(t, string(got), want)
})
it("does not restore layers for undetected buildpacks", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack"))
})
})
it("returns the analyzed metadata", func() {
md, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertEq(t, md.Image.Reference, "s0m3D1g3sT")
h.AssertEq(t, md.Metadata, appImageMetadata)
})
it("restores each store metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
for _, data := range []struct{ name, want string }{
// store.toml files.
{"metadata.buildpack/store.toml", "[metadata]\n [metadata.metadata-buildpack-store-data]\n store-key = \"store-val\""},
{"no.cache.buildpack/store.toml", "[metadata]\n [metadata.no-cache-buildpack-store-data]\n store-key = \"store-val\""},
} {
got := h.MustReadFile(t, filepath.Join(layerDir, data.name))
h.AssertStringContains(t, string(got), data.want)
}
})
when("cache exists", func() {
it.Before(func() {
metadata := h.MustReadFile(t, filepath.Join("testdata", "analyzer", "cache_metadata.json"))
var cacheMetadata lifecycle.CacheMetadata
h.AssertNil(t, json.Unmarshal(metadata, &cacheMetadata))
h.AssertNil(t, testCache.SetMetadata(cacheMetadata))
h.AssertNil(t, testCache.Commit())
analyzer.Buildpacks = append(analyzer.Buildpacks, lifecycle.Buildpack{ID: "escaped/buildpack/id"})
})
it("restores app and cache layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
for _, data := range []struct{ name, want string }{
// App layers.
{"metadata.buildpack/launch.toml", "[metadata]\n launch-key = \"launch-value\""},
{"metadata.buildpack/launch-build-cache.toml", "[metadata]\n launch-build-cache-key = \"launch-build-cache-value\""},
{"metadata.buildpack/launch-cache.toml", "[metadata]\n launch-cache-key = \"launch-cache-value\""},
{"no.cache.buildpack/some-layer.toml", "[metadata]\n some-layer-key = \"some-layer-value\""},
// Cache-image-only layers.
{"metadata.buildpack/cache.toml", "[metadata]\n cache-key = \"cache-value\""},
} {
got := h.MustReadFile(t, filepath.Join(layerDir, data.name))
h.AssertStringContains(t, string(got), data.want)
}
})
it("restores app and cache layer sha files, prefers app sha", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
for _, data := range []struct{ name, want string }{
{"metadata.buildpack/launch.sha", "launch-sha"},
{"metadata.buildpack/launch-build-cache.sha", "launch-build-cache-sha"},
{"metadata.buildpack/launch-cache.sha", "launch-cache-sha"},
{"no.cache.buildpack/some-layer.sha", "some-layer-sha"},
// Cache-image-only layers.
{"metadata.buildpack/cache.sha", "cache-sha"},
} {
got := h.MustReadFile(t, filepath.Join(layerDir, data.name))
h.AssertStringContains(t, string(got), data.want)
}
})
it("does not overwrite metadata from app image", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
for _, name := range []string{
"metadata.buildpack/launch-build-cache.toml",
"metadata.buildpack/launch-cache.toml",
} {
got := h.MustReadFile(t, filepath.Join(layerDir, name))
avoid := "[metadata]\n cache-only-key = \"cache-only-value\""
if strings.Contains(string(got), avoid) {
t.Errorf("Expected %q to not contain %q, got %q", name, avoid, got)
}
}
})
it("does not overwrite sha from app image", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
for _, name := range []string{
"metadata.buildpack/launch-build-cache.sha",
"metadata.buildpack/launch-cache.sha",
} {
got := h.MustReadFile(t, filepath.Join(layerDir, name))
avoid := "old-sha"
if strings.Contains(string(got), avoid) {
t.Errorf("Expected %q to not contain %q, got %q", name, avoid, got)
}
}
})
it("does not restore cache=true layers for non-selected groups", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "no.group.buildpack"))
})
it("does not restore launch=true layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-cache-not-in-app.toml"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-cache-not-in-app.sha"))
})
it("does not restore cache=false layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "cache-false.toml"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "cache-false.sha"))
})
it("restores escaped buildpack layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
path := filepath.Join(layerDir, "escaped_buildpack_id", "escaped-bp-layer.toml")
got := h.MustReadFile(t, path)
want := "[metadata]\n escaped-bp-layer-key = \"escaped-bp-layer-value\""
h.AssertStringContains(t, string(got), want)
})
when("subset of buildpacks are detected", func() {
it.Before(func() {
analyzer.Buildpacks = []lifecycle.Buildpack{{ID: "no.group.buildpack"}}
})
it("restores layers for detected buildpacks", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
path := filepath.Join(layerDir, "no.group.buildpack", "some-layer.toml")
got := h.MustReadFile(t, path)
want := "[metadata]\n some-layer-key = \"some-layer-value\""
h.AssertStringContains(t, string(got), want)
})
it("does not restore layers for undetected buildpacks", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "escaped_buildpack_id"))
})
})
})
when("skip-layers is true", func() {
it.Before(func() {
analyzer.SkipLayers = true
})
it("should return the analyzed metadata", func() {
md, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertEq(t, md.Image.Reference, "s0m3D1g3sT")
h.AssertEq(t, md.Metadata, appImageMetadata)
})
it("does not write buildpack layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
files, err := ioutil.ReadDir(layerDir)
h.AssertNil(t, err)
h.AssertEq(t, len(files), 2)
files, err = ioutil.ReadDir(filepath.Join(layerDir, "metadata.buildpack"))
h.AssertNil(t, err)
//expect 1 file b/c of store.toml
h.AssertEq(t, len(files), 1)
files, err = ioutil.ReadDir(filepath.Join(layerDir, "no.cache.buildpack"))
h.AssertNil(t, err)
//expect 1 file b/c of store.toml
h.AssertEq(t, len(files), 1)
})
it("restores each store metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
for _, data := range []struct{ name, want string }{
// store.toml files.
{"metadata.buildpack/store.toml", "[metadata]\n [metadata.metadata-buildpack-store-data]\n store-key = \"store-val\""},
{"no.cache.buildpack/store.toml", "[metadata]\n [metadata.no-cache-buildpack-store-data]\n store-key = \"store-val\""},
} {
got := h.MustReadFile(t, filepath.Join(layerDir, data.name))
h.AssertStringContains(t, string(got), data.want)
}
})
})
})
when("image is not found", func() {
it.Before(func() {
h.AssertNil(t, image.Delete())
})
when("cache exists", func() {
it.Before(func() {
metadata := h.MustReadFile(t, filepath.Join("testdata", "analyzer", "cache_metadata.json"))
var cacheMetadata lifecycle.CacheMetadata
h.AssertNil(t, json.Unmarshal(metadata, &cacheMetadata))
h.AssertNil(t, testCache.SetMetadata(cacheMetadata))
h.AssertNil(t, testCache.Commit())
analyzer.Buildpacks = append(analyzer.Buildpacks, lifecycle.Buildpack{ID: "escaped/buildpack/id"})
})
it("restores cache=true layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
for _, data := range []struct{ name, want string }{
{"metadata.buildpack/cache.toml", "[metadata]\n cache-key = \"cache-value\""},
} {
got := h.MustReadFile(t, filepath.Join(layerDir, data.name))
h.AssertStringContains(t, string(got), data.want)
}
})
it("does not restore launch=true layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-cache.toml"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-build-cache.toml"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-cache-not-in-app.toml"))
})
it("does not restore cache=false layer metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "cache-false.toml"))
})
it("returns a nil image in the analyzed metadata", func() {
md, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertNil(t, md.Image)
h.AssertEq(t, md.Metadata, lifecycle.LayersMetadata{})
})
})
when("cache is empty", func() {
it("does not restore any metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
files, err := ioutil.ReadDir(layerDir)
h.AssertNil(t, err)
h.AssertEq(t, len(files), 0)
})
it("returns a nil image in the analyzed metadata", func() {
md, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertNil(t, md.Image)
h.AssertEq(t, md.Metadata, lifecycle.LayersMetadata{})
})
})
when("cache is not provided", func() {
it("does not restore any metadata", func() {
_, err := analyzer.Analyze(image, nil)
h.AssertNil(t, err)
files, err := ioutil.ReadDir(layerDir)
h.AssertNil(t, err)
h.AssertEq(t, len(files), 0)
})
it("returns a nil image in the analyzed metadata", func() {
md, err := analyzer.Analyze(image, nil)
h.AssertNil(t, err)
h.AssertNil(t, md.Image)
h.AssertEq(t, md.Metadata, lifecycle.LayersMetadata{})
})
})
})
when("image does not have metadata label", func() {
it.Before(func() {
h.AssertNil(t, image.SetLabel("io.buildpacks.lifecycle.metadata", ""))
})
it("does not restore any metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
files, err := ioutil.ReadDir(layerDir)
h.AssertNil(t, err)
h.AssertEq(t, len(files), 0)
})
it("returns empty analyzed metadata", func() {
md, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertEq(t, md.Metadata, lifecycle.LayersMetadata{})
})
})
when("image has incompatible metadata", func() {
it.Before(func() {
h.AssertNil(t, image.SetLabel("io.buildpacks.lifecycle.metadata", `{["bad", "metadata"]}`))
})
it("does not restore any metadata", func() {
_, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
files, err := ioutil.ReadDir(layerDir)
h.AssertNil(t, err)
h.AssertEq(t, len(files), 0)
})
it("returns empty analyzed metadata", func() {
md, err := analyzer.Analyze(image, testCache)
h.AssertNil(t, err)
h.AssertEq(t, md.Metadata, lifecycle.LayersMetadata{})
})
})
})
}