@@ -63,7 +63,20 @@ func controllerSetup(startingObjects []runtime.Object, t *testing.T, stopCh <-ch
63
63
return kubeclient , fakeWatch , controller , informerFactory
64
64
}
65
65
66
- func wrapHandler (indicator chan bool , handler func (string ) error , t * testing.T ) func (string ) error {
66
+ func wrapHandler (indicator chan bool , handler func () error , t * testing.T ) func () error {
67
+ return func () error {
68
+ defer func () { indicator <- true }()
69
+
70
+ err := handler ()
71
+ if err != nil {
72
+ t .Errorf ("unexpected error: %v" , err )
73
+ }
74
+
75
+ return err
76
+ }
77
+ }
78
+
79
+ func wrapStringHandler (indicator chan bool , handler func (string ) error , t * testing.T ) func (string ) error {
67
80
return func (key string ) error {
68
81
defer func () { indicator <- true }()
69
82
@@ -129,7 +142,7 @@ func TestUpdateNewStyleSecret(t *testing.T) {
129
142
130
143
kubeclient , fakeWatch , controller , informerFactory := controllerSetup ([]runtime.Object {newStyleDockercfgSecret }, t , stopChannel )
131
144
controller .syncRegistryLocationHandler = wrapHandler (received , controller .syncRegistryLocationChange , t )
132
- controller .syncSecretHandler = wrapHandler (updatedSecret , controller .syncSecretUpdate , t )
145
+ controller .syncSecretHandler = wrapStringHandler (updatedSecret , controller .syncSecretUpdate , t )
133
146
informerFactory .Start (stopChannel )
134
147
go controller .Run (5 , stopChannel )
135
148
@@ -218,7 +231,7 @@ func TestUpdateOldStyleSecretWithKey(t *testing.T) {
218
231
219
232
kubeclient , fakeWatch , controller , informerFactory := controllerSetup ([]runtime.Object {oldStyleDockercfgSecret }, t , stopChannel )
220
233
controller .syncRegistryLocationHandler = wrapHandler (received , controller .syncRegistryLocationChange , t )
221
- controller .syncSecretHandler = wrapHandler (updatedSecret , controller .syncSecretUpdate , t )
234
+ controller .syncSecretHandler = wrapStringHandler (updatedSecret , controller .syncSecretUpdate , t )
222
235
informerFactory .Start (stopChannel )
223
236
go controller .Run (5 , stopChannel )
224
237
@@ -309,7 +322,7 @@ func TestUpdateOldStyleSecretWithoutKey(t *testing.T) {
309
322
return true , tokenSecret , nil
310
323
})
311
324
controller .syncRegistryLocationHandler = wrapHandler (received , controller .syncRegistryLocationChange , t )
312
- controller .syncSecretHandler = wrapHandler (updatedSecret , controller .syncSecretUpdate , t )
325
+ controller .syncSecretHandler = wrapStringHandler (updatedSecret , controller .syncSecretUpdate , t )
313
326
informerFactory .Start (stopChannel )
314
327
go controller .Run (5 , stopChannel )
315
328
@@ -400,7 +413,7 @@ func TestClearSecretAndRecreate(t *testing.T) {
400
413
401
414
kubeclient , fakeWatch , controller , informerFactory := controllerSetup ([]runtime.Object {registryService , oldStyleDockercfgSecret }, t , stopChannel )
402
415
controller .syncRegistryLocationHandler = wrapHandler (received , controller .syncRegistryLocationChange , t )
403
- controller .syncSecretHandler = wrapHandler (updatedSecret , controller .syncSecretUpdate , t )
416
+ controller .syncSecretHandler = wrapStringHandler (updatedSecret , controller .syncSecretUpdate , t )
404
417
informerFactory .Start (stopChannel )
405
418
go controller .Run (5 , stopChannel )
406
419
0 commit comments