Pull controller-go back into this repository as internal/controllerlib.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
Matt Moyer
2020-08-28 10:59:09 -05:00
parent 371b172616
commit a503fa8673
35 changed files with 1700 additions and 147 deletions

View File

@@ -0,0 +1,29 @@
/*
Copyright 2020 VMware, Inc.
SPDX-License-Identifier: Apache-2.0
*/
package controllerlib
import (
"testing"
)
func TestSync(t *testing.T, controller Controller, ctx Context) error {
t.Helper() // force testing import to discourage external use
return controller.sync(ctx)
}
func TestWrap(t *testing.T, controller Controller, wrapper SyncWrapperFunc) {
t.Helper() // force testing import to discourage external use
controller.wrap(wrapper)
}
// Just enough of the internal implementation of controller.Run() to allow
// "running" the controller without any goroutines being involved. For use
// in synchronous unit tests that wish to invoke TestSync() directly.
func TestRunSynchronously(t *testing.T, controller Controller) {
t.Helper() // force testing import to discourage external use
controller.invokeAllRunOpts()
controller.waitForCacheSyncWithTimeout()
}