mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 05:40:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			195 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			195 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright 2014 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 config
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"k8s.io/api/core/v1"
 | |
| 	apiequality "k8s.io/apimachinery/pkg/api/equality"
 | |
| 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 | |
| 	"k8s.io/apimachinery/pkg/runtime"
 | |
| 	"k8s.io/apimachinery/pkg/watch"
 | |
| 	"k8s.io/client-go/tools/cache"
 | |
| 	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
 | |
| )
 | |
| 
 | |
| type fakePodLW struct {
 | |
| 	listResp  runtime.Object
 | |
| 	watchResp watch.Interface
 | |
| }
 | |
| 
 | |
| func (lw fakePodLW) List(options metav1.ListOptions) (runtime.Object, error) {
 | |
| 	return lw.listResp, nil
 | |
| }
 | |
| 
 | |
| func (lw fakePodLW) Watch(options metav1.ListOptions) (watch.Interface, error) {
 | |
| 	return lw.watchResp, nil
 | |
| }
 | |
| 
 | |
| var _ cache.ListerWatcher = fakePodLW{}
 | |
| 
 | |
| func TestNewSourceApiserver_UpdatesAndMultiplePods(t *testing.T) {
 | |
| 	pod1v1 := &v1.Pod{
 | |
| 		ObjectMeta: metav1.ObjectMeta{Name: "p"},
 | |
| 		Spec:       v1.PodSpec{Containers: []v1.Container{{Image: "image/one"}}}}
 | |
| 	pod1v2 := &v1.Pod{
 | |
| 		ObjectMeta: metav1.ObjectMeta{Name: "p"},
 | |
| 		Spec:       v1.PodSpec{Containers: []v1.Container{{Image: "image/two"}}}}
 | |
| 	pod2 := &v1.Pod{
 | |
| 		ObjectMeta: metav1.ObjectMeta{Name: "q"},
 | |
| 		Spec:       v1.PodSpec{Containers: []v1.Container{{Image: "image/blah"}}}}
 | |
| 
 | |
| 	// Setup fake api client.
 | |
| 	fakeWatch := watch.NewFake()
 | |
| 	lw := fakePodLW{
 | |
| 		listResp:  &v1.PodList{Items: []v1.Pod{*pod1v1}},
 | |
| 		watchResp: fakeWatch,
 | |
| 	}
 | |
| 
 | |
| 	ch := make(chan interface{})
 | |
| 
 | |
| 	newSourceApiserverFromLW(lw, ch)
 | |
| 
 | |
| 	got, ok := <-ch
 | |
| 	if !ok {
 | |
| 		t.Errorf("Unable to read from channel when expected")
 | |
| 	}
 | |
| 	update := got.(kubetypes.PodUpdate)
 | |
| 	expected := CreatePodUpdate(kubetypes.SET, kubetypes.ApiserverSource, pod1v1)
 | |
| 	if !apiequality.Semantic.DeepEqual(expected, update) {
 | |
| 		t.Errorf("Expected %#v; Got %#v", expected, update)
 | |
| 	}
 | |
| 
 | |
| 	// Add another pod
 | |
| 	fakeWatch.Add(pod2)
 | |
| 	got, ok = <-ch
 | |
| 	if !ok {
 | |
| 		t.Errorf("Unable to read from channel when expected")
 | |
| 	}
 | |
| 	update = got.(kubetypes.PodUpdate)
 | |
| 	// Could be sorted either of these two ways:
 | |
| 	expectedA := CreatePodUpdate(kubetypes.SET, kubetypes.ApiserverSource, pod1v1, pod2)
 | |
| 	expectedB := CreatePodUpdate(kubetypes.SET, kubetypes.ApiserverSource, pod2, pod1v1)
 | |
| 
 | |
| 	if !apiequality.Semantic.DeepEqual(expectedA, update) && !apiequality.Semantic.DeepEqual(expectedB, update) {
 | |
| 		t.Errorf("Expected %#v or %#v, Got %#v", expectedA, expectedB, update)
 | |
| 	}
 | |
| 
 | |
| 	// Modify pod1
 | |
| 	fakeWatch.Modify(pod1v2)
 | |
| 	got, ok = <-ch
 | |
| 	if !ok {
 | |
| 		t.Errorf("Unable to read from channel when expected")
 | |
| 	}
 | |
| 	update = got.(kubetypes.PodUpdate)
 | |
| 	expectedA = CreatePodUpdate(kubetypes.SET, kubetypes.ApiserverSource, pod1v2, pod2)
 | |
| 	expectedB = CreatePodUpdate(kubetypes.SET, kubetypes.ApiserverSource, pod2, pod1v2)
 | |
| 
 | |
| 	if !apiequality.Semantic.DeepEqual(expectedA, update) && !apiequality.Semantic.DeepEqual(expectedB, update) {
 | |
| 		t.Errorf("Expected %#v or %#v, Got %#v", expectedA, expectedB, update)
 | |
| 	}
 | |
| 
 | |
| 	// Delete pod1
 | |
| 	fakeWatch.Delete(pod1v2)
 | |
| 	got, ok = <-ch
 | |
| 	if !ok {
 | |
| 		t.Errorf("Unable to read from channel when expected")
 | |
| 	}
 | |
| 	update = got.(kubetypes.PodUpdate)
 | |
| 	expected = CreatePodUpdate(kubetypes.SET, kubetypes.ApiserverSource, pod2)
 | |
| 	if !apiequality.Semantic.DeepEqual(expected, update) {
 | |
| 		t.Errorf("Expected %#v, Got %#v", expected, update)
 | |
| 	}
 | |
| 
 | |
| 	// Delete pod2
 | |
| 	fakeWatch.Delete(pod2)
 | |
| 	got, ok = <-ch
 | |
| 	if !ok {
 | |
| 		t.Errorf("Unable to read from channel when expected")
 | |
| 	}
 | |
| 	update = got.(kubetypes.PodUpdate)
 | |
| 	expected = CreatePodUpdate(kubetypes.SET, kubetypes.ApiserverSource)
 | |
| 	if !apiequality.Semantic.DeepEqual(expected, update) {
 | |
| 		t.Errorf("Expected %#v, Got %#v", expected, update)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestNewSourceApiserver_TwoNamespacesSameName(t *testing.T) {
 | |
| 	pod1 := v1.Pod{
 | |
| 		ObjectMeta: metav1.ObjectMeta{Name: "p", Namespace: "one"},
 | |
| 		Spec:       v1.PodSpec{Containers: []v1.Container{{Image: "image/one"}}}}
 | |
| 	pod2 := v1.Pod{
 | |
| 		ObjectMeta: metav1.ObjectMeta{Name: "p", Namespace: "two"},
 | |
| 		Spec:       v1.PodSpec{Containers: []v1.Container{{Image: "image/blah"}}}}
 | |
| 
 | |
| 	// Setup fake api client.
 | |
| 	fakeWatch := watch.NewFake()
 | |
| 	lw := fakePodLW{
 | |
| 		listResp:  &v1.PodList{Items: []v1.Pod{pod1, pod2}},
 | |
| 		watchResp: fakeWatch,
 | |
| 	}
 | |
| 
 | |
| 	ch := make(chan interface{})
 | |
| 
 | |
| 	newSourceApiserverFromLW(lw, ch)
 | |
| 
 | |
| 	got, ok := <-ch
 | |
| 	if !ok {
 | |
| 		t.Errorf("Unable to read from channel when expected")
 | |
| 	}
 | |
| 	update := got.(kubetypes.PodUpdate)
 | |
| 	// Make sure that we get both pods.  Catches bug #2294.
 | |
| 	if !(len(update.Pods) == 2) {
 | |
| 		t.Errorf("Expected %d, Got %d", 2, len(update.Pods))
 | |
| 	}
 | |
| 
 | |
| 	// Delete pod1
 | |
| 	fakeWatch.Delete(&pod1)
 | |
| 	got, ok = <-ch
 | |
| 	if !ok {
 | |
| 		t.Errorf("Unable to read from channel when expected")
 | |
| 	}
 | |
| 	update = got.(kubetypes.PodUpdate)
 | |
| 	if !(len(update.Pods) == 1) {
 | |
| 		t.Errorf("Expected %d, Got %d", 1, len(update.Pods))
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestNewSourceApiserverInitialEmptySendsEmptyPodUpdate(t *testing.T) {
 | |
| 	// Setup fake api client.
 | |
| 	fakeWatch := watch.NewFake()
 | |
| 	lw := fakePodLW{
 | |
| 		listResp:  &v1.PodList{Items: []v1.Pod{}},
 | |
| 		watchResp: fakeWatch,
 | |
| 	}
 | |
| 
 | |
| 	ch := make(chan interface{})
 | |
| 
 | |
| 	newSourceApiserverFromLW(lw, ch)
 | |
| 
 | |
| 	got, ok := <-ch
 | |
| 	if !ok {
 | |
| 		t.Errorf("Unable to read from channel when expected")
 | |
| 	}
 | |
| 	update := got.(kubetypes.PodUpdate)
 | |
| 	expected := CreatePodUpdate(kubetypes.SET, kubetypes.ApiserverSource)
 | |
| 	if !apiequality.Semantic.DeepEqual(expected, update) {
 | |
| 		t.Errorf("Expected %#v; Got %#v", expected, update)
 | |
| 	}
 | |
| }
 |