k3s/pkg/registry/experimental/controller/etcd/etcd_test.go

130 lines
3.6 KiB
Go
Raw Normal View History

2015-08-06 16:53:34 +00:00
/*
Copyright 2014 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 etcd
import (
"testing"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/testapi"
"k8s.io/kubernetes/pkg/expapi"
"k8s.io/kubernetes/pkg/registry/registrytest"
2015-08-06 16:53:34 +00:00
"k8s.io/kubernetes/pkg/runtime"
"k8s.io/kubernetes/pkg/tools"
"k8s.io/kubernetes/pkg/tools/etcdtest"
"k8s.io/kubernetes/pkg/util"
)
func newStorage(t *testing.T) (*ScaleREST, *tools.FakeEtcdClient) {
etcdStorage, fakeClient := registrytest.NewEtcdStorage(t)
return NewStorage(etcdStorage).Scale, fakeClient
2015-08-06 16:53:34 +00:00
}
var validPodTemplate = api.PodTemplate{
Template: api.PodTemplateSpec{
ObjectMeta: api.ObjectMeta{
Labels: map[string]string{"a": "b"},
},
Spec: api.PodSpec{
Containers: []api.Container{
{
Name: "test",
Image: "test_image",
ImagePullPolicy: api.PullIfNotPresent,
},
},
RestartPolicy: api.RestartPolicyAlways,
DNSPolicy: api.DNSClusterFirst,
},
},
}
var validReplicas = 8
var validControllerSpec = api.ReplicationControllerSpec{
Replicas: validReplicas,
Selector: validPodTemplate.Template.Labels,
Template: &validPodTemplate.Template,
}
var validController = api.ReplicationController{
ObjectMeta: api.ObjectMeta{Name: "foo", Namespace: "test", ResourceVersion: "1"},
Spec: validControllerSpec,
}
var validScale = expapi.Scale{
ObjectMeta: api.ObjectMeta{Name: "foo", Namespace: "test"},
Spec: expapi.ScaleSpec{
Replicas: validReplicas,
},
Status: expapi.ScaleStatus{
Replicas: 0,
Selector: validPodTemplate.Template.Labels,
},
}
func TestGet(t *testing.T) {
storage, fakeClient := newStorage(t)
2015-08-06 16:53:34 +00:00
ctx := api.WithNamespace(api.NewContext(), "test")
2015-08-06 16:53:34 +00:00
key := etcdtest.AddPrefix("/controllers/test/foo")
if _, err := fakeClient.Set(key, runtime.EncodeOrDie(testapi.Codec(), &validController), 0); err != nil {
t.Fatalf("unexpected error: %v", err)
2015-08-06 16:53:34 +00:00
}
expect := &validScale
obj, err := storage.Get(ctx, "foo")
scale := obj.(*expapi.Scale)
2015-08-06 16:53:34 +00:00
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if e, a := expect, scale; !api.Semantic.DeepEqual(e, a) {
t.Errorf("unexpected scale: %s", util.ObjectDiff(e, a))
2015-08-06 16:53:34 +00:00
}
}
func TestUpdate(t *testing.T) {
storage, fakeClient := newStorage(t)
2015-08-06 16:53:34 +00:00
ctx := api.WithNamespace(api.NewContext(), "test")
2015-08-06 16:53:34 +00:00
key := etcdtest.AddPrefix("/controllers/test/foo")
if _, err := fakeClient.Set(key, runtime.EncodeOrDie(testapi.Codec(), &validController), 0); err != nil {
t.Fatalf("unexpected error: %v", err)
2015-08-06 16:53:34 +00:00
}
replicas := 12
update := expapi.Scale{
ObjectMeta: api.ObjectMeta{Name: "foo", Namespace: "test"},
Spec: expapi.ScaleSpec{
Replicas: replicas,
},
}
if _, _, err := storage.Update(ctx, &update); err != nil {
t.Fatalf("unexpected error: %v", err)
2015-08-06 16:53:34 +00:00
}
response, err := fakeClient.Get(key, false, false)
2015-08-06 16:53:34 +00:00
if err != nil {
t.Fatalf("unexpected error: %v", err)
2015-08-06 16:53:34 +00:00
}
var controller api.ReplicationController
testapi.Codec().DecodeInto([]byte(response.Node.Value), &controller)
2015-08-06 16:53:34 +00:00
if controller.Spec.Replicas != replicas {
t.Errorf("wrong replicas count expected: %d got: %d", replicas, controller.Spec.Replicas)
}
}