pkg/injection/clients/dynamicclient/dynamicclient_test.go

67 lines
1.6 KiB
Go

/*
Copyright 2019 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package dynamicclient
import (
"context"
"testing"
"k8s.io/client-go/rest"
"knative.dev/pkg/controller"
"knative.dev/pkg/injection"
)
func TestGetPanic(t *testing.T) {
ctx := context.Background()
defer func() {
if r := recover(); r == nil {
t.Error("Get() should have panicked")
}
}()
// Get before registration
if empty := Get(ctx); empty != nil {
t.Errorf("Unexpected informer: %v", empty)
}
}
func TestRegistration(t *testing.T) {
ctx := context.Background()
// Check how many informers have registered.
inffs := injection.Default.GetClients()
if want, got := 1, len(inffs); want != got {
t.Errorf("GetClients() = %d, wanted %d", want, got)
}
// Setup the informers.
var infs []controller.Informer
ctx, infs = injection.Default.SetupInformers(ctx, &rest.Config{})
// We should see that a single informer was set up.
if want, got := 0, len(infs); want != got {
t.Errorf("SetupInformers() = %d, wanted %d", want, got)
}
// Get our informer from the context.
if inf := Get(ctx); inf == nil {
t.Error("Get() = nil, wanted non-nil")
}
}