-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathimage_test.go
479 lines (442 loc) · 11.7 KB
/
image_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
/*
Copyright 2019 The Skaffold Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package docker
import (
"context"
"io/ioutil"
"os"
"sync"
"sync/atomic"
"testing"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/schema/latest"
"github.com/GoogleContainerTools/skaffold/pkg/skaffold/util"
"github.com/GoogleContainerTools/skaffold/testutil"
"github.com/docker/docker/api/types"
"github.com/docker/docker/client"
"github.com/google/go-cmp/cmp"
"github.com/google/go-containerregistry/pkg/name"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/random"
)
func TestMain(m *testing.M) {
// So we don't shell out to credentials helpers or try to read dockercfg
defer func(h AuthConfigHelper) { DefaultAuthHelper = h }(DefaultAuthHelper)
DefaultAuthHelper = testAuthHelper{}
os.Exit(m.Run())
}
func TestPush(t *testing.T) {
var tests = []struct {
description string
imageName string
api testutil.FakeAPIClient
expectedDigest string
shouldErr bool
}{
{
description: "push",
imageName: "gcr.io/scratchman",
api: testutil.FakeAPIClient{
TagToImageID: map[string]string{
"gcr.io/scratchman": "sha256:imageIDabcab",
},
},
expectedDigest: "sha256:7368613235363a696d61676549446162636162e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
},
{
description: "stream error",
imageName: "gcr.io/imthescratchman",
api: testutil.FakeAPIClient{
ErrStream: true,
},
shouldErr: true,
},
{
description: "image push error",
imageName: "gcr.io/skibabopbadopbop",
api: testutil.FakeAPIClient{
ErrImagePush: true,
},
shouldErr: true,
},
}
for _, test := range tests {
t.Run(test.description, func(t *testing.T) {
localDocker := &localDaemon{
apiClient: &test.api,
}
digest, err := localDocker.Push(context.Background(), ioutil.Discard, test.imageName)
testutil.CheckErrorAndDeepEqual(t, test.shouldErr, err, test.expectedDigest, digest)
})
}
}
func TestRunBuild(t *testing.T) {
var tests = []struct {
description string
expected string
api testutil.FakeAPIClient
shouldErr bool
}{
{
description: "build",
expected: "test",
},
{
description: "bad image build",
api: testutil.FakeAPIClient{
ErrImageBuild: true,
},
shouldErr: true,
},
{
description: "bad return reader",
api: testutil.FakeAPIClient{
ErrStream: true,
},
shouldErr: true,
},
}
for _, test := range tests {
t.Run(test.description, func(t *testing.T) {
localDocker := &localDaemon{
apiClient: &test.api,
}
_, err := localDocker.Build(context.Background(), ioutil.Discard, ".", &latest.DockerArtifact{}, "finalimage")
testutil.CheckError(t, test.shouldErr, err)
})
}
}
func TestImageID(t *testing.T) {
var tests = []struct {
description string
ref string
api testutil.FakeAPIClient
expected string
shouldErr bool
}{
{
description: "get digest",
ref: "identifier:latest",
api: testutil.FakeAPIClient{
TagToImageID: map[string]string{
"identifier:latest": "sha256:123abc",
},
},
expected: "sha256:123abc",
},
{
description: "image inspect error",
ref: "test",
api: testutil.FakeAPIClient{
ErrImageInspect: true,
},
shouldErr: true,
},
{
description: "not found",
ref: "somethingelse",
shouldErr: true,
},
}
for _, test := range tests {
t.Run(test.description, func(t *testing.T) {
localDocker := &localDaemon{
apiClient: &test.api,
}
imageID, err := localDocker.ImageID(context.Background(), test.ref)
testutil.CheckErrorAndDeepEqual(t, test.shouldErr, err, test.expected, imageID)
})
}
}
func TestGetBuildArgs(t *testing.T) {
tests := []struct {
description string
artifact *latest.DockerArtifact
env []string
want []string
shouldErr bool
}{
{
description: "build args",
artifact: &latest.DockerArtifact{
BuildArgs: map[string]*string{
"key1": util.StringPtr("value1"),
"key2": nil,
"key3": util.StringPtr("{{.FOO}}"),
},
},
env: []string{"FOO=bar"},
want: []string{"--build-arg", "key1=value1", "--build-arg", "key2", "--build-arg", "key3=bar"},
},
{
description: "build args",
artifact: &latest.DockerArtifact{
BuildArgs: map[string]*string{
"key1": util.StringPtr("value1"),
"key2": nil,
"key3": util.StringPtr("{{.DOES_NOT_EXIST}}"),
},
},
shouldErr: true,
},
{
description: "cache from",
artifact: &latest.DockerArtifact{
CacheFrom: []string{"gcr.io/foo/bar", "baz:latest"},
},
want: []string{"--cache-from", "gcr.io/foo/bar", "--cache-from", "baz:latest"},
},
{
description: "target",
artifact: &latest.DockerArtifact{
Target: "stage1",
},
want: []string{"--target", "stage1"},
},
{
description: "network mode",
artifact: &latest.DockerArtifact{
NetworkMode: "Bridge",
},
want: []string{"--network", "bridge"},
},
{
description: "no-cache",
artifact: &latest.DockerArtifact{
NoCache: true,
},
want: []string{"--no-cache"},
},
{
description: "all",
artifact: &latest.DockerArtifact{
BuildArgs: map[string]*string{
"key1": util.StringPtr("value1"),
},
CacheFrom: []string{"foo"},
Target: "stage1",
NetworkMode: "None",
},
want: []string{"--build-arg", "key1=value1", "--cache-from", "foo", "--target", "stage1", "--network", "none"},
},
}
for _, tt := range tests {
t.Run(tt.description, func(t *testing.T) {
util.OSEnviron = func() []string {
return tt.env
}
result, err := GetBuildArgs(tt.artifact)
if tt.shouldErr && err != nil {
t.Errorf("expected to see an error, but saw none")
}
if tt.shouldErr {
return
}
if diff := cmp.Diff(result, tt.want); diff != "" {
t.Errorf("%T differ (-got, +want): %s", tt.want, diff)
}
})
}
}
func TestImageExists(t *testing.T) {
tests := []struct {
name string
tagToImageID map[string]string
image string
errImageInspect bool
expected bool
}{
{
name: "image exists",
image: "image:tag",
tagToImageID: map[string]string{"image:tag": "imageID"},
expected: true,
}, {
name: "image does not exist",
image: "dne",
errImageInspect: true,
tagToImageID: map[string]string{"image:tag": "imageID"},
}, {
name: "error getting image",
tagToImageID: map[string]string{"image:tag": "imageID"},
errImageInspect: true,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
api := &testutil.FakeAPIClient{
ErrImageInspect: test.errImageInspect,
TagToImageID: test.tagToImageID,
}
localDocker := &localDaemon{
apiClient: api,
}
actual := localDocker.ImageExists(context.Background(), test.image)
testutil.CheckErrorAndDeepEqual(t, false, nil, test.expected, actual)
})
}
}
func TestRepoDigest(t *testing.T) {
tests := []struct {
name string
image string
tagToImageID map[string]string
repoDigests []string
errImageInspect bool
shouldErr bool
expected string
}{
{
name: "repo digest exists",
image: "image:tag",
tagToImageID: map[string]string{"image:tag": "image", "image1:tag": "image1"},
repoDigests: []string{"repoDigest", "repoDigest1"},
expected: "repoDigest",
},
{
name: "repo digest does not exist",
image: "image",
tagToImageID: map[string]string{},
repoDigests: []string{},
shouldErr: true,
},
{
name: "err getting repo digest",
image: "image:tag",
errImageInspect: true,
shouldErr: true,
tagToImageID: map[string]string{"image:tag": "image", "image1:tag": "image1"},
repoDigests: []string{"repoDigest", "repoDigest1"},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
api := &testutil.FakeAPIClient{
ErrImageInspect: test.errImageInspect,
TagToImageID: test.tagToImageID,
RepoDigests: test.repoDigests,
}
localDocker := &localDaemon{
apiClient: api,
}
actual, err := localDocker.RepoDigest(context.Background(), test.image)
testutil.CheckError(t, test.shouldErr, err)
if test.shouldErr {
return
}
testutil.CheckErrorAndDeepEqual(t, false, err, test.expected, actual)
})
}
}
func TestInsecureRegistry(t *testing.T) {
called := false // variable to make sure we've called our getInsecureRegistry function
getInsecureRegistryImpl = func(_ string) (name.Reference, error) {
called = true
return name.Tag{}, nil
}
getRemoteImageImpl = func(_ name.Reference) (v1.Image, error) {
return random.Image(0, 0)
}
tests := []struct {
name string
image string
insecureRegistries map[string]bool
insecure bool
shouldErr bool
}{
{
name: "secure image",
image: "gcr.io/secure/image",
insecureRegistries: map[string]bool{},
},
{
name: "insecure image",
image: "my.insecure.registry/image",
insecureRegistries: map[string]bool{
"my.insecure.registry": true,
},
insecure: true,
},
{
name: "insecure image not provided by user",
image: "my.insecure.registry/image",
insecure: true,
shouldErr: true,
},
{
name: "secure image provided in insecure registries list",
image: "gcr.io/secure/image",
insecureRegistries: map[string]bool{
"gcr.io": true,
},
shouldErr: true,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
_, err := remoteImage(test.image, test.insecureRegistries)
if err != nil {
t.Errorf("error calling remoteImage: %s", err.Error())
}
if test.insecure && !called { // error condition
if !test.shouldErr {
t.Errorf("getInsecureRegistry not called for insecure registry")
}
}
if !test.insecure && called { // error condition
if !test.shouldErr {
t.Errorf("getInsecureRegistry called for secure registry")
}
}
called = false
})
}
}
func TestConfigFile(t *testing.T) {
api := &testutil.FakeAPIClient{
TagToImageID: map[string]string{
"gcr.io/image": "sha256:imageIDabcab",
},
}
localDocker := NewLocalDaemon(api, nil, false, nil)
cfg, err := localDocker.ConfigFile(context.Background(), "gcr.io/image")
testutil.CheckErrorAndDeepEqual(t, false, err, "sha256:imageIDabcab", cfg.Config.Image)
}
type APICallsCounter struct {
client.CommonAPIClient
calls int32
}
func (c *APICallsCounter) ImageInspectWithRaw(ctx context.Context, image string) (types.ImageInspect, []byte, error) {
atomic.AddInt32(&c.calls, 1)
return c.CommonAPIClient.ImageInspectWithRaw(ctx, image)
}
func TestConfigFileConcurrentCalls(t *testing.T) {
api := &APICallsCounter{
CommonAPIClient: &testutil.FakeAPIClient{
TagToImageID: map[string]string{
"gcr.io/image": "sha256:imageIDabcab",
},
},
}
localDocker := NewLocalDaemon(api, nil, false, nil)
var wg sync.WaitGroup
for i := 0; i < 100; i++ {
wg.Add(1)
go func() {
localDocker.ConfigFile(context.Background(), "gcr.io/image")
wg.Done()
}()
}
wg.Wait()
// Check that the APIClient was called only once
testutil.CheckDeepEqual(t, int32(1), atomic.LoadInt32(&api.calls))
}