123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- /*
- Copyright 2015 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 (
- "reflect"
- "testing"
- "github.com/stretchr/testify/assert"
- "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/apimachinery/pkg/types"
- "k8s.io/kubernetes/pkg/api/legacyscheme"
- "k8s.io/kubernetes/pkg/api/testapi"
- "k8s.io/kubernetes/pkg/apis/core"
- "k8s.io/kubernetes/pkg/apis/core/validation"
- "k8s.io/kubernetes/pkg/securitycontext"
- )
- func noDefault(*core.Pod) error { return nil }
- func TestDecodeSinglePod(t *testing.T) {
- grace := int64(30)
- enableServiceLinks := v1.DefaultEnableServiceLinks
- pod := &v1.Pod{
- TypeMeta: metav1.TypeMeta{
- APIVersion: "",
- },
- ObjectMeta: metav1.ObjectMeta{
- Name: "test",
- UID: "12345",
- Namespace: "mynamespace",
- },
- Spec: v1.PodSpec{
- RestartPolicy: v1.RestartPolicyAlways,
- DNSPolicy: v1.DNSClusterFirst,
- TerminationGracePeriodSeconds: &grace,
- Containers: []v1.Container{{
- Name: "image",
- Image: "test/image",
- ImagePullPolicy: "IfNotPresent",
- TerminationMessagePath: "/dev/termination-log",
- TerminationMessagePolicy: v1.TerminationMessageReadFile,
- SecurityContext: securitycontext.ValidSecurityContextWithContainerDefaults(),
- }},
- SecurityContext: &v1.PodSecurityContext{},
- SchedulerName: core.DefaultSchedulerName,
- EnableServiceLinks: &enableServiceLinks,
- },
- }
- json, err := runtime.Encode(testapi.Default.Codec(), pod)
- if err != nil {
- t.Errorf("unexpected error: %v", err)
- }
- parsed, podOut, err := tryDecodeSinglePod(json, noDefault)
- if !parsed {
- t.Errorf("expected to have parsed file: (%s)", string(json))
- }
- if err != nil {
- t.Errorf("unexpected error: %v (%s)", err, string(json))
- }
- if !reflect.DeepEqual(pod, podOut) {
- t.Errorf("expected:\n%#v\ngot:\n%#v\n%s", pod, podOut, string(json))
- }
- for _, gv := range legacyscheme.Scheme.PrioritizedVersionsForGroup(v1.GroupName) {
- info, _ := runtime.SerializerInfoForMediaType(legacyscheme.Codecs.SupportedMediaTypes(), "application/yaml")
- encoder := legacyscheme.Codecs.EncoderForVersion(info.Serializer, gv)
- yaml, err := runtime.Encode(encoder, pod)
- if err != nil {
- t.Errorf("unexpected error: %v", err)
- }
- parsed, podOut, err = tryDecodeSinglePod(yaml, noDefault)
- if !parsed {
- t.Errorf("expected to have parsed file: (%s)", string(yaml))
- }
- if err != nil {
- t.Errorf("unexpected error: %v (%s)", err, string(yaml))
- }
- if !reflect.DeepEqual(pod, podOut) {
- t.Errorf("expected:\n%#v\ngot:\n%#v\n%s", pod, podOut, string(yaml))
- }
- }
- }
- func TestDecodePodList(t *testing.T) {
- grace := int64(30)
- enableServiceLinks := v1.DefaultEnableServiceLinks
- pod := &v1.Pod{
- TypeMeta: metav1.TypeMeta{
- APIVersion: "",
- },
- ObjectMeta: metav1.ObjectMeta{
- Name: "test",
- UID: "12345",
- Namespace: "mynamespace",
- },
- Spec: v1.PodSpec{
- RestartPolicy: v1.RestartPolicyAlways,
- DNSPolicy: v1.DNSClusterFirst,
- TerminationGracePeriodSeconds: &grace,
- Containers: []v1.Container{{
- Name: "image",
- Image: "test/image",
- ImagePullPolicy: "IfNotPresent",
- TerminationMessagePath: "/dev/termination-log",
- TerminationMessagePolicy: v1.TerminationMessageReadFile,
- SecurityContext: securitycontext.ValidSecurityContextWithContainerDefaults(),
- }},
- SecurityContext: &v1.PodSecurityContext{},
- SchedulerName: core.DefaultSchedulerName,
- EnableServiceLinks: &enableServiceLinks,
- },
- }
- podList := &v1.PodList{
- Items: []v1.Pod{*pod},
- }
- json, err := runtime.Encode(testapi.Default.Codec(), podList)
- if err != nil {
- t.Errorf("unexpected error: %v", err)
- }
- parsed, podListOut, err := tryDecodePodList(json, noDefault)
- if !parsed {
- t.Errorf("expected to have parsed file: (%s)", string(json))
- }
- if err != nil {
- t.Errorf("unexpected error: %v (%s)", err, string(json))
- }
- if !reflect.DeepEqual(podList, &podListOut) {
- t.Errorf("expected:\n%#v\ngot:\n%#v\n%s", podList, &podListOut, string(json))
- }
- for _, gv := range legacyscheme.Scheme.PrioritizedVersionsForGroup(v1.GroupName) {
- info, _ := runtime.SerializerInfoForMediaType(legacyscheme.Codecs.SupportedMediaTypes(), "application/yaml")
- encoder := legacyscheme.Codecs.EncoderForVersion(info.Serializer, gv)
- yaml, err := runtime.Encode(encoder, podList)
- if err != nil {
- t.Errorf("unexpected error: %v", err)
- }
- parsed, podListOut, err = tryDecodePodList(yaml, noDefault)
- if !parsed {
- t.Errorf("expected to have parsed file: (%s): %v", string(yaml), err)
- continue
- }
- if err != nil {
- t.Errorf("unexpected error: %v (%s)", err, string(yaml))
- continue
- }
- if !reflect.DeepEqual(podList, &podListOut) {
- t.Errorf("expected:\n%#v\ngot:\n%#v\n%s", pod, &podListOut, string(yaml))
- }
- }
- }
- func TestGetSelfLink(t *testing.T) {
- var testCases = []struct {
- desc string
- name string
- namespace string
- expectedSelfLink string
- }{
- {
- desc: "No namespace specified",
- name: "foo",
- namespace: "",
- expectedSelfLink: "/api/v1/namespaces/default/pods/foo",
- },
- {
- desc: "Namespace specified",
- name: "foo",
- namespace: "bar",
- expectedSelfLink: "/api/v1/namespaces/bar/pods/foo",
- },
- }
- for _, testCase := range testCases {
- selfLink := getSelfLink(testCase.name, testCase.namespace)
- if testCase.expectedSelfLink != selfLink {
- t.Errorf("%s: getSelfLink error, expected: %s, got: %s", testCase.desc, testCase.expectedSelfLink, selfLink)
- }
- }
- }
- func TestStaticPodNameGenerate(t *testing.T) {
- testCases := []struct {
- nodeName types.NodeName
- podName string
- expected string
- overwrite string
- shouldErr bool
- }{
- {
- "node1",
- "static-pod1",
- "static-pod1-node1",
- "",
- false,
- },
- {
- "Node1",
- "static-pod1",
- "static-pod1-node1",
- "",
- false,
- },
- {
- "NODE1",
- "static-pod1",
- "static-pod1-node1",
- "static-pod1-NODE1",
- true,
- },
- }
- for _, c := range testCases {
- assert.Equal(t, c.expected, generatePodName(c.podName, c.nodeName), "wrong pod name generated")
- pod := &core.Pod{}
- pod.Name = c.podName
- if c.overwrite != "" {
- pod.Name = c.overwrite
- }
- errs := validation.ValidatePod(pod)
- if c.shouldErr {
- specNameErrored := false
- for _, err := range errs {
- if err.Field == "metadata.name" {
- specNameErrored = true
- }
- }
- assert.NotEmpty(t, specNameErrored, "expecting error")
- } else {
- for _, err := range errs {
- if err.Field == "metadata.name" {
- t.Fail()
- }
- }
- }
- }
- }
|