mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			208 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			208 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2015 The Kubernetes Authors All rights reserved.
 | 
						|
 | 
						|
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 container
 | 
						|
 | 
						|
import (
 | 
						|
	"reflect"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"k8s.io/kubernetes/pkg/api"
 | 
						|
)
 | 
						|
 | 
						|
func TestEnvVarsToMap(t *testing.T) {
 | 
						|
	vars := []EnvVar{
 | 
						|
		{
 | 
						|
			Name:  "foo",
 | 
						|
			Value: "bar",
 | 
						|
		},
 | 
						|
		{
 | 
						|
			Name:  "zoo",
 | 
						|
			Value: "baz",
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	varMap := EnvVarsToMap(vars)
 | 
						|
 | 
						|
	if e, a := len(vars), len(varMap); e != a {
 | 
						|
		t.Errorf("Unexpected map length; expected: %d, got %d", e, a)
 | 
						|
	}
 | 
						|
 | 
						|
	if a := varMap["foo"]; a != "bar" {
 | 
						|
		t.Errorf("Unexpected value of key 'foo': %v", a)
 | 
						|
	}
 | 
						|
 | 
						|
	if a := varMap["zoo"]; a != "baz" {
 | 
						|
		t.Errorf("Unexpected value of key 'zoo': %v", a)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestExpandCommandAndArgs(t *testing.T) {
 | 
						|
	cases := []struct {
 | 
						|
		name            string
 | 
						|
		container       *api.Container
 | 
						|
		envs            []EnvVar
 | 
						|
		expectedCommand []string
 | 
						|
		expectedArgs    []string
 | 
						|
	}{
 | 
						|
		{
 | 
						|
			name:      "none",
 | 
						|
			container: &api.Container{},
 | 
						|
		},
 | 
						|
		{
 | 
						|
			name: "command expanded",
 | 
						|
			container: &api.Container{
 | 
						|
				Command: []string{"foo", "$(VAR_TEST)", "$(VAR_TEST2)"},
 | 
						|
			},
 | 
						|
			envs: []EnvVar{
 | 
						|
				{
 | 
						|
					Name:  "VAR_TEST",
 | 
						|
					Value: "zoo",
 | 
						|
				},
 | 
						|
				{
 | 
						|
					Name:  "VAR_TEST2",
 | 
						|
					Value: "boo",
 | 
						|
				},
 | 
						|
			},
 | 
						|
			expectedCommand: []string{"foo", "zoo", "boo"},
 | 
						|
		},
 | 
						|
		{
 | 
						|
			name: "args expanded",
 | 
						|
			container: &api.Container{
 | 
						|
				Args: []string{"zap", "$(VAR_TEST)", "$(VAR_TEST2)"},
 | 
						|
			},
 | 
						|
			envs: []EnvVar{
 | 
						|
				{
 | 
						|
					Name:  "VAR_TEST",
 | 
						|
					Value: "hap",
 | 
						|
				},
 | 
						|
				{
 | 
						|
					Name:  "VAR_TEST2",
 | 
						|
					Value: "trap",
 | 
						|
				},
 | 
						|
			},
 | 
						|
			expectedArgs: []string{"zap", "hap", "trap"},
 | 
						|
		},
 | 
						|
		{
 | 
						|
			name: "both expanded",
 | 
						|
			container: &api.Container{
 | 
						|
				Command: []string{"$(VAR_TEST2)--$(VAR_TEST)", "foo", "$(VAR_TEST3)"},
 | 
						|
				Args:    []string{"foo", "$(VAR_TEST)", "$(VAR_TEST2)"},
 | 
						|
			},
 | 
						|
			envs: []EnvVar{
 | 
						|
				{
 | 
						|
					Name:  "VAR_TEST",
 | 
						|
					Value: "zoo",
 | 
						|
				},
 | 
						|
				{
 | 
						|
					Name:  "VAR_TEST2",
 | 
						|
					Value: "boo",
 | 
						|
				},
 | 
						|
				{
 | 
						|
					Name:  "VAR_TEST3",
 | 
						|
					Value: "roo",
 | 
						|
				},
 | 
						|
			},
 | 
						|
			expectedCommand: []string{"boo--zoo", "foo", "roo"},
 | 
						|
			expectedArgs:    []string{"foo", "zoo", "boo"},
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	for _, tc := range cases {
 | 
						|
		actualCommand, actualArgs := ExpandContainerCommandAndArgs(tc.container, tc.envs)
 | 
						|
 | 
						|
		if e, a := tc.expectedCommand, actualCommand; !reflect.DeepEqual(e, a) {
 | 
						|
			t.Errorf("%v: unexpected command; expected %v, got %v", tc.name, e, a)
 | 
						|
		}
 | 
						|
 | 
						|
		if e, a := tc.expectedArgs, actualArgs; !reflect.DeepEqual(e, a) {
 | 
						|
			t.Errorf("%v: unexpected args; expected %v, got %v", tc.name, e, a)
 | 
						|
		}
 | 
						|
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestShouldContainerBeRestarted(t *testing.T) {
 | 
						|
	pod := &api.Pod{
 | 
						|
		ObjectMeta: api.ObjectMeta{
 | 
						|
			UID:       "12345678",
 | 
						|
			Name:      "foo",
 | 
						|
			Namespace: "new",
 | 
						|
		},
 | 
						|
		Spec: api.PodSpec{
 | 
						|
			Containers: []api.Container{
 | 
						|
				{Name: "no-history"},
 | 
						|
				{Name: "alive"},
 | 
						|
				{Name: "succeed"},
 | 
						|
				{Name: "failed"},
 | 
						|
			},
 | 
						|
		},
 | 
						|
	}
 | 
						|
	podStatus := &PodStatus{
 | 
						|
		ID:        pod.UID,
 | 
						|
		Name:      pod.Name,
 | 
						|
		Namespace: pod.Namespace,
 | 
						|
		ContainerStatuses: []*ContainerStatus{
 | 
						|
			{
 | 
						|
				Name:  "alive",
 | 
						|
				State: ContainerStateRunning,
 | 
						|
			},
 | 
						|
			{
 | 
						|
				Name:     "succeed",
 | 
						|
				State:    ContainerStateExited,
 | 
						|
				ExitCode: 0,
 | 
						|
			},
 | 
						|
			{
 | 
						|
				Name:     "failed",
 | 
						|
				State:    ContainerStateExited,
 | 
						|
				ExitCode: 1,
 | 
						|
			},
 | 
						|
			{
 | 
						|
				Name:     "alive",
 | 
						|
				State:    ContainerStateExited,
 | 
						|
				ExitCode: 2,
 | 
						|
			},
 | 
						|
			{
 | 
						|
				Name:     "failed",
 | 
						|
				State:    ContainerStateExited,
 | 
						|
				ExitCode: 3,
 | 
						|
			},
 | 
						|
		},
 | 
						|
	}
 | 
						|
	policies := []api.RestartPolicy{
 | 
						|
		api.RestartPolicyNever,
 | 
						|
		api.RestartPolicyOnFailure,
 | 
						|
		api.RestartPolicyAlways,
 | 
						|
	}
 | 
						|
	expected := map[string][]bool{
 | 
						|
		"no-history": {true, true, true},
 | 
						|
		"alive":      {false, false, false},
 | 
						|
		"succeed":    {false, false, true},
 | 
						|
		"failed":     {false, true, true},
 | 
						|
	}
 | 
						|
	for _, c := range pod.Spec.Containers {
 | 
						|
		for i, policy := range policies {
 | 
						|
			pod.Spec.RestartPolicy = policy
 | 
						|
			e := expected[c.Name][i]
 | 
						|
			r := ShouldContainerBeRestarted(&c, pod, podStatus)
 | 
						|
			if r != e {
 | 
						|
				t.Errorf("Restart for container %q with restart policy %q expected %t, got %t",
 | 
						|
					c.Name, policy, e, r)
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |