forked from buildpacks/lifecycle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayer_metadata_restorer_test.go
415 lines (347 loc) · 16.5 KB
/
layer_metadata_restorer_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
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/sclevine/spec"
"github.com/sclevine/spec/report"
"github.com/buildpacks/lifecycle"
"github.com/buildpacks/lifecycle/api"
"github.com/buildpacks/lifecycle/buildpack"
"github.com/buildpacks/lifecycle/platform"
h "github.com/buildpacks/lifecycle/testhelpers"
)
func TestLayerMetadataRestorer(t *testing.T) {
spec.Run(t, "LayerMetadataRestorer", testLayerMetadataRestorer, spec.Report(report.Terminal{}))
}
func testLayerMetadataRestorer(t *testing.T, when spec.G, it spec.S) {
var (
layerDir string
layerMetadataRestorer lifecycle.LayerMetadataRestorer
layerSHAStore lifecycle.LayerSHAStore
layersMetadata platform.LayersMetadata
cacheMetadata platform.CacheMetadata
buildpacks []buildpack.GroupBuildpack
skipLayers bool
useShaFiles bool
logger log.Logger
)
it.Before(func() {
var err error
layerDir, err = ioutil.TempDir("", "lifecycle-layer-dir")
h.AssertNil(t, err)
useShaFiles = true // notice - the default for platform API >= 0.7 is false (it's set to false in some of the tests)
logger = log.Logger{Handler: &discard.Handler{}}
layerMetadataRestorer = lifecycle.NewLayerMetadataRestorer(&logger, layerDir, skipLayers)
layerSHAStore = lifecycle.NewLayerSHAStore(useShaFiles)
})
it.After(func() {
h.AssertNil(t, os.RemoveAll(layerDir))
})
when("#Restore", func() {
it.Before(func() {
buildpacks = []buildpack.GroupBuildpack{
{ID: "metadata.buildpack", API: api.Buildpack.Latest().String()},
{ID: "no.cache.buildpack", API: api.Buildpack.Latest().String()},
{ID: "escaped/buildpack/id", API: api.Buildpack.Latest().String()},
}
})
when("app and cache metadata are not present", func() {
it("does not restore any metadata", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
files, err := ioutil.ReadDir(layerDir)
h.AssertNil(t, err)
h.AssertEq(t, len(files), 0)
})
})
when("only app metadata is present", func() {
it.Before(func() {
layerMetaDataJSON := h.MustReadFile(t, filepath.Join("testdata", "analyzer", "app_metadata.json"))
h.AssertNil(t, json.Unmarshal(layerMetaDataJSON, &layersMetadata))
})
it("restores each store metadata", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
files, err := ioutil.ReadDir(layerDir)
h.AssertNil(t, err)
h.AssertEq(t, len(files), 2)
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("only cache metadata is present", func() {
it.Before(func() {
cacheMetaDataJSON := h.MustReadFile(t, filepath.Join("testdata", "analyzer", "cache_metadata.json"))
h.AssertNil(t, json.Unmarshal(cacheMetaDataJSON, &cacheMetadata))
})
it("does not restore each store metadata", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
for _, file := range []string{
// store.toml files.
"metadata.buildpack/store.toml",
"no.cache.buildpack/store.toml",
} {
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, file))
}
})
})
when("app and cache metadata are present", func() {
it.Before(func() {
cacheMetaDataJSON := h.MustReadFile(t, filepath.Join("testdata", "analyzer", "cache_metadata.json"))
h.AssertNil(t, json.Unmarshal(cacheMetaDataJSON, &cacheMetadata))
layerMetaDataJSON := h.MustReadFile(t, filepath.Join("testdata", "analyzer", "app_metadata.json"))
h.AssertNil(t, json.Unmarshal(layerMetaDataJSON, &layersMetadata))
})
it("restores app and cache layer metadata", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
unsetFlags := "[types]"
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)
h.AssertStringDoesNotContain(t, string(got), unsetFlags) // The [types] table shouldn't exist. The build, cache and launch flags are set to false.
}
})
when("buildpack api < 0.6", func() {
it("restores layer metadata and preserves the values of the launch, build and cache flags in top level", func() {
buildpacks = []buildpack.GroupBuildpack{
{ID: "metadata.buildpack", API: "0.5"},
{ID: "no.cache.buildpack", API: "0.5"},
}
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
for _, data := range []struct{ name, want string }{
{"metadata.buildpack/launch.toml", "build = false\nlaunch = true\ncache = false\n\n[metadata]\n launch-key = \"launch-value\""},
{"no.cache.buildpack/some-layer.toml", "build = false\nlaunch = true\ncache = false\n\n[metadata]\n some-layer-key = \"some-layer-value\""},
} {
got := h.MustReadFile(t, filepath.Join(layerDir, data.name))
h.AssertStringContains(t, string(got), data.want)
}
})
})
when("buildpack api >= 0.6", func() {
it("restores layer metadata without the launch, build and cache flags", func() {
buildpacks = []buildpack.GroupBuildpack{
{ID: "metadata.buildpack", API: api.Buildpack.Latest().String()},
{ID: "no.cache.buildpack", API: api.Buildpack.Latest().String()},
}
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
unsetFlags := "[types]"
for _, data := range []struct{ name, want string }{
{"metadata.buildpack/launch.toml", "[metadata]\n launch-key = \"launch-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)
h.AssertStringDoesNotContain(t, string(got), unsetFlags) // The [types] table shouldn't exist. The build, cache and launch flags are set to false.
}
})
})
when("restoring sha files is not needed", func() {
it.Before(func() {
useShaFiles = false
layerMetadataRestorer = lifecycle.NewLayerMetadataRestorer(&logger, layerDir, skipLayers)
layerSHAStore = lifecycle.NewLayerSHAStore(useShaFiles)
})
it("does not restore sha files", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack/launch.sha", "launch-sha"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack/launch-build-cache.sha", "launch-build-cache-sha"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack/launch-cache.sha", "launch-cache-sha"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "no.cache.buildpack/some-layer.sha", "some-layer-sha"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-cache-not-in-app.sha"))
})
})
it("restores app and cache layer sha files, prefers app sha", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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 := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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 := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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 := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "no.group.buildpack"))
})
it("does not restore launch=true layer metadata", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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 := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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("does not restore launch=false layer metadata", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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 := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-build.sha"))
})
it("restores escaped buildpack layer metadata", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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)
})
it("restores each store metadata", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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("app and cache metadata are inconsistent with each other", func() { // cache was manipulated or deleted
it.Before(func() {
metadata := h.MustReadFile(t, filepath.Join("testdata", "analyzer", "cache_inconsistent_metadata.json"))
h.AssertNil(t, json.Unmarshal(metadata, &cacheMetadata))
})
when("app metadata cache=true, cache metadata cache=false", func() {
it("treats the layer as cache=false", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "cache.toml"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-build-cache.toml"))
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack", "launch-cache.toml"))
})
})
})
when("subset of buildpacks are detected", func() {
it.Before(func() {
buildpacks = []buildpack.GroupBuildpack{{ID: "no.cache.buildpack", API: api.Buildpack.Latest().String()}}
})
it("restores layers for detected buildpacks", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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 := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack"))
})
})
when("there are no buildpacks are detected", func() {
it.Before(func() {
buildpacks = []buildpack.GroupBuildpack{}
})
it("does not restore layers for any buildpacks", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
h.AssertNil(t, err)
h.AssertPathDoesNotExist(t, filepath.Join(layerDir, "metadata.buildpack"))
})
})
when("skip layers is true", func() {
it.Before(func() {
skipLayers = true
layerMetadataRestorer = lifecycle.NewLayerMetadataRestorer(&logger, layerDir, skipLayers)
})
it("does not write buildpack layer metadata", func() {
err := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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 := layerMetadataRestorer.Restore(buildpacks, layersMetadata, cacheMetadata, layerSHAStore)
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)
}
})
})
})
})
}