@@ -13,16 +13,41 @@ import (
13
13
)
14
14
15
15
func TestCreateImageImport (t * testing.T ) {
16
- testCases := [ ]struct {
16
+ testCases := map [ string ]struct {
17
17
name string
18
18
stream * imageapi.ImageStream
19
19
all bool
20
+ confirm bool
20
21
insecure * bool
21
22
err string
22
23
expected []imageapi.ImageImportSpec
23
24
}{
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" : {
26
51
name : "testis" ,
27
52
stream : & imageapi.ImageStream {
28
53
ObjectMeta : kapi.ObjectMeta {
@@ -41,8 +66,7 @@ func TestCreateImageImport(t *testing.T) {
41
66
},
42
67
}},
43
68
},
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" : {
46
70
name : "testis" ,
47
71
stream : & imageapi.ImageStream {
48
72
ObjectMeta : kapi.ObjectMeta {
@@ -62,8 +86,7 @@ func TestCreateImageImport(t *testing.T) {
62
86
},
63
87
}},
64
88
},
65
- {
66
- // 2: with --all flag only .spec.dockerImageRepository is handled
89
+ "import all error for .spec.dockerImageRepository" : {
67
90
name : "testis" ,
68
91
stream : & imageapi.ImageStream {
69
92
ObjectMeta : kapi.ObjectMeta {
@@ -81,8 +104,7 @@ func TestCreateImageImport(t *testing.T) {
81
104
all : true ,
82
105
err : "all is applicable only to images with spec.dockerImageRepository" ,
83
106
},
84
- {
85
- // 3: empty image stream
107
+ "empty image stream" : {
86
108
name : "testis" ,
87
109
stream : & imageapi.ImageStream {
88
110
ObjectMeta : kapi.ObjectMeta {
@@ -92,8 +114,7 @@ func TestCreateImageImport(t *testing.T) {
92
114
},
93
115
err : "image stream has not defined anything to import" ,
94
116
},
95
- {
96
- // 4: correct import of latest tag with tags specified in .spec.Tags
117
+ "import latest tag" : {
97
118
name : "testis:latest" ,
98
119
stream : & imageapi.ImageStream {
99
120
ObjectMeta : kapi.ObjectMeta {
@@ -115,8 +136,29 @@ func TestCreateImageImport(t *testing.T) {
115
136
},
116
137
}},
117
138
},
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" : {
120
162
name : "testis:latest" ,
121
163
stream : & imageapi.ImageStream {
122
164
ObjectMeta : kapi.ObjectMeta {
@@ -133,8 +175,7 @@ func TestCreateImageImport(t *testing.T) {
133
175
},
134
176
err : "does not exist on the image stream" ,
135
177
},
136
- {
137
- // 6: insecure annotation should be applied to tags if exists
178
+ "use insecure annotation" : {
138
179
name : "testis" ,
139
180
stream : & imageapi.ImageStream {
140
181
ObjectMeta : kapi.ObjectMeta {
@@ -155,8 +196,7 @@ func TestCreateImageImport(t *testing.T) {
155
196
ImportPolicy : imageapi.TagImportPolicy {Insecure : true },
156
197
}},
157
198
},
158
- {
159
- // 7: insecure annotation should be overridden by the flag
199
+ "insecure flag overrides insecure annotation" : {
160
200
name : "testis" ,
161
201
stream : & imageapi.ImageStream {
162
202
ObjectMeta : kapi.ObjectMeta {
@@ -180,52 +220,57 @@ func TestCreateImageImport(t *testing.T) {
180
220
},
181
221
}
182
222
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
+ }
185
230
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 ("" ),
191
236
}
192
237
// we need to run Validate, because it sets appropriate Name and Tag
193
238
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 )
195
240
}
196
241
197
242
_ , isi , err := o .createImageImport ()
198
243
// check errors
199
244
if len (test .err ) > 0 {
200
245
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 )
202
247
}
203
248
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 )
205
250
}
206
251
continue
207
252
}
208
253
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 )
210
255
continue
211
256
}
212
257
// check values
213
258
if test .all {
214
259
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 )
216
261
}
217
262
} else {
218
263
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 ))
220
265
}
221
266
for i := 0 ; i < len (test .expected ); i ++ {
222
267
actual := isi .Spec .Images [i ]
223
268
expected := test .expected [i ]
224
269
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 )
226
271
}
227
272
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 )
229
274
}
230
275
}
231
276
}
0 commit comments