@@ -30,16 +30,32 @@ func TestImageStreamByAnnotationSearcherAndResolver(t *testing.T) {
30
30
streams , images := fakeImageStreams (
31
31
& fakeImageStreamDesc {
32
32
name : "ruby" ,
33
- supports : map [string ]string {
34
- "ruby20" : "ruby:2.0,ruby:2.1,ruby" ,
35
- "ruby19" : "ruby:1.9,ruby:1.9.4,ruby" ,
33
+ tags : map [string ]imageapi.TagReference {
34
+ "ruby20" : {
35
+ Annotations : map [string ]string {
36
+ "supports" : "ruby:2.0,ruby:2.1,ruby" ,
37
+ },
38
+ },
39
+ "ruby19" : {
40
+ Annotations : map [string ]string {
41
+ "supports" : "ruby:1.9,ruby:1.9.4,ruby" ,
42
+ },
43
+ },
36
44
},
37
45
},
38
46
& fakeImageStreamDesc {
39
47
name : "wildfly" ,
40
- supports : map [string ]string {
41
- "v8" : "wildfly:8.0,java,jee" ,
42
- "v7" : "wildfly:7.0,java" ,
48
+ tags : map [string ]imageapi.TagReference {
49
+ "v8" : {
50
+ Annotations : map [string ]string {
51
+ "supports" : "wildfly:8.0,java,jee" ,
52
+ },
53
+ },
54
+ "v7" : {
55
+ Annotations : map [string ]string {
56
+ "supports" : "wildfly:7.0,java" ,
57
+ },
58
+ },
43
59
},
44
60
},
45
61
)
@@ -93,17 +109,56 @@ func TestImageStreamByAnnotationSearcherAndResolver(t *testing.T) {
93
109
94
110
func TestImageStreamSearcher (t * testing.T ) {
95
111
streams , images := fakeImageStreams (
112
+ & fakeImageStreamDesc {
113
+ name : "nodejs1" ,
114
+ tags : map [string ]imageapi.TagReference {
115
+ "0.10" : {
116
+ Annotations : map [string ]string {
117
+ "supports" : "nodejs1:0.10,nodejs1:0.1,nodejs1" ,
118
+ "tags" : "hidden" ,
119
+ },
120
+ },
121
+ "4" : {
122
+ Annotations : map [string ]string {
123
+ "supports" : "nodejs1:4,nodejs1" ,
124
+ },
125
+ },
126
+ },
127
+ },
128
+ & fakeImageStreamDesc {
129
+ name : "nodejs2" ,
130
+ tags : map [string ]imageapi.TagReference {
131
+ "0.10" : {
132
+ Annotations : map [string ]string {
133
+ "supports" : "nodejs2:0.10,nodejs2:0.1,nodejs2" ,
134
+ "tags" : "hidden" ,
135
+ },
136
+ },
137
+ },
138
+ },
96
139
& fakeImageStreamDesc {
97
140
name : "ruby20" ,
98
- supports : map [string ]string {
99
- "stable" : "ruby:1.9,ruby:1.9.4" ,
141
+ tags : map [string ]imageapi.TagReference {
142
+ "stable" : {
143
+ Annotations : map [string ]string {
144
+ "supports" : "ruby:1.9,ruby:1.9.4" ,
145
+ },
146
+ },
100
147
},
101
148
},
102
149
& fakeImageStreamDesc {
103
150
name : "wildfly" ,
104
- supports : map [string ]string {
105
- "v8" : "java,jee" ,
106
- "v7" : "java" ,
151
+ tags : map [string ]imageapi.TagReference {
152
+ "v8" : {
153
+ Annotations : map [string ]string {
154
+ "supports" : "java,jee" ,
155
+ },
156
+ },
157
+ "v7" : {
158
+ Annotations : map [string ]string {
159
+ "supports" : "java" ,
160
+ },
161
+ },
107
162
},
108
163
latest : "v8" ,
109
164
},
@@ -130,6 +185,15 @@ func TestImageStreamSearcher(t *testing.T) {
130
185
expectMatch : true ,
131
186
expectTag : "v8" ,
132
187
},
188
+ {
189
+ value : "nodejs1" ,
190
+ expectMatch : true ,
191
+ expectTag : "4" ,
192
+ },
193
+ {
194
+ value : "nodejs2" ,
195
+ expectMatch : false ,
196
+ },
133
197
}
134
198
135
199
for _ , test := range tests {
@@ -138,15 +202,15 @@ func TestImageStreamSearcher(t *testing.T) {
138
202
t .Errorf ("Expected a search match for %s. Got none: %v" , test .value , errs )
139
203
}
140
204
if len (searchResults ) == 1 && ! test .expectMatch {
141
- t .Errorf ("Did not expect search a match for %s. Got a match: %#v" , test .value , searchResults [0 ])
205
+ t .Errorf ("Did not expect a search match for %s. Got a match: %#v" , test .value , searchResults [0 ])
142
206
}
143
207
144
208
result , err := resolver .Resolve (test .value )
145
209
if err != nil && test .expectMatch {
146
210
t .Errorf ("Expected a resolve match for %s. Got none: %v" , test .value , err )
147
211
}
148
212
if err == nil && ! test .expectMatch {
149
- t .Errorf ("Did not expect resolve a match for %s. Got a match: %v" , test .value , err )
213
+ t .Errorf ("Did not expect a resolve match for %s. Got a match: %# v" , test .value , result )
150
214
}
151
215
if err != nil {
152
216
continue
@@ -218,11 +282,26 @@ func TestMatchSupportsAnnotation(t *testing.T) {
218
282
}
219
283
220
284
func TestAnnotationMatches (t * testing.T ) {
221
- stream , images := fakeImageStream ("builder" , map [string ]string {
222
- "ruby" : "ruby,ruby:2.0,ruby:1.9" ,
223
- "java" : "java,jee,wildfly" ,
224
- "wildfly" : "wildfly:8.0" ,
225
- }, "" )
285
+ stream , images := fakeImageStream (& fakeImageStreamDesc {
286
+ name : "builder" ,
287
+ tags : map [string ]imageapi.TagReference {
288
+ "ruby" : {
289
+ Annotations : map [string ]string {
290
+ "supports" : "ruby,ruby:2.0,ruby:1.9" ,
291
+ },
292
+ },
293
+ "java" : {
294
+ Annotations : map [string ]string {
295
+ "supports" : "java,jee,wildfly" ,
296
+ },
297
+ },
298
+ "wildfly" : {
299
+ Annotations : map [string ]string {
300
+ "supports" : "wildfly:8.0" ,
301
+ },
302
+ },
303
+ },
304
+ latest : "" })
226
305
client := testImageStreamClient (nil , images )
227
306
searcher := NewImageStreamByAnnotationSearcher (client , client , []string {"default" }).(* ImageStreamByAnnotationSearcher )
228
307
tests := []struct {
@@ -279,9 +358,9 @@ func TestAnnotationMatches(t *testing.T) {
279
358
}
280
359
281
360
type fakeImageStreamDesc struct {
282
- name string
283
- supports map [string ]string
284
- latest string
361
+ name string
362
+ tags map [string ]imageapi. TagReference
363
+ latest string
285
364
}
286
365
287
366
func fakeImageStreams (descs ... * fakeImageStreamDesc ) (* imageapi.ImageStreamList , map [string ]* imageapi.ImageStreamImage ) {
@@ -290,7 +369,7 @@ func fakeImageStreams(descs ...*fakeImageStreamDesc) (*imageapi.ImageStreamList,
290
369
}
291
370
allImages := map [string ]* imageapi.ImageStreamImage {}
292
371
for _ , desc := range descs {
293
- stream , images := fakeImageStream (desc . name , desc . supports , desc . latest )
372
+ stream , images := fakeImageStream (desc )
294
373
streams .Items = append (streams .Items , * stream )
295
374
for k , v := range images {
296
375
allImages [k ] = v
@@ -299,10 +378,11 @@ func fakeImageStreams(descs ...*fakeImageStreamDesc) (*imageapi.ImageStreamList,
299
378
return streams , allImages
300
379
}
301
380
302
- func fakeImageStream (name string , supports map [ string ] string , latest string ) (* imageapi.ImageStream , map [string ]* imageapi.ImageStreamImage ) {
381
+ func fakeImageStream (desc * fakeImageStreamDesc ) (* imageapi.ImageStream , map [string ]* imageapi.ImageStreamImage ) {
303
382
stream := & imageapi.ImageStream {
304
383
ObjectMeta : kapi.ObjectMeta {
305
- Name : name ,
384
+ Name : desc .name ,
385
+ Namespace : "namespace" ,
306
386
},
307
387
Spec : imageapi.ImageStreamSpec {
308
388
Tags : map [string ]imageapi.TagReference {},
@@ -312,31 +392,28 @@ func fakeImageStream(name string, supports map[string]string, latest string) (*i
312
392
},
313
393
}
314
394
images := map [string ]* imageapi.ImageStreamImage {}
315
- for tag , value := range supports {
316
- stream .Spec .Tags [tag ] = imageapi.TagReference {
317
- Annotations : map [string ]string {
318
- "supports" : value ,
319
- },
320
- }
395
+ for tag , value := range desc .tags {
396
+ stream .Spec .Tags [tag ] = value
321
397
stream .Status .Tags [tag ] = imageapi.TagEventList {
322
398
Items : []imageapi.TagEvent {
323
399
{
324
400
Image : tag + "-image" ,
325
401
},
326
402
},
327
403
}
328
- images [name + "@" + tag + "-image" ] = & imageapi.ImageStreamImage {
404
+ images [desc . name + "@" + tag + "-image" ] = & imageapi.ImageStreamImage {
329
405
Image : imageapi.Image {
330
406
DockerImageReference : "example/" + tag ,
331
407
DockerImageMetadata : imageapi.DockerImage {ID : tag },
332
408
},
333
409
}
334
410
}
335
- if len (latest ) > 0 {
411
+ if len (desc . latest ) > 0 {
336
412
stream .Spec .Tags ["latest" ] = imageapi.TagReference {
337
413
From : & kapi.ObjectReference {
338
- Kind : "ImageStreamTag" ,
339
- Name : latest ,
414
+ Kind : "ImageStreamTag" ,
415
+ Name : desc .latest ,
416
+ Namespace : "namespace" ,
340
417
},
341
418
}
342
419
}
0 commit comments