2015-10-29 16:34:59 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors.
|
2015-10-29 16:34:59 +00:00
|
|
|
|
|
|
|
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 deployment
|
|
|
|
|
|
|
|
import (
|
2016-02-09 16:53:43 +00:00
|
|
|
"reflect"
|
2015-10-29 16:34:59 +00:00
|
|
|
"testing"
|
|
|
|
|
2017-01-17 03:38:19 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2017-01-11 14:09:48 +00:00
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
2017-01-17 10:38:25 +00:00
|
|
|
genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
|
2016-02-09 16:53:43 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2015-10-29 16:34:59 +00:00
|
|
|
"k8s.io/kubernetes/pkg/apis/extensions"
|
|
|
|
)
|
|
|
|
|
2016-02-09 16:53:43 +00:00
|
|
|
func TestStatusUpdates(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
old runtime.Object
|
|
|
|
obj runtime.Object
|
|
|
|
expected runtime.Object
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
old: newDeployment(map[string]string{"test": "label"}, map[string]string{"test": "annotation"}),
|
|
|
|
obj: newDeployment(map[string]string{"test": "label", "sneaky": "label"}, map[string]string{"test": "annotation"}),
|
|
|
|
expected: newDeployment(map[string]string{"test": "label"}, map[string]string{"test": "annotation"}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
old: newDeployment(map[string]string{"test": "label"}, map[string]string{"test": "annotation"}),
|
|
|
|
obj: newDeployment(map[string]string{"test": "label"}, map[string]string{"test": "annotation", "sneaky": "annotation"}),
|
|
|
|
expected: newDeployment(map[string]string{"test": "label"}, map[string]string{"test": "annotation", "sneaky": "annotation"}),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2017-01-02 14:07:36 +00:00
|
|
|
deploymentStatusStrategy{}.PrepareForUpdate(genericapirequest.NewContext(), test.obj, test.old)
|
2016-02-09 16:53:43 +00:00
|
|
|
if !reflect.DeepEqual(test.expected, test.obj) {
|
|
|
|
t.Errorf("Unexpected object mismatch! Expected:\n%#v\ngot:\n%#v", test.expected, test.obj)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newDeployment(labels, annotations map[string]string) *extensions.Deployment {
|
|
|
|
return &extensions.Deployment{
|
2017-01-17 03:38:19 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2016-02-09 16:53:43 +00:00
|
|
|
Name: "test",
|
|
|
|
Labels: labels,
|
|
|
|
Annotations: annotations,
|
|
|
|
},
|
|
|
|
Spec: extensions.DeploymentSpec{
|
|
|
|
Replicas: 1,
|
|
|
|
Strategy: extensions.DeploymentStrategy{
|
|
|
|
Type: extensions.RecreateDeploymentStrategyType,
|
|
|
|
},
|
|
|
|
Template: api.PodTemplateSpec{
|
|
|
|
Spec: api.PodSpec{
|
|
|
|
Containers: []api.Container{
|
|
|
|
{
|
|
|
|
Name: "test",
|
|
|
|
Image: "test",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|