mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	Merge pull request #53944 from gregory-m/sample-controller-tests
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Sample controller tests **What this PR does / why we need it**: This PR adds unit tests to sample-controller. **Special notes for your reviewer**: This is currently based on the munnerz:sample-controller branch. Please don't merged it until #52753 is merged.
This commit is contained in:
		@@ -1,4 +1,4 @@
 | 
			
		||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
 | 
			
		||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
 | 
			
		||||
 | 
			
		||||
go_library(
 | 
			
		||||
    name = "go_default_library",
 | 
			
		||||
@@ -18,6 +18,7 @@ go_library(
 | 
			
		||||
        "//vendor/k8s.io/apimachinery/pkg/util/runtime:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/client-go/informers:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/client-go/informers/apps/v1:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/client-go/kubernetes:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/client-go/kubernetes/scheme:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/client-go/kubernetes/typed/core/v1:go_default_library",
 | 
			
		||||
@@ -30,6 +31,7 @@ go_library(
 | 
			
		||||
        "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned/scheme:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/sample-controller/pkg/client/informers/externalversions:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/sample-controller/pkg/client/informers/externalversions/samplecontroller/v1alpha1:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/sample-controller/pkg/client/listers/samplecontroller/v1alpha1:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/sample-controller/pkg/signals:go_default_library",
 | 
			
		||||
    ],
 | 
			
		||||
@@ -61,3 +63,24 @@ filegroup(
 | 
			
		||||
    tags = ["automanaged"],
 | 
			
		||||
    visibility = ["//visibility:public"],
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
go_test(
 | 
			
		||||
    name = "go_default_test",
 | 
			
		||||
    srcs = ["controller_test.go"],
 | 
			
		||||
    embed = [":go_default_library"],
 | 
			
		||||
    deps = [
 | 
			
		||||
        "//vendor/k8s.io/api/apps/v1:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/apimachinery/pkg/util/diff:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/client-go/informers:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/client-go/kubernetes/fake:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/client-go/testing:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/client-go/tools/cache:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/client-go/tools/record:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned/fake:go_default_library",
 | 
			
		||||
        "//vendor/k8s.io/sample-controller/pkg/client/informers/externalversions:go_default_library",
 | 
			
		||||
    ],
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										120
									
								
								staging/src/k8s.io/sample-controller/Godeps/Godeps.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										120
									
								
								staging/src/k8s.io/sample-controller/Godeps/Godeps.json
									
									
									
										generated
									
									
									
								
							@@ -626,6 +626,10 @@
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/scheme",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
@@ -634,118 +638,234 @@
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1beta2",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1beta2/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/authentication/v1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/authentication/v1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/authentication/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/authentication/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/authorization/v1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/authorization/v1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/authorization/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/authorization/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v2alpha1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v2alpha1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/certificates/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/certificates/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/core/v1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/core/v1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/events/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/events/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/extensions/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/extensions/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/networking/v1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/networking/v1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/policy/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/policy/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/scheduling/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/scheduling/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/settings/v1alpha1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/settings/v1alpha1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1alpha1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1alpha1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1beta1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1beta1/fake",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"ImportPath": "k8s.io/client-go/listers/admissionregistration/v1alpha1",
 | 
			
		||||
			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
 | 
			
		||||
 
 | 
			
		||||
@@ -28,7 +28,7 @@ import (
 | 
			
		||||
	"k8s.io/apimachinery/pkg/runtime/schema"
 | 
			
		||||
	"k8s.io/apimachinery/pkg/util/runtime"
 | 
			
		||||
	"k8s.io/apimachinery/pkg/util/wait"
 | 
			
		||||
	kubeinformers "k8s.io/client-go/informers"
 | 
			
		||||
	appsinformers "k8s.io/client-go/informers/apps/v1"
 | 
			
		||||
	"k8s.io/client-go/kubernetes"
 | 
			
		||||
	"k8s.io/client-go/kubernetes/scheme"
 | 
			
		||||
	typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1"
 | 
			
		||||
@@ -40,7 +40,7 @@ import (
 | 
			
		||||
	samplev1alpha1 "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1"
 | 
			
		||||
	clientset "k8s.io/sample-controller/pkg/client/clientset/versioned"
 | 
			
		||||
	samplescheme "k8s.io/sample-controller/pkg/client/clientset/versioned/scheme"
 | 
			
		||||
	informers "k8s.io/sample-controller/pkg/client/informers/externalversions"
 | 
			
		||||
	informers "k8s.io/sample-controller/pkg/client/informers/externalversions/samplecontroller/v1alpha1"
 | 
			
		||||
	listers "k8s.io/sample-controller/pkg/client/listers/samplecontroller/v1alpha1"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@@ -88,13 +88,8 @@ type Controller struct {
 | 
			
		||||
func NewController(
 | 
			
		||||
	kubeclientset kubernetes.Interface,
 | 
			
		||||
	sampleclientset clientset.Interface,
 | 
			
		||||
	kubeInformerFactory kubeinformers.SharedInformerFactory,
 | 
			
		||||
	sampleInformerFactory informers.SharedInformerFactory) *Controller {
 | 
			
		||||
 | 
			
		||||
	// obtain references to shared index informers for the Deployment and Foo
 | 
			
		||||
	// types.
 | 
			
		||||
	deploymentInformer := kubeInformerFactory.Apps().V1().Deployments()
 | 
			
		||||
	fooInformer := sampleInformerFactory.Samplecontroller().V1alpha1().Foos()
 | 
			
		||||
	deploymentInformer appsinformers.DeploymentInformer,
 | 
			
		||||
	fooInformer informers.FooInformer) *Controller {
 | 
			
		||||
 | 
			
		||||
	// Create event broadcaster
 | 
			
		||||
	// Add sample-controller types to the default Kubernetes Scheme so Events can be
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										313
									
								
								staging/src/k8s.io/sample-controller/controller_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										313
									
								
								staging/src/k8s.io/sample-controller/controller_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,313 @@
 | 
			
		||||
/*
 | 
			
		||||
Copyright 2017 The Kubernetes 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 main
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"reflect"
 | 
			
		||||
	"testing"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	apps "k8s.io/api/apps/v1"
 | 
			
		||||
	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 | 
			
		||||
	"k8s.io/apimachinery/pkg/runtime"
 | 
			
		||||
	"k8s.io/apimachinery/pkg/runtime/schema"
 | 
			
		||||
	"k8s.io/apimachinery/pkg/util/diff"
 | 
			
		||||
	kubeinformers "k8s.io/client-go/informers"
 | 
			
		||||
	k8sfake "k8s.io/client-go/kubernetes/fake"
 | 
			
		||||
	core "k8s.io/client-go/testing"
 | 
			
		||||
	"k8s.io/client-go/tools/cache"
 | 
			
		||||
	"k8s.io/client-go/tools/record"
 | 
			
		||||
 | 
			
		||||
	samplecontroller "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1"
 | 
			
		||||
	"k8s.io/sample-controller/pkg/client/clientset/versioned/fake"
 | 
			
		||||
	informers "k8s.io/sample-controller/pkg/client/informers/externalversions"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var (
 | 
			
		||||
	alwaysReady        = func() bool { return true }
 | 
			
		||||
	noResyncPeriodFunc = func() time.Duration { return 0 }
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
type fixture struct {
 | 
			
		||||
	t *testing.T
 | 
			
		||||
 | 
			
		||||
	client     *fake.Clientset
 | 
			
		||||
	kubeclient *k8sfake.Clientset
 | 
			
		||||
	// Objects to put in the store.
 | 
			
		||||
	fooLister        []*samplecontroller.Foo
 | 
			
		||||
	deploymentLister []*apps.Deployment
 | 
			
		||||
	// Actions expected to happen on the client.
 | 
			
		||||
	kubeactions []core.Action
 | 
			
		||||
	actions     []core.Action
 | 
			
		||||
	// Objects from here preloaded into NewSimpleFake.
 | 
			
		||||
	kubeobjects []runtime.Object
 | 
			
		||||
	objects     []runtime.Object
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func newFixture(t *testing.T) *fixture {
 | 
			
		||||
	f := &fixture{}
 | 
			
		||||
	f.t = t
 | 
			
		||||
	f.objects = []runtime.Object{}
 | 
			
		||||
	f.kubeobjects = []runtime.Object{}
 | 
			
		||||
	return f
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func newFoo(name string, replicas *int32) *samplecontroller.Foo {
 | 
			
		||||
	return &samplecontroller.Foo{
 | 
			
		||||
		TypeMeta: metav1.TypeMeta{APIVersion: samplecontroller.SchemeGroupVersion.String()},
 | 
			
		||||
		ObjectMeta: metav1.ObjectMeta{
 | 
			
		||||
			Name:      name,
 | 
			
		||||
			Namespace: metav1.NamespaceDefault,
 | 
			
		||||
		},
 | 
			
		||||
		Spec: samplecontroller.FooSpec{
 | 
			
		||||
			DeploymentName: fmt.Sprintf("%s-deployment", name),
 | 
			
		||||
			Replicas:       replicas,
 | 
			
		||||
		},
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *fixture) newController() (*Controller, informers.SharedInformerFactory, kubeinformers.SharedInformerFactory) {
 | 
			
		||||
	f.client = fake.NewSimpleClientset(f.objects...)
 | 
			
		||||
	f.kubeclient = k8sfake.NewSimpleClientset(f.kubeobjects...)
 | 
			
		||||
 | 
			
		||||
	i := informers.NewSharedInformerFactory(f.client, noResyncPeriodFunc())
 | 
			
		||||
	k8sI := kubeinformers.NewSharedInformerFactory(f.kubeclient, noResyncPeriodFunc())
 | 
			
		||||
 | 
			
		||||
	c := NewController(f.kubeclient, f.client,
 | 
			
		||||
		k8sI.Apps().V1().Deployments(), i.Samplecontroller().V1alpha1().Foos())
 | 
			
		||||
 | 
			
		||||
	c.foosSynced = alwaysReady
 | 
			
		||||
	c.deploymentsSynced = alwaysReady
 | 
			
		||||
	c.recorder = &record.FakeRecorder{}
 | 
			
		||||
 | 
			
		||||
	for _, f := range f.fooLister {
 | 
			
		||||
		i.Samplecontroller().V1alpha1().Foos().Informer().GetIndexer().Add(f)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	for _, d := range f.deploymentLister {
 | 
			
		||||
		k8sI.Apps().V1().Deployments().Informer().GetIndexer().Add(d)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return c, i, k8sI
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *fixture) run(fooName string) {
 | 
			
		||||
	f.runController(fooName, true, false)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *fixture) runExpectError(fooName string) {
 | 
			
		||||
	f.runController(fooName, true, true)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *fixture) runController(fooName string, startInformers bool, expectError bool) {
 | 
			
		||||
	c, i, k8sI := f.newController()
 | 
			
		||||
	if startInformers {
 | 
			
		||||
		stopCh := make(chan struct{})
 | 
			
		||||
		defer close(stopCh)
 | 
			
		||||
		i.Start(stopCh)
 | 
			
		||||
		k8sI.Start(stopCh)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	err := c.syncHandler(fooName)
 | 
			
		||||
	if !expectError && err != nil {
 | 
			
		||||
		f.t.Errorf("error syncing foo: %v", err)
 | 
			
		||||
	} else if expectError && err == nil {
 | 
			
		||||
		f.t.Error("expected error syncing foo, got nil")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	actions := filterInformerActions(f.client.Actions())
 | 
			
		||||
	for i, action := range actions {
 | 
			
		||||
		if len(f.actions) < i+1 {
 | 
			
		||||
			f.t.Errorf("%d unexpected actions: %+v", len(actions)-len(f.actions), actions[i:])
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		expectedAction := f.actions[i]
 | 
			
		||||
		checkAction(expectedAction, action, f.t)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if len(f.actions) > len(actions) {
 | 
			
		||||
		f.t.Errorf("%d additional expected actions:%+v", len(f.actions)-len(actions), f.actions[len(actions):])
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	k8sActions := filterInformerActions(f.kubeclient.Actions())
 | 
			
		||||
	for i, action := range k8sActions {
 | 
			
		||||
		if len(f.kubeactions) < i+1 {
 | 
			
		||||
			f.t.Errorf("%d unexpected actions: %+v", len(k8sActions)-len(f.kubeactions), k8sActions[i:])
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		expectedAction := f.kubeactions[i]
 | 
			
		||||
		checkAction(expectedAction, action, f.t)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if len(f.kubeactions) > len(k8sActions) {
 | 
			
		||||
		f.t.Errorf("%d additional expected actions:%+v", len(f.kubeactions)-len(k8sActions), f.kubeactions[len(k8sActions):])
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// checkAction verifies that expected and actual actions are equal and both have
 | 
			
		||||
// same attached resources
 | 
			
		||||
func checkAction(expected, actual core.Action, t *testing.T) {
 | 
			
		||||
	if !(expected.Matches(actual.GetVerb(), actual.GetResource().Resource) && actual.GetSubresource() == expected.GetSubresource()) {
 | 
			
		||||
		t.Errorf("Expected\n\t%#v\ngot\n\t%#v", expected, actual)
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if reflect.TypeOf(actual) != reflect.TypeOf(expected) {
 | 
			
		||||
		t.Errorf("Action has wrong type. Expected: %t. Got: %t", expected, actual)
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	switch a := actual.(type) {
 | 
			
		||||
	case core.CreateAction:
 | 
			
		||||
		e, _ := expected.(core.CreateAction)
 | 
			
		||||
		expObject := e.GetObject()
 | 
			
		||||
		object := a.GetObject()
 | 
			
		||||
 | 
			
		||||
		if !reflect.DeepEqual(expObject, object) {
 | 
			
		||||
			t.Errorf("Action %s %s has wrong object\nDiff:\n %s",
 | 
			
		||||
				a.GetVerb(), a.GetResource().Resource, diff.ObjectGoPrintDiff(expObject, object))
 | 
			
		||||
		}
 | 
			
		||||
	case core.UpdateAction:
 | 
			
		||||
		e, _ := expected.(core.UpdateAction)
 | 
			
		||||
		expObject := e.GetObject()
 | 
			
		||||
		object := a.GetObject()
 | 
			
		||||
 | 
			
		||||
		if !reflect.DeepEqual(expObject, object) {
 | 
			
		||||
			t.Errorf("Action %s %s has wrong object\nDiff:\n %s",
 | 
			
		||||
				a.GetVerb(), a.GetResource().Resource, diff.ObjectGoPrintDiff(expObject, object))
 | 
			
		||||
		}
 | 
			
		||||
	case core.PatchAction:
 | 
			
		||||
		e, _ := expected.(core.PatchAction)
 | 
			
		||||
		expPatch := e.GetPatch()
 | 
			
		||||
		patch := a.GetPatch()
 | 
			
		||||
 | 
			
		||||
		if !reflect.DeepEqual(expPatch, expPatch) {
 | 
			
		||||
			t.Errorf("Action %s %s has wrong patch\nDiff:\n %s",
 | 
			
		||||
				a.GetVerb(), a.GetResource().Resource, diff.ObjectGoPrintDiff(expPatch, patch))
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// filterInformerActions filters list and watch actions for testing resources.
 | 
			
		||||
// Since list and watch don't change resource state we can filter it to lower
 | 
			
		||||
// nose level in our tests.
 | 
			
		||||
func filterInformerActions(actions []core.Action) []core.Action {
 | 
			
		||||
	ret := []core.Action{}
 | 
			
		||||
	for _, action := range actions {
 | 
			
		||||
		if len(action.GetNamespace()) == 0 &&
 | 
			
		||||
			(action.Matches("list", "foos") ||
 | 
			
		||||
				action.Matches("watch", "foos") ||
 | 
			
		||||
				action.Matches("list", "deployments") ||
 | 
			
		||||
				action.Matches("watch", "deployments")) {
 | 
			
		||||
			continue
 | 
			
		||||
		}
 | 
			
		||||
		ret = append(ret, action)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return ret
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *fixture) expectCreateDeploymentAction(d *apps.Deployment) {
 | 
			
		||||
	f.kubeactions = append(f.kubeactions, core.NewCreateAction(schema.GroupVersionResource{Resource: "deployments"}, d.Namespace, d))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *fixture) expectUpdateDeploymentAction(d *apps.Deployment) {
 | 
			
		||||
	f.kubeactions = append(f.kubeactions, core.NewUpdateAction(schema.GroupVersionResource{Resource: "deployments"}, d.Namespace, d))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (f *fixture) expectUpdateFooStatusAction(foo *samplecontroller.Foo) {
 | 
			
		||||
	action := core.NewUpdateAction(schema.GroupVersionResource{Resource: "foos"}, foo.Namespace, foo)
 | 
			
		||||
	// TODO: Until #38113 is merged, we can't use Subresource
 | 
			
		||||
	//action.Subresource = "status"
 | 
			
		||||
	f.actions = append(f.actions, action)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func getKey(foo *samplecontroller.Foo, t *testing.T) string {
 | 
			
		||||
	key, err := cache.DeletionHandlingMetaNamespaceKeyFunc(foo)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		t.Errorf("Unexpected error getting key for foo %v: %v", foo.Name, err)
 | 
			
		||||
		return ""
 | 
			
		||||
	}
 | 
			
		||||
	return key
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func TestCreatesDeployment(t *testing.T) {
 | 
			
		||||
	f := newFixture(t)
 | 
			
		||||
	foo := newFoo("test", int32Ptr(1))
 | 
			
		||||
 | 
			
		||||
	f.fooLister = append(f.fooLister, foo)
 | 
			
		||||
	f.objects = append(f.objects, foo)
 | 
			
		||||
 | 
			
		||||
	expDeployment := newDeployment(foo)
 | 
			
		||||
	f.expectCreateDeploymentAction(expDeployment)
 | 
			
		||||
	f.expectUpdateFooStatusAction(foo)
 | 
			
		||||
 | 
			
		||||
	f.run(getKey(foo, t))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func TestDoNothing(t *testing.T) {
 | 
			
		||||
	f := newFixture(t)
 | 
			
		||||
	foo := newFoo("test", int32Ptr(1))
 | 
			
		||||
	d := newDeployment(foo)
 | 
			
		||||
 | 
			
		||||
	f.fooLister = append(f.fooLister, foo)
 | 
			
		||||
	f.objects = append(f.objects, foo)
 | 
			
		||||
	f.deploymentLister = append(f.deploymentLister, d)
 | 
			
		||||
	f.kubeobjects = append(f.kubeobjects, d)
 | 
			
		||||
 | 
			
		||||
	f.expectUpdateFooStatusAction(foo)
 | 
			
		||||
	f.run(getKey(foo, t))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func TestUpdateDeployment(t *testing.T) {
 | 
			
		||||
	f := newFixture(t)
 | 
			
		||||
	foo := newFoo("test", int32Ptr(1))
 | 
			
		||||
	d := newDeployment(foo)
 | 
			
		||||
 | 
			
		||||
	// Update replicas
 | 
			
		||||
	foo.Spec.Replicas = int32Ptr(2)
 | 
			
		||||
	expDeployment := newDeployment(foo)
 | 
			
		||||
 | 
			
		||||
	f.fooLister = append(f.fooLister, foo)
 | 
			
		||||
	f.objects = append(f.objects, foo)
 | 
			
		||||
	f.deploymentLister = append(f.deploymentLister, d)
 | 
			
		||||
	f.kubeobjects = append(f.kubeobjects, d)
 | 
			
		||||
 | 
			
		||||
	f.expectUpdateFooStatusAction(foo)
 | 
			
		||||
	f.expectUpdateDeploymentAction(expDeployment)
 | 
			
		||||
	f.run(getKey(foo, t))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func TestNotControlledByUs(t *testing.T) {
 | 
			
		||||
	f := newFixture(t)
 | 
			
		||||
	foo := newFoo("test", int32Ptr(1))
 | 
			
		||||
	d := newDeployment(foo)
 | 
			
		||||
 | 
			
		||||
	d.ObjectMeta.OwnerReferences = []metav1.OwnerReference{}
 | 
			
		||||
 | 
			
		||||
	f.fooLister = append(f.fooLister, foo)
 | 
			
		||||
	f.objects = append(f.objects, foo)
 | 
			
		||||
	f.deploymentLister = append(f.deploymentLister, d)
 | 
			
		||||
	f.kubeobjects = append(f.kubeobjects, d)
 | 
			
		||||
 | 
			
		||||
	f.runExpectError(getKey(foo, t))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func int32Ptr(i int32) *int32 { return &i }
 | 
			
		||||
@@ -61,7 +61,9 @@ func main() {
 | 
			
		||||
	kubeInformerFactory := kubeinformers.NewSharedInformerFactory(kubeClient, time.Second*30)
 | 
			
		||||
	exampleInformerFactory := informers.NewSharedInformerFactory(exampleClient, time.Second*30)
 | 
			
		||||
 | 
			
		||||
	controller := NewController(kubeClient, exampleClient, kubeInformerFactory, exampleInformerFactory)
 | 
			
		||||
	controller := NewController(kubeClient, exampleClient,
 | 
			
		||||
		kubeInformerFactory.Apps().V1().Deployments(),
 | 
			
		||||
		exampleInformerFactory.Samplecontroller().V1alpha1().Foos())
 | 
			
		||||
 | 
			
		||||
	go kubeInformerFactory.Start(stopCh)
 | 
			
		||||
	go exampleInformerFactory.Start(stopCh)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user