@@ -150,29 +150,47 @@ func TestList(t *testing.T) {
150
150
151
151
func TestGet (t * testing.T ) {
152
152
tcs := []struct {
153
+ resource string
153
154
namespace string
154
155
name string
155
156
path string
156
157
resp []byte
157
158
want * unstructured.Unstructured
158
159
}{
159
160
{
160
- name : "normal_get" ,
161
- path : "/api/gtest/vtest/rtest/normal_get" ,
162
- resp : getJSON ("vTest" , "rTest" , "normal_get" ),
163
- want : getObject ("vTest" , "rTest" , "normal_get" ),
161
+ resource : "rtest" ,
162
+ name : "normal_get" ,
163
+ path : "/api/gtest/vtest/rtest/normal_get" ,
164
+ resp : getJSON ("vTest" , "rTest" , "normal_get" ),
165
+ want : getObject ("vTest" , "rTest" , "normal_get" ),
164
166
},
165
167
{
168
+ resource : "rtest" ,
166
169
namespace : "nstest" ,
167
170
name : "namespaced_get" ,
168
171
path : "/api/gtest/vtest/namespaces/nstest/rtest/namespaced_get" ,
169
172
resp : getJSON ("vTest" , "rTest" , "namespaced_get" ),
170
173
want : getObject ("vTest" , "rTest" , "namespaced_get" ),
171
174
},
175
+ {
176
+ resource : "rtest/srtest" ,
177
+ name : "normal_subresource_get" ,
178
+ path : "/api/gtest/vtest/rtest/normal_subresource_get/srtest" ,
179
+ resp : getJSON ("vTest" , "srTest" , "normal_subresource_get" ),
180
+ want : getObject ("vTest" , "srTest" , "normal_subresource_get" ),
181
+ },
182
+ {
183
+ resource : "rtest/srtest" ,
184
+ namespace : "nstest" ,
185
+ name : "namespaced_subresource_get" ,
186
+ path : "/api/gtest/vtest/namespaces/nstest/rtest/namespaced_subresource_get/srtest" ,
187
+ resp : getJSON ("vTest" , "srTest" , "namespaced_subresource_get" ),
188
+ want : getObject ("vTest" , "srTest" , "namespaced_subresource_get" ),
189
+ },
172
190
}
173
191
for _ , tc := range tcs {
174
192
gv := & schema.GroupVersion {Group : "gtest" , Version : "vtest" }
175
- resource := & metav1.APIResource {Name : "rtest" , Namespaced : len (tc .namespace ) != 0 }
193
+ resource := & metav1.APIResource {Name : tc . resource , Namespaced : len (tc .namespace ) != 0 }
176
194
cl , srv , err := getClientServer (gv , func (w http.ResponseWriter , r * http.Request ) {
177
195
if r .Method != "GET" {
178
196
t .Errorf ("Get(%q) got HTTP method %s. wanted GET" , tc .name , r .Method )
@@ -303,26 +321,42 @@ func TestDeleteCollection(t *testing.T) {
303
321
304
322
func TestCreate (t * testing.T ) {
305
323
tcs := []struct {
324
+ resource string
306
325
name string
307
326
namespace string
308
327
obj * unstructured.Unstructured
309
328
path string
310
329
}{
311
330
{
312
- name : "normal_create" ,
313
- path : "/api/gtest/vtest/rtest" ,
314
- obj : getObject ("vTest" , "rTest" , "normal_create" ),
331
+ resource : "rtest" ,
332
+ name : "normal_create" ,
333
+ path : "/api/gtest/vtest/rtest" ,
334
+ obj : getObject ("vTest" , "rTest" , "normal_create" ),
315
335
},
316
336
{
337
+ resource : "rtest" ,
317
338
name : "namespaced_create" ,
318
339
namespace : "nstest" ,
319
340
path : "/api/gtest/vtest/namespaces/nstest/rtest" ,
320
341
obj : getObject ("vTest" , "rTest" , "namespaced_create" ),
321
342
},
343
+ {
344
+ resource : "rtest/srtest" ,
345
+ name : "normal_subresource_create" ,
346
+ path : "/api/gtest/vtest/rtest/normal_subresource_create/srtest" ,
347
+ obj : getObject ("vTest" , "srTest" , "normal_subresource_create" ),
348
+ },
349
+ {
350
+ resource : "rtest/srtest" ,
351
+ name : "namespaced_subresource_create" ,
352
+ namespace : "nstest" ,
353
+ path : "/api/gtest/vtest/namespaces/nstest/rtest/namespaced_subresource_create/srtest" ,
354
+ obj : getObject ("vTest" , "srTest" , "namespaced_subresource_create" ),
355
+ },
322
356
}
323
357
for _ , tc := range tcs {
324
358
gv := & schema.GroupVersion {Group : "gtest" , Version : "vtest" }
325
- resource := & metav1.APIResource {Name : "rtest" , Namespaced : len (tc .namespace ) != 0 }
359
+ resource := & metav1.APIResource {Name : tc . resource , Namespaced : len (tc .namespace ) != 0 }
326
360
cl , srv , err := getClientServer (gv , func (w http.ResponseWriter , r * http.Request ) {
327
361
if r .Method != "POST" {
328
362
t .Errorf ("Create(%q) got HTTP method %s. wanted POST" , tc .name , r .Method )
@@ -362,26 +396,42 @@ func TestCreate(t *testing.T) {
362
396
363
397
func TestUpdate (t * testing.T ) {
364
398
tcs := []struct {
399
+ resource string
365
400
name string
366
401
namespace string
367
402
obj * unstructured.Unstructured
368
403
path string
369
404
}{
370
405
{
371
- name : "normal_update" ,
372
- path : "/api/gtest/vtest/rtest/normal_update" ,
373
- obj : getObject ("vTest" , "rTest" , "normal_update" ),
406
+ resource : "rtest" ,
407
+ name : "normal_update" ,
408
+ path : "/api/gtest/vtest/rtest/normal_update" ,
409
+ obj : getObject ("vTest" , "rTest" , "normal_update" ),
374
410
},
375
411
{
412
+ resource : "rtest" ,
376
413
name : "namespaced_update" ,
377
414
namespace : "nstest" ,
378
415
path : "/api/gtest/vtest/namespaces/nstest/rtest/namespaced_update" ,
379
416
obj : getObject ("vTest" , "rTest" , "namespaced_update" ),
380
417
},
418
+ {
419
+ resource : "rtest/srtest" ,
420
+ name : "normal_subresource_update" ,
421
+ path : "/api/gtest/vtest/rtest/normal_update/srtest" ,
422
+ obj : getObject ("vTest" , "srTest" , "normal_update" ),
423
+ },
424
+ {
425
+ resource : "rtest/srtest" ,
426
+ name : "namespaced_subresource_update" ,
427
+ namespace : "nstest" ,
428
+ path : "/api/gtest/vtest/namespaces/nstest/rtest/namespaced_update/srtest" ,
429
+ obj : getObject ("vTest" , "srTest" , "namespaced_update" ),
430
+ },
381
431
}
382
432
for _ , tc := range tcs {
383
433
gv := & schema.GroupVersion {Group : "gtest" , Version : "vtest" }
384
- resource := & metav1.APIResource {Name : "rtest" , Namespaced : len (tc .namespace ) != 0 }
434
+ resource := & metav1.APIResource {Name : tc . resource , Namespaced : len (tc .namespace ) != 0 }
385
435
cl , srv , err := getClientServer (gv , func (w http.ResponseWriter , r * http.Request ) {
386
436
if r .Method != "PUT" {
387
437
t .Errorf ("Update(%q) got HTTP method %s. wanted PUT" , tc .name , r .Method )
@@ -492,29 +542,47 @@ func TestWatch(t *testing.T) {
492
542
493
543
func TestPatch (t * testing.T ) {
494
544
tcs := []struct {
545
+ resource string
495
546
name string
496
547
namespace string
497
548
patch []byte
498
549
want * unstructured.Unstructured
499
550
path string
500
551
}{
501
552
{
502
- name : "normal_patch" ,
503
- path : "/api/gtest/vtest/rtest/normal_patch" ,
504
- patch : getJSON ("vTest" , "rTest" , "normal_patch" ),
505
- want : getObject ("vTest" , "rTest" , "normal_patch" ),
553
+ resource : "rtest" ,
554
+ name : "normal_patch" ,
555
+ path : "/api/gtest/vtest/rtest/normal_patch" ,
556
+ patch : getJSON ("vTest" , "rTest" , "normal_patch" ),
557
+ want : getObject ("vTest" , "rTest" , "normal_patch" ),
506
558
},
507
559
{
560
+ resource : "rtest" ,
508
561
name : "namespaced_patch" ,
509
562
namespace : "nstest" ,
510
563
path : "/api/gtest/vtest/namespaces/nstest/rtest/namespaced_patch" ,
511
564
patch : getJSON ("vTest" , "rTest" , "namespaced_patch" ),
512
565
want : getObject ("vTest" , "rTest" , "namespaced_patch" ),
513
566
},
567
+ {
568
+ resource : "rtest/srtest" ,
569
+ name : "normal_subresource_patch" ,
570
+ path : "/api/gtest/vtest/rtest/normal_subresource_patch/srtest" ,
571
+ patch : getJSON ("vTest" , "srTest" , "normal_subresource_patch" ),
572
+ want : getObject ("vTest" , "srTest" , "normal_subresource_patch" ),
573
+ },
574
+ {
575
+ resource : "rtest/srtest" ,
576
+ name : "namespaced_subresource_patch" ,
577
+ namespace : "nstest" ,
578
+ path : "/api/gtest/vtest/namespaces/nstest/rtest/namespaced_subresource_patch/srtest" ,
579
+ patch : getJSON ("vTest" , "srTest" , "namespaced_subresource_patch" ),
580
+ want : getObject ("vTest" , "srTest" , "namespaced_subresource_patch" ),
581
+ },
514
582
}
515
583
for _ , tc := range tcs {
516
584
gv := & schema.GroupVersion {Group : "gtest" , Version : "vtest" }
517
- resource := & metav1.APIResource {Name : "rtest" , Namespaced : len (tc .namespace ) != 0 }
585
+ resource := & metav1.APIResource {Name : tc . resource , Namespaced : len (tc .namespace ) != 0 }
518
586
cl , srv , err := getClientServer (gv , func (w http.ResponseWriter , r * http.Request ) {
519
587
if r .Method != "PATCH" {
520
588
t .Errorf ("Patch(%q) got HTTP method %s. wanted PATCH" , tc .name , r .Method )
0 commit comments