
Before this change we have a mish-mash of ways to pass field names around for error generation. Sometimes string fieldnames, sometimes .Prefix(), sometimes neither, often wrong names or not indexed when it should be. Instead of that mess, this is part one of a couple of commits that will make it more strongly typed and hopefully encourage correct behavior. At least you will have to think about field names, which is better than nothing. It turned out to be really hard to do this incrementally.
229 lines
4.4 KiB
Go
229 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 v1_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
"k8s.io/kubernetes/pkg/api/testing/compat"
|
|
"k8s.io/kubernetes/pkg/api/validation"
|
|
"k8s.io/kubernetes/pkg/runtime"
|
|
utilvalidation "k8s.io/kubernetes/pkg/util/validation"
|
|
)
|
|
|
|
func TestCompatibility_v1_PodSecurityContext(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
input string
|
|
expectedKeys map[string]string
|
|
absentKeys []string
|
|
}{
|
|
{
|
|
name: "hostNetwork = true",
|
|
input: `
|
|
{
|
|
"kind":"Pod",
|
|
"apiVersion":"v1",
|
|
"metadata":{"name":"my-pod-name", "namespace":"my-pod-namespace"},
|
|
"spec": {
|
|
"hostNetwork": true,
|
|
"containers":[{
|
|
"name":"a",
|
|
"image":"my-container-image"
|
|
}]
|
|
}
|
|
}
|
|
`,
|
|
expectedKeys: map[string]string{
|
|
"spec.hostNetwork": "true",
|
|
},
|
|
},
|
|
{
|
|
name: "hostNetwork = false",
|
|
input: `
|
|
{
|
|
"kind":"Pod",
|
|
"apiVersion":"v1",
|
|
"metadata":{"name":"my-pod-name", "namespace":"my-pod-namespace"},
|
|
"spec": {
|
|
"hostNetwork": false,
|
|
"containers":[{
|
|
"name":"a",
|
|
"image":"my-container-image"
|
|
}]
|
|
}
|
|
}
|
|
`,
|
|
absentKeys: []string{
|
|
"spec.hostNetwork",
|
|
},
|
|
},
|
|
{
|
|
name: "hostIPC = true",
|
|
input: `
|
|
{
|
|
"kind":"Pod",
|
|
"apiVersion":"v1",
|
|
"metadata":{"name":"my-pod-name", "namespace":"my-pod-namespace"},
|
|
"spec": {
|
|
"hostIPC": true,
|
|
"containers":[{
|
|
"name":"a",
|
|
"image":"my-container-image"
|
|
}]
|
|
}
|
|
}
|
|
`,
|
|
expectedKeys: map[string]string{
|
|
"spec.hostIPC": "true",
|
|
},
|
|
},
|
|
{
|
|
name: "hostIPC = false",
|
|
input: `
|
|
{
|
|
"kind":"Pod",
|
|
"apiVersion":"v1",
|
|
"metadata":{"name":"my-pod-name", "namespace":"my-pod-namespace"},
|
|
"spec": {
|
|
"hostIPC": false,
|
|
"containers":[{
|
|
"name":"a",
|
|
"image":"my-container-image"
|
|
}]
|
|
}
|
|
}
|
|
`,
|
|
absentKeys: []string{
|
|
"spec.hostIPC",
|
|
},
|
|
},
|
|
{
|
|
name: "hostPID = true",
|
|
input: `
|
|
{
|
|
"kind":"Pod",
|
|
"apiVersion":"v1",
|
|
"metadata":{"name":"my-pod-name", "namespace":"my-pod-namespace"},
|
|
"spec": {
|
|
"hostPID": true,
|
|
"containers":[{
|
|
"name":"a",
|
|
"image":"my-container-image"
|
|
}]
|
|
}
|
|
}
|
|
`,
|
|
expectedKeys: map[string]string{
|
|
"spec.hostPID": "true",
|
|
},
|
|
},
|
|
{
|
|
name: "hostPID = false",
|
|
input: `
|
|
{
|
|
"kind":"Pod",
|
|
"apiVersion":"v1",
|
|
"metadata":{"name":"my-pod-name", "namespace":"my-pod-namespace"},
|
|
"spec": {
|
|
"hostPID": false,
|
|
"containers":[{
|
|
"name":"a",
|
|
"image":"my-container-image"
|
|
}]
|
|
}
|
|
}
|
|
`,
|
|
absentKeys: []string{
|
|
"spec.hostPID",
|
|
},
|
|
},
|
|
{
|
|
name: "reseting defaults for pre-v1.1 mirror pods",
|
|
input: `
|
|
{
|
|
"kind":"Pod",
|
|
"apiVersion":"v1",
|
|
"metadata":{
|
|
"name":"my-pod-name",
|
|
"namespace":"my-pod-namespace",
|
|
"annotations": {
|
|
"kubernetes.io/config.mirror": "mirror"
|
|
}
|
|
},
|
|
"spec": {
|
|
"containers":[{
|
|
"name":"a",
|
|
"image":"my-container-image",
|
|
"resources": {
|
|
"limits": {
|
|
"cpu": "100m"
|
|
}
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
`,
|
|
absentKeys: []string{
|
|
"spec.terminationGracePeriodSeconds",
|
|
"spec.containers[0].resources.requests",
|
|
},
|
|
},
|
|
{
|
|
name: "preserving defaults for v1.1+ mirror pods",
|
|
input: `
|
|
{
|
|
"kind":"Pod",
|
|
"apiVersion":"v1",
|
|
"metadata":{
|
|
"name":"my-pod-name",
|
|
"namespace":"my-pod-namespace",
|
|
"annotations": {
|
|
"kubernetes.io/config.mirror": "cbe924f710c7e26f7693d6a341bcfad0"
|
|
}
|
|
},
|
|
"spec": {
|
|
"containers":[{
|
|
"name":"a",
|
|
"image":"my-container-image",
|
|
"resources": {
|
|
"limits": {
|
|
"cpu": "100m"
|
|
}
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
`,
|
|
expectedKeys: map[string]string{
|
|
"spec.terminationGracePeriodSeconds": "30",
|
|
"spec.containers[0].resources.requests": "map[cpu:100m]",
|
|
},
|
|
},
|
|
}
|
|
|
|
validator := func(obj runtime.Object) utilvalidation.ErrorList {
|
|
return validation.ValidatePodSpec(&(obj.(*api.Pod).Spec), utilvalidation.NewFieldPath("spec"))
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
t.Logf("Testing 1.0.0 backward compatibility for %v", tc.name)
|
|
compat.TestCompatibility(t, "v1", []byte(tc.input), validator, tc.expectedKeys, tc.absentKeys)
|
|
}
|
|
}
|