577 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			577 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			Go
		
	
	
	
| package base
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/jenkinsci/kubernetes-operator/pkg/apis/jenkins/v1alpha2"
 | |
| 	"github.com/jenkinsci/kubernetes-operator/pkg/controller/jenkins/client"
 | |
| 	"github.com/jenkinsci/kubernetes-operator/pkg/controller/jenkins/configuration/base/resources"
 | |
| 	"github.com/jenkinsci/kubernetes-operator/pkg/log"
 | |
| 
 | |
| 	"github.com/bndr/gojenkins"
 | |
| 	"github.com/golang/mock/gomock"
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| 	corev1 "k8s.io/api/core/v1"
 | |
| )
 | |
| 
 | |
| func TestGetJenkinsOpts(t *testing.T) {
 | |
| 	t.Run("JENKINS_OPTS is empty", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					Containers: []v1alpha2.Container{
 | |
| 						{
 | |
| 							Env: []corev1.EnvVar{
 | |
| 								{Name: "JENKINS_OPTS", Value: ""},
 | |
| 							},
 | |
| 						},
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 
 | |
| 		opts := GetJenkinsOpts(jenkins)
 | |
| 		assert.Equal(t, 0, len(opts))
 | |
| 	})
 | |
| 
 | |
| 	t.Run("JENKINS_OPTS have --prefix argument ", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					Containers: []v1alpha2.Container{
 | |
| 						{
 | |
| 							Env: []corev1.EnvVar{
 | |
| 								{Name: "JENKINS_OPTS", Value: "--prefix=/jenkins"},
 | |
| 							},
 | |
| 						},
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 
 | |
| 		opts := GetJenkinsOpts(jenkins)
 | |
| 
 | |
| 		assert.Equal(t, 1, len(opts))
 | |
| 
 | |
| 		t.Run("ensure that JENKINS_OPTS not contains --httpPort", func(t *testing.T) {
 | |
| 			assert.NotContains(t, opts, "httpPort")
 | |
| 		})
 | |
| 
 | |
| 		t.Run("ensure that argument is --prefix", func(t *testing.T) {
 | |
| 			assert.Contains(t, opts, "prefix")
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("JENKINS_OPTS have --prefix and --httpPort argument", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					Containers: []v1alpha2.Container{
 | |
| 						{
 | |
| 							Env: []corev1.EnvVar{
 | |
| 								{Name: "JENKINS_OPTS", Value: "--prefix=/jenkins --httpPort=8080"},
 | |
| 							},
 | |
| 						},
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 
 | |
| 		opts := GetJenkinsOpts(jenkins)
 | |
| 
 | |
| 		assert.Equal(t, 2, len(opts))
 | |
| 
 | |
| 		t.Run("ensure that argument is --prefix with value /jenkins", func(t *testing.T) {
 | |
| 			assert.Contains(t, opts, "prefix")
 | |
| 			assert.Equal(t, opts["prefix"], "/jenkins")
 | |
| 		})
 | |
| 
 | |
| 		t.Run("ensure that argument is --httpPort with value 8080", func(t *testing.T) {
 | |
| 			assert.Contains(t, opts, "httpPort")
 | |
| 			assert.Equal(t, opts["httpPort"], "8080")
 | |
| 		})
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func TestCompareContainerVolumeMounts(t *testing.T) {
 | |
| 	t.Run("happy with service account", func(t *testing.T) {
 | |
| 		expectedContainer := corev1.Container{
 | |
| 			VolumeMounts: []corev1.VolumeMount{
 | |
| 				{
 | |
| 					Name:      "volume-name",
 | |
| 					MountPath: "/mount/path",
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		actualContainer := corev1.Container{
 | |
| 			VolumeMounts: []corev1.VolumeMount{
 | |
| 				{
 | |
| 					Name:      "volume-name",
 | |
| 					MountPath: "/mount/path",
 | |
| 				},
 | |
| 				{
 | |
| 					Name:      "jenkins-operator-example-token-dh4r9",
 | |
| 					MountPath: "/var/run/secrets/kubernetes.io/serviceaccount",
 | |
| 					ReadOnly:  true,
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 
 | |
| 		got := CompareContainerVolumeMounts(expectedContainer, actualContainer)
 | |
| 
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| 	t.Run("happy without service account", func(t *testing.T) {
 | |
| 		expectedContainer := corev1.Container{
 | |
| 			VolumeMounts: []corev1.VolumeMount{
 | |
| 				{
 | |
| 					Name:      "volume-name",
 | |
| 					MountPath: "/mount/path",
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		actualContainer := corev1.Container{
 | |
| 			VolumeMounts: []corev1.VolumeMount{
 | |
| 				{
 | |
| 					Name:      "volume-name",
 | |
| 					MountPath: "/mount/path",
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 
 | |
| 		got := CompareContainerVolumeMounts(expectedContainer, actualContainer)
 | |
| 
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| 	t.Run("different volume mounts", func(t *testing.T) {
 | |
| 		expectedContainer := corev1.Container{
 | |
| 			VolumeMounts: []corev1.VolumeMount{
 | |
| 				{
 | |
| 					Name:      "volume-name",
 | |
| 					MountPath: "/mount/path",
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		actualContainer := corev1.Container{
 | |
| 			VolumeMounts: []corev1.VolumeMount{
 | |
| 				{
 | |
| 					Name:      "jenkins-operator-example-token-dh4r9",
 | |
| 					MountPath: "/var/run/secrets/kubernetes.io/serviceaccount",
 | |
| 					ReadOnly:  true,
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 
 | |
| 		got := CompareContainerVolumeMounts(expectedContainer, actualContainer)
 | |
| 
 | |
| 		assert.False(t, got)
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func TestCompareVolumes(t *testing.T) {
 | |
| 	t.Run("defaults", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{}
 | |
| 		pod := corev1.Pod{
 | |
| 			Spec: corev1.PodSpec{
 | |
| 				ServiceAccountName: "service-account-name",
 | |
| 				Volumes:            resources.GetJenkinsMasterPodBaseVolumes(jenkins),
 | |
| 			},
 | |
| 		}
 | |
| 		reconciler := New(nil, nil, nil, jenkins, false, false, nil, nil)
 | |
| 
 | |
| 		got := reconciler.compareVolumes(pod)
 | |
| 
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| 	t.Run("different", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					Volumes: []corev1.Volume{
 | |
| 						{
 | |
| 							Name: "added",
 | |
| 						},
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		pod := corev1.Pod{
 | |
| 			Spec: corev1.PodSpec{
 | |
| 				ServiceAccountName: "service-account-name",
 | |
| 				Volumes:            resources.GetJenkinsMasterPodBaseVolumes(jenkins),
 | |
| 			},
 | |
| 		}
 | |
| 		reconciler := New(nil, nil, nil, jenkins, false, false, nil, nil)
 | |
| 
 | |
| 		got := reconciler.compareVolumes(pod)
 | |
| 
 | |
| 		assert.False(t, got)
 | |
| 	})
 | |
| 	t.Run("added one volume", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					Volumes: []corev1.Volume{
 | |
| 						{
 | |
| 							Name: "added",
 | |
| 						},
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		pod := corev1.Pod{
 | |
| 			Spec: corev1.PodSpec{
 | |
| 				ServiceAccountName: "service-account-name",
 | |
| 				Volumes:            append(resources.GetJenkinsMasterPodBaseVolumes(jenkins), corev1.Volume{Name: "added"}),
 | |
| 			},
 | |
| 		}
 | |
| 		reconciler := New(nil, nil, nil, jenkins, false, false, nil, nil)
 | |
| 
 | |
| 		got := reconciler.compareVolumes(pod)
 | |
| 
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func TestReconcileJenkinsBaseConfiguration_verifyPlugins(t *testing.T) {
 | |
| 	log.SetupLogger(true)
 | |
| 
 | |
| 	t.Run("happy, empty base and user plugins", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{}
 | |
| 		r := ReconcileJenkinsBaseConfiguration{
 | |
| 			logger:  log.Log,
 | |
| 			jenkins: jenkins,
 | |
| 		}
 | |
| 		pluginsInJenkins := &gojenkins.Plugins{
 | |
| 			Raw: &gojenkins.PluginResponse{},
 | |
| 		}
 | |
| 		ctrl := gomock.NewController(t)
 | |
| 		defer ctrl.Finish()
 | |
| 		jenkinsClient := client.NewMockJenkins(ctrl)
 | |
| 		jenkinsClient.EXPECT().GetPlugins(fetchAllPlugins).Return(pluginsInJenkins, nil)
 | |
| 
 | |
| 		got, err := r.verifyPlugins(jenkinsClient)
 | |
| 
 | |
| 		assert.NoError(t, err)
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| 	t.Run("happy, not empty base and user plugins", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					BasePlugins: []v1alpha2.Plugin{{Name: "plugin-name1", Version: "0.0.1"}},
 | |
| 					Plugins:     []v1alpha2.Plugin{{Name: "plugin-name2", Version: "0.0.1"}},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		r := ReconcileJenkinsBaseConfiguration{
 | |
| 			logger:  log.Log,
 | |
| 			jenkins: jenkins,
 | |
| 		}
 | |
| 		pluginsInJenkins := &gojenkins.Plugins{
 | |
| 			Raw: &gojenkins.PluginResponse{
 | |
| 				Plugins: []gojenkins.Plugin{
 | |
| 					{
 | |
| 						ShortName: "plugin-name1",
 | |
| 						Active:    true,
 | |
| 						Deleted:   false,
 | |
| 						Enabled:   true,
 | |
| 						Version:   "0.0.1",
 | |
| 					},
 | |
| 					{
 | |
| 						ShortName: "plugin-name2",
 | |
| 						Active:    true,
 | |
| 						Deleted:   false,
 | |
| 						Enabled:   true,
 | |
| 						Version:   "0.0.1",
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		ctrl := gomock.NewController(t)
 | |
| 		defer ctrl.Finish()
 | |
| 		jenkinsClient := client.NewMockJenkins(ctrl)
 | |
| 		jenkinsClient.EXPECT().GetPlugins(fetchAllPlugins).Return(pluginsInJenkins, nil)
 | |
| 
 | |
| 		got, err := r.verifyPlugins(jenkinsClient)
 | |
| 
 | |
| 		assert.NoError(t, err)
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| 	t.Run("happy, not empty base and empty user plugins", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					BasePlugins: []v1alpha2.Plugin{{Name: "plugin-name", Version: "0.0.1"}},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		r := ReconcileJenkinsBaseConfiguration{
 | |
| 			logger:  log.Log,
 | |
| 			jenkins: jenkins,
 | |
| 		}
 | |
| 		pluginsInJenkins := &gojenkins.Plugins{
 | |
| 			Raw: &gojenkins.PluginResponse{
 | |
| 				Plugins: []gojenkins.Plugin{
 | |
| 					{
 | |
| 						ShortName: "plugin-name",
 | |
| 						Active:    true,
 | |
| 						Deleted:   false,
 | |
| 						Enabled:   true,
 | |
| 						Version:   "0.0.1",
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		ctrl := gomock.NewController(t)
 | |
| 		defer ctrl.Finish()
 | |
| 		jenkinsClient := client.NewMockJenkins(ctrl)
 | |
| 		jenkinsClient.EXPECT().GetPlugins(fetchAllPlugins).Return(pluginsInJenkins, nil)
 | |
| 
 | |
| 		got, err := r.verifyPlugins(jenkinsClient)
 | |
| 
 | |
| 		assert.NoError(t, err)
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| 	t.Run("happy, empty base and not empty user plugins", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					Plugins: []v1alpha2.Plugin{{Name: "plugin-name", Version: "0.0.1"}},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		r := ReconcileJenkinsBaseConfiguration{
 | |
| 			logger:  log.Log,
 | |
| 			jenkins: jenkins,
 | |
| 		}
 | |
| 		pluginsInJenkins := &gojenkins.Plugins{
 | |
| 			Raw: &gojenkins.PluginResponse{
 | |
| 				Plugins: []gojenkins.Plugin{
 | |
| 					{
 | |
| 						ShortName: "plugin-name",
 | |
| 						Active:    true,
 | |
| 						Deleted:   false,
 | |
| 						Enabled:   true,
 | |
| 						Version:   "0.0.1",
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		ctrl := gomock.NewController(t)
 | |
| 		defer ctrl.Finish()
 | |
| 		jenkinsClient := client.NewMockJenkins(ctrl)
 | |
| 		jenkinsClient.EXPECT().GetPlugins(fetchAllPlugins).Return(pluginsInJenkins, nil)
 | |
| 
 | |
| 		got, err := r.verifyPlugins(jenkinsClient)
 | |
| 
 | |
| 		assert.NoError(t, err)
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| 	t.Run("happy, plugin version matter for base plugins", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					BasePlugins: []v1alpha2.Plugin{{Name: "plugin-name", Version: "0.0.1"}},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		r := ReconcileJenkinsBaseConfiguration{
 | |
| 			logger:  log.Log,
 | |
| 			jenkins: jenkins,
 | |
| 		}
 | |
| 		pluginsInJenkins := &gojenkins.Plugins{
 | |
| 			Raw: &gojenkins.PluginResponse{
 | |
| 				Plugins: []gojenkins.Plugin{
 | |
| 					{
 | |
| 						ShortName: "plugin-name",
 | |
| 						Active:    true,
 | |
| 						Deleted:   false,
 | |
| 						Enabled:   true,
 | |
| 						Version:   "0.0.2",
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		ctrl := gomock.NewController(t)
 | |
| 		defer ctrl.Finish()
 | |
| 		jenkinsClient := client.NewMockJenkins(ctrl)
 | |
| 		jenkinsClient.EXPECT().GetPlugins(fetchAllPlugins).Return(pluginsInJenkins, nil)
 | |
| 
 | |
| 		got, err := r.verifyPlugins(jenkinsClient)
 | |
| 
 | |
| 		assert.NoError(t, err)
 | |
| 		assert.False(t, got)
 | |
| 	})
 | |
| 	t.Run("plugin version matter for user plugins", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					Plugins: []v1alpha2.Plugin{{Name: "plugin-name", Version: "0.0.2"}},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		r := ReconcileJenkinsBaseConfiguration{
 | |
| 			logger:  log.Log,
 | |
| 			jenkins: jenkins,
 | |
| 		}
 | |
| 		pluginsInJenkins := &gojenkins.Plugins{
 | |
| 			Raw: &gojenkins.PluginResponse{
 | |
| 				Plugins: []gojenkins.Plugin{
 | |
| 					{
 | |
| 						ShortName: "plugin-name",
 | |
| 						Active:    true,
 | |
| 						Deleted:   false,
 | |
| 						Enabled:   true,
 | |
| 						Version:   "0.0.1",
 | |
| 					},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		ctrl := gomock.NewController(t)
 | |
| 		defer ctrl.Finish()
 | |
| 		jenkinsClient := client.NewMockJenkins(ctrl)
 | |
| 		jenkinsClient.EXPECT().GetPlugins(fetchAllPlugins).Return(pluginsInJenkins, nil)
 | |
| 
 | |
| 		got, err := r.verifyPlugins(jenkinsClient)
 | |
| 
 | |
| 		assert.NoError(t, err)
 | |
| 		assert.False(t, got)
 | |
| 	})
 | |
| 	t.Run("missing base plugin", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					BasePlugins: []v1alpha2.Plugin{{Name: "plugin-name", Version: "0.0.2"}},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		r := ReconcileJenkinsBaseConfiguration{
 | |
| 			logger:  log.Log,
 | |
| 			jenkins: jenkins,
 | |
| 		}
 | |
| 		pluginsInJenkins := &gojenkins.Plugins{
 | |
| 			Raw: &gojenkins.PluginResponse{
 | |
| 				Plugins: []gojenkins.Plugin{},
 | |
| 			},
 | |
| 		}
 | |
| 		ctrl := gomock.NewController(t)
 | |
| 		defer ctrl.Finish()
 | |
| 		jenkinsClient := client.NewMockJenkins(ctrl)
 | |
| 		jenkinsClient.EXPECT().GetPlugins(fetchAllPlugins).Return(pluginsInJenkins, nil)
 | |
| 
 | |
| 		got, err := r.verifyPlugins(jenkinsClient)
 | |
| 
 | |
| 		assert.NoError(t, err)
 | |
| 		assert.False(t, got)
 | |
| 	})
 | |
| 	t.Run("missing user plugin", func(t *testing.T) {
 | |
| 		jenkins := &v1alpha2.Jenkins{
 | |
| 			Spec: v1alpha2.JenkinsSpec{
 | |
| 				Master: v1alpha2.JenkinsMaster{
 | |
| 					Plugins: []v1alpha2.Plugin{{Name: "plugin-name", Version: "0.0.2"}},
 | |
| 				},
 | |
| 			},
 | |
| 		}
 | |
| 		r := ReconcileJenkinsBaseConfiguration{
 | |
| 			logger:  log.Log,
 | |
| 			jenkins: jenkins,
 | |
| 		}
 | |
| 		pluginsInJenkins := &gojenkins.Plugins{
 | |
| 			Raw: &gojenkins.PluginResponse{
 | |
| 				Plugins: []gojenkins.Plugin{},
 | |
| 			},
 | |
| 		}
 | |
| 		ctrl := gomock.NewController(t)
 | |
| 		defer ctrl.Finish()
 | |
| 		jenkinsClient := client.NewMockJenkins(ctrl)
 | |
| 		jenkinsClient.EXPECT().GetPlugins(fetchAllPlugins).Return(pluginsInJenkins, nil)
 | |
| 
 | |
| 		got, err := r.verifyPlugins(jenkinsClient)
 | |
| 
 | |
| 		assert.NoError(t, err)
 | |
| 		assert.False(t, got)
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func Test_compareEnv(t *testing.T) {
 | |
| 	t.Run("empty", func(t *testing.T) {
 | |
| 		var expected []corev1.EnvVar
 | |
| 		var actual []corev1.EnvVar
 | |
| 
 | |
| 		got := compareEnv(expected, actual)
 | |
| 
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| 	t.Run("same", func(t *testing.T) {
 | |
| 		expected := []corev1.EnvVar{
 | |
| 			{
 | |
| 				Name:  "name",
 | |
| 				Value: "value",
 | |
| 			},
 | |
| 		}
 | |
| 		actual := []corev1.EnvVar{
 | |
| 			{
 | |
| 				Name:  "name",
 | |
| 				Value: "value",
 | |
| 			},
 | |
| 		}
 | |
| 
 | |
| 		got := compareEnv(expected, actual)
 | |
| 
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| 	t.Run("with KUBERNETES envs", func(t *testing.T) {
 | |
| 		expected := []corev1.EnvVar{
 | |
| 			{
 | |
| 				Name:  "name",
 | |
| 				Value: "value",
 | |
| 			},
 | |
| 		}
 | |
| 		actual := []corev1.EnvVar{
 | |
| 			{
 | |
| 				Name:  "name",
 | |
| 				Value: "value",
 | |
| 			},
 | |
| 			{
 | |
| 				Name:  "KUBERNETES_PORT_443_TCP_ADDR",
 | |
| 				Value: "KUBERNETES_PORT_443_TCP_ADDR",
 | |
| 			},
 | |
| 			{
 | |
| 				Name:  "KUBERNETES_PORT",
 | |
| 				Value: "KUBERNETES_PORT",
 | |
| 			},
 | |
| 			{
 | |
| 				Name:  "KUBERNETES_PORT_443_TCP",
 | |
| 				Value: "KUBERNETES_PORT_443_TCP",
 | |
| 			},
 | |
| 			{
 | |
| 				Name:  "KUBERNETES_SERVICE_HOST",
 | |
| 				Value: "KUBERNETES_SERVICE_HOST",
 | |
| 			},
 | |
| 		}
 | |
| 
 | |
| 		got := compareEnv(expected, actual)
 | |
| 
 | |
| 		assert.True(t, got)
 | |
| 	})
 | |
| 	t.Run("different", func(t *testing.T) {
 | |
| 		expected := []corev1.EnvVar{
 | |
| 			{
 | |
| 				Name:  "name",
 | |
| 				Value: "value",
 | |
| 			},
 | |
| 		}
 | |
| 		actual := []corev1.EnvVar{
 | |
| 			{
 | |
| 				Name:  "name2",
 | |
| 				Value: "value2",
 | |
| 			},
 | |
| 		}
 | |
| 
 | |
| 		got := compareEnv(expected, actual)
 | |
| 
 | |
| 		assert.False(t, got)
 | |
| 	})
 | |
| }
 |