Skip to content

Commit a445de0

Browse files
committed
Increase the tests coverage for import-image command
1 parent f4e025b commit a445de0

File tree

1 file changed

+77
-32
lines changed

1 file changed

+77
-32
lines changed

pkg/cmd/cli/cmd/importimage_test.go

+77-32
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,41 @@ import (
1313
)
1414

1515
func TestCreateImageImport(t *testing.T) {
16-
testCases := []struct {
16+
testCases := map[string]struct {
1717
name string
1818
stream *imageapi.ImageStream
1919
all bool
20+
confirm bool
2021
insecure *bool
2122
err string
2223
expected []imageapi.ImageImportSpec
2324
}{
24-
{
25-
// 0: checking import's from when only .spec.dockerImageRepository is set, no status
25+
"import from non-existing": {
26+
name: "nonexisting",
27+
err: "pass --confirm to create and import",
28+
},
29+
"confirmed import from non-existing": {
30+
name: "nonexisting",
31+
confirm: true,
32+
expected: []imageapi.ImageImportSpec{{
33+
From: kapi.ObjectReference{
34+
Kind: "DockerImage",
35+
Name: "nonexisting",
36+
},
37+
}},
38+
},
39+
"confirmed import all from non-existing": {
40+
name: "nonexisting",
41+
all: true,
42+
confirm: true,
43+
expected: []imageapi.ImageImportSpec{{
44+
From: kapi.ObjectReference{
45+
Kind: "DockerImage",
46+
Name: "nonexisting",
47+
},
48+
}},
49+
},
50+
"import from .spec.dockerImageRepository": {
2651
name: "testis",
2752
stream: &imageapi.ImageStream{
2853
ObjectMeta: kapi.ObjectMeta{
@@ -41,8 +66,7 @@ func TestCreateImageImport(t *testing.T) {
4166
},
4267
}},
4368
},
44-
{
45-
// 1: checking import's from when only .spec.dockerImageRepository is set, no status (with all flag set)
69+
"import all from .spec.dockerImageRepository": {
4670
name: "testis",
4771
stream: &imageapi.ImageStream{
4872
ObjectMeta: kapi.ObjectMeta{
@@ -62,8 +86,7 @@ func TestCreateImageImport(t *testing.T) {
6286
},
6387
}},
6488
},
65-
{
66-
// 2: with --all flag only .spec.dockerImageRepository is handled
89+
"import all error for .spec.dockerImageRepository": {
6790
name: "testis",
6891
stream: &imageapi.ImageStream{
6992
ObjectMeta: kapi.ObjectMeta{
@@ -81,8 +104,7 @@ func TestCreateImageImport(t *testing.T) {
81104
all: true,
82105
err: "all is applicable only to images with spec.dockerImageRepository",
83106
},
84-
{
85-
// 3: empty image stream
107+
"empty image stream": {
86108
name: "testis",
87109
stream: &imageapi.ImageStream{
88110
ObjectMeta: kapi.ObjectMeta{
@@ -92,8 +114,7 @@ func TestCreateImageImport(t *testing.T) {
92114
},
93115
err: "image stream has not defined anything to import",
94116
},
95-
{
96-
// 4: correct import of latest tag with tags specified in .spec.Tags
117+
"import latest tag": {
97118
name: "testis:latest",
98119
stream: &imageapi.ImageStream{
99120
ObjectMeta: kapi.ObjectMeta{
@@ -115,8 +136,29 @@ func TestCreateImageImport(t *testing.T) {
115136
},
116137
}},
117138
},
118-
{
119-
// 5: import latest from image stream which has only tags specified and no latest
139+
"import existing tag": {
140+
name: "testis:existing",
141+
stream: &imageapi.ImageStream{
142+
ObjectMeta: kapi.ObjectMeta{
143+
Name: "testis",
144+
Namespace: "other",
145+
},
146+
Spec: imageapi.ImageStreamSpec{
147+
Tags: map[string]imageapi.TagReference{
148+
"existing": {
149+
From: &kapi.ObjectReference{Kind: "DockerImage", Name: "repo.com/somens/someimage:latest"},
150+
},
151+
},
152+
},
153+
},
154+
expected: []imageapi.ImageImportSpec{{
155+
From: kapi.ObjectReference{
156+
Kind: "DockerImage",
157+
Name: "repo.com/somens/someimage:latest",
158+
},
159+
}},
160+
},
161+
"import non-existing tag": {
120162
name: "testis:latest",
121163
stream: &imageapi.ImageStream{
122164
ObjectMeta: kapi.ObjectMeta{
@@ -133,8 +175,7 @@ func TestCreateImageImport(t *testing.T) {
133175
},
134176
err: "does not exist on the image stream",
135177
},
136-
{
137-
// 6: insecure annotation should be applied to tags if exists
178+
"use insecure annotation": {
138179
name: "testis",
139180
stream: &imageapi.ImageStream{
140181
ObjectMeta: kapi.ObjectMeta{
@@ -155,8 +196,7 @@ func TestCreateImageImport(t *testing.T) {
155196
ImportPolicy: imageapi.TagImportPolicy{Insecure: true},
156197
}},
157198
},
158-
{
159-
// 7: insecure annotation should be overridden by the flag
199+
"insecure flag overrides insecure annotation": {
160200
name: "testis",
161201
stream: &imageapi.ImageStream{
162202
ObjectMeta: kapi.ObjectMeta{
@@ -180,52 +220,57 @@ func TestCreateImageImport(t *testing.T) {
180220
},
181221
}
182222

183-
for idx, test := range testCases {
184-
fake := testclient.NewSimpleFake(test.stream)
223+
for name, test := range testCases {
224+
var fake *testclient.Fake
225+
if test.stream == nil {
226+
fake = testclient.NewSimpleFake()
227+
} else {
228+
fake = testclient.NewSimpleFake(test.stream)
229+
}
185230
o := ImportImageOptions{
186-
Target: test.stream.Name,
187-
All: test.all,
188-
Insecure: test.insecure,
189-
Namespace: test.stream.Namespace,
190-
isClient: fake.ImageStreams(test.stream.Namespace),
231+
Target: test.name,
232+
All: test.all,
233+
Insecure: test.insecure,
234+
Confirm: test.confirm,
235+
isClient: fake.ImageStreams(""),
191236
}
192237
// we need to run Validate, because it sets appropriate Name and Tag
193238
if err := o.Validate(&cobra.Command{}); err != nil {
194-
t.Errorf("(%d) unexpected error: %v", idx, err)
239+
t.Errorf("%s: unexpected error: %v", name, err)
195240
}
196241

197242
_, isi, err := o.createImageImport()
198243
// check errors
199244
if len(test.err) > 0 {
200245
if err == nil || !strings.Contains(err.Error(), test.err) {
201-
t.Errorf("(%d) unexpected error: expected %s, got %v", idx, test.err, err)
246+
t.Errorf("%s: unexpected error: expected %s, got %v", name, test.err, err)
202247
}
203248
if isi != nil {
204-
t.Errorf("(%d) unexpected import spec: expected nil, got %#v", idx, isi)
249+
t.Errorf("%s: unexpected import spec: expected nil, got %#v", name, isi)
205250
}
206251
continue
207252
}
208253
if len(test.err) == 0 && err != nil {
209-
t.Errorf("(%d) unexpected error: %v", idx, err)
254+
t.Errorf("%s: unexpected error: %v", name, err)
210255
continue
211256
}
212257
// check values
213258
if test.all {
214259
if !kapi.Semantic.DeepEqual(isi.Spec.Repository.From, test.expected[0].From) {
215-
t.Errorf("(%d) unexpected import spec, expected %#v, got %#v", idx, test.expected[0].From, isi.Spec.Repository.From)
260+
t.Errorf("%s: unexpected import spec.From, expected %#v, got %#v", name, test.expected[0].From, isi.Spec.Repository.From)
216261
}
217262
} else {
218263
if len(isi.Spec.Images) != len(test.expected) {
219-
t.Errorf("(%d) unexpected number of images, expected %d, got %d", idx, len(test.expected), len(isi.Spec.Images))
264+
t.Errorf("%s: unexpected number of images, expected %d, got %d", name, len(test.expected), len(isi.Spec.Images))
220265
}
221266
for i := 0; i < len(test.expected); i++ {
222267
actual := isi.Spec.Images[i]
223268
expected := test.expected[i]
224269
if !kapi.Semantic.DeepEqual(actual.ImportPolicy, expected.ImportPolicy) {
225-
t.Errorf("(%d) unexpected import[%d] policy, expected %v, got %v", idx, i, expected.ImportPolicy, actual.ImportPolicy)
270+
t.Errorf("%s: unexpected import[%d] policy, expected %v, got %v", name, i, expected.ImportPolicy, actual.ImportPolicy)
226271
}
227272
if !kapi.Semantic.DeepEqual(actual.From, expected.From) {
228-
t.Errorf("(%d) unexpected import[%d] from, expected %#v, got %#v", idx, i, expected.From, actual.From)
273+
t.Errorf("%s: unexpected import[%d] from, expected %#v, got %#v", name, i, expected.From, actual.From)
229274
}
230275
}
231276
}

0 commit comments

Comments
 (0)