2015-08-18 15:03:54 +00:00
|
|
|
/*
|
|
|
|
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 registrytest
|
|
|
|
|
|
|
|
import (
|
2015-09-04 07:06:01 +00:00
|
|
|
"fmt"
|
2015-08-20 09:17:04 +00:00
|
|
|
"testing"
|
|
|
|
|
2015-08-18 15:03:54 +00:00
|
|
|
"github.com/coreos/go-etcd/etcd"
|
|
|
|
|
2015-08-20 14:16:39 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2015-08-31 12:11:11 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/rest/resttest"
|
2015-08-20 09:17:04 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/testapi"
|
2015-08-31 12:11:11 +00:00
|
|
|
"k8s.io/kubernetes/pkg/fields"
|
|
|
|
"k8s.io/kubernetes/pkg/labels"
|
|
|
|
etcdgeneric "k8s.io/kubernetes/pkg/registry/generic/etcd"
|
2015-08-18 15:03:54 +00:00
|
|
|
"k8s.io/kubernetes/pkg/runtime"
|
2015-08-20 09:17:04 +00:00
|
|
|
"k8s.io/kubernetes/pkg/storage"
|
|
|
|
etcdstorage "k8s.io/kubernetes/pkg/storage/etcd"
|
2015-08-18 15:03:54 +00:00
|
|
|
"k8s.io/kubernetes/pkg/tools"
|
2015-08-20 09:17:04 +00:00
|
|
|
"k8s.io/kubernetes/pkg/tools/etcdtest"
|
2015-08-18 15:03:54 +00:00
|
|
|
)
|
|
|
|
|
2015-09-04 07:06:01 +00:00
|
|
|
func NewEtcdStorage(t *testing.T, group string) (storage.Interface, *tools.FakeEtcdClient) {
|
2015-08-20 09:17:04 +00:00
|
|
|
fakeClient := tools.NewFakeEtcdClient(t)
|
|
|
|
fakeClient.TestIndex = true
|
2015-09-04 07:06:01 +00:00
|
|
|
etcdStorage := etcdstorage.NewEtcdStorage(fakeClient, testapi.Groups[group].Codec(), etcdtest.PathPrefix())
|
2015-08-20 09:17:04 +00:00
|
|
|
return etcdStorage, fakeClient
|
|
|
|
}
|
|
|
|
|
2015-08-31 12:11:11 +00:00
|
|
|
type Tester struct {
|
|
|
|
tester *resttest.Tester
|
|
|
|
fakeClient *tools.FakeEtcdClient
|
|
|
|
storage *etcdgeneric.Etcd
|
|
|
|
}
|
|
|
|
type UpdateFunc func(runtime.Object) runtime.Object
|
2015-08-20 14:16:39 +00:00
|
|
|
|
2015-08-31 12:11:11 +00:00
|
|
|
func New(t *testing.T, fakeClient *tools.FakeEtcdClient, storage *etcdgeneric.Etcd) *Tester {
|
|
|
|
return &Tester{
|
|
|
|
tester: resttest.New(t, storage, fakeClient.SetError),
|
|
|
|
fakeClient: fakeClient,
|
|
|
|
storage: storage,
|
2015-08-28 09:24:34 +00:00
|
|
|
}
|
2015-08-31 12:11:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tester) TestNamespace() string {
|
|
|
|
return t.tester.TestNamespace()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tester) ClusterScope() *Tester {
|
|
|
|
t.tester = t.tester.ClusterScope()
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tester) AllowCreateOnUpdate() *Tester {
|
|
|
|
t.tester = t.tester.AllowCreateOnUpdate()
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tester) GeneratesName() *Tester {
|
|
|
|
t.tester = t.tester.GeneratesName()
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2015-09-01 13:27:13 +00:00
|
|
|
func (t *Tester) ReturnDeletedObject() *Tester {
|
|
|
|
t.tester = t.tester.ReturnDeletedObject()
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2015-08-31 12:11:11 +00:00
|
|
|
func (t *Tester) TestCreate(valid runtime.Object, invalid ...runtime.Object) {
|
|
|
|
t.tester.TestCreate(
|
|
|
|
valid,
|
|
|
|
t.setObject,
|
|
|
|
t.getObject,
|
|
|
|
invalid...,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tester) TestUpdate(valid runtime.Object, validUpdateFunc UpdateFunc, invalidUpdateFunc ...UpdateFunc) {
|
|
|
|
var invalidFuncs []resttest.UpdateFunc
|
|
|
|
for _, f := range invalidUpdateFunc {
|
|
|
|
invalidFuncs = append(invalidFuncs, resttest.UpdateFunc(f))
|
2015-08-28 09:24:34 +00:00
|
|
|
}
|
2015-08-31 12:11:11 +00:00
|
|
|
t.tester.TestUpdate(
|
|
|
|
valid,
|
|
|
|
t.setObject,
|
|
|
|
t.setResourceVersion,
|
|
|
|
t.getObject,
|
|
|
|
resttest.UpdateFunc(validUpdateFunc),
|
|
|
|
invalidFuncs...,
|
|
|
|
)
|
2015-08-28 09:24:34 +00:00
|
|
|
}
|
|
|
|
|
2015-09-01 13:27:13 +00:00
|
|
|
func (t *Tester) TestDelete(valid runtime.Object) {
|
|
|
|
t.tester.TestDelete(
|
|
|
|
valid,
|
|
|
|
t.setObject,
|
|
|
|
t.getObject,
|
|
|
|
isNotFoundEtcdError,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tester) TestDeleteGraceful(valid runtime.Object, expectedGrace int64) {
|
|
|
|
t.tester.TestDeleteGraceful(
|
|
|
|
valid,
|
|
|
|
t.setObject,
|
|
|
|
t.getObject,
|
|
|
|
expectedGrace,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2015-08-31 12:11:11 +00:00
|
|
|
func (t *Tester) TestGet(valid runtime.Object) {
|
|
|
|
t.tester.TestGet(valid)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tester) TestList(valid runtime.Object) {
|
|
|
|
t.tester.TestList(
|
|
|
|
valid,
|
|
|
|
t.setObjectsForList,
|
|
|
|
t.setResourceVersion,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tester) TestWatch(valid runtime.Object, labelsPass, labelsFail []labels.Set, fieldsPass, fieldsFail []fields.Set) {
|
|
|
|
t.tester.TestWatch(
|
|
|
|
valid,
|
|
|
|
t.fakeClient.WaitForWatchCompletion,
|
|
|
|
t.injectWatchError,
|
|
|
|
t.emitObject,
|
|
|
|
labelsPass,
|
|
|
|
labelsFail,
|
|
|
|
fieldsPass,
|
|
|
|
fieldsFail,
|
|
|
|
[]string{etcdstorage.EtcdCreate, etcdstorage.EtcdSet, etcdstorage.EtcdCAS, etcdstorage.EtcdDelete},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// =============================================================================
|
2015-09-04 07:06:01 +00:00
|
|
|
// get codec based on runtime.Object
|
|
|
|
func getCodec(obj runtime.Object) (runtime.Codec, error) {
|
|
|
|
_, kind, err := api.Scheme.ObjectVersionAndKind(obj)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("unexpected encoding error: %v", err)
|
|
|
|
}
|
|
|
|
// TODO: caesarxuchao: we should detect which group an object belongs to
|
|
|
|
// by using the version returned by Schem.ObjectVersionAndKind() once we
|
|
|
|
// split the schemes for internal objects.
|
|
|
|
// TODO: caesarxuchao: we should add a map from kind to group in Scheme.
|
|
|
|
var codec runtime.Codec
|
|
|
|
if api.Scheme.Recognizes(testapi.Default.GroupAndVersion(), kind) {
|
|
|
|
codec = testapi.Default.Codec()
|
|
|
|
} else if api.Scheme.Recognizes(testapi.Experimental.GroupAndVersion(), kind) {
|
|
|
|
codec = testapi.Experimental.Codec()
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("unexpected kind: %v", kind)
|
|
|
|
}
|
|
|
|
return codec, nil
|
|
|
|
}
|
|
|
|
|
2015-08-31 12:11:11 +00:00
|
|
|
// Helper functions
|
|
|
|
|
|
|
|
func (t *Tester) getObject(ctx api.Context, obj runtime.Object) (runtime.Object, error) {
|
2015-08-20 14:16:39 +00:00
|
|
|
meta, err := api.ObjectMetaFor(obj)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-08-31 12:11:11 +00:00
|
|
|
key, err := t.storage.KeyFunc(ctx, meta.Name)
|
2015-08-20 14:16:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
key = etcdtest.AddPrefix(key)
|
2015-08-31 12:11:11 +00:00
|
|
|
resp, err := t.fakeClient.Get(key, false, false)
|
2015-08-20 14:16:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-08-31 12:11:11 +00:00
|
|
|
result := t.storage.NewFunc()
|
2015-09-04 07:06:01 +00:00
|
|
|
|
|
|
|
codec, err := getCodec(obj)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := codec.DecodeInto([]byte(resp.Node.Value), result); err != nil {
|
2015-08-20 14:16:39 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2015-08-31 12:11:11 +00:00
|
|
|
func (t *Tester) setObject(ctx api.Context, obj runtime.Object) error {
|
2015-08-20 14:16:39 +00:00
|
|
|
meta, err := api.ObjectMetaFor(obj)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-08-31 12:11:11 +00:00
|
|
|
key, err := t.storage.KeyFunc(ctx, meta.Name)
|
2015-08-20 14:16:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
key = etcdtest.AddPrefix(key)
|
2015-09-04 07:06:01 +00:00
|
|
|
|
|
|
|
codec, err := getCodec(obj)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = t.fakeClient.Set(key, runtime.EncodeOrDie(codec, obj), 0)
|
2015-08-20 14:16:39 +00:00
|
|
|
return err
|
2015-08-18 15:03:54 +00:00
|
|
|
}
|
|
|
|
|
2015-08-31 12:11:11 +00:00
|
|
|
func (t *Tester) setObjectsForList(objects []runtime.Object) []runtime.Object {
|
2015-08-18 15:03:54 +00:00
|
|
|
result := make([]runtime.Object, len(objects))
|
2015-08-31 12:11:11 +00:00
|
|
|
key := etcdtest.AddPrefix(t.storage.KeyRootFunc(t.tester.TestContext()))
|
|
|
|
|
2015-08-18 15:03:54 +00:00
|
|
|
if len(objects) > 0 {
|
|
|
|
nodes := make([]*etcd.Node, len(objects))
|
|
|
|
for i, obj := range objects {
|
2015-09-04 07:06:01 +00:00
|
|
|
codec, _ := getCodec(obj)
|
|
|
|
encoded := runtime.EncodeOrDie(codec, obj)
|
|
|
|
decoded, _ := codec.Decode([]byte(encoded))
|
2015-08-18 15:03:54 +00:00
|
|
|
nodes[i] = &etcd.Node{Value: encoded}
|
|
|
|
result[i] = decoded
|
|
|
|
}
|
2015-08-31 12:11:11 +00:00
|
|
|
t.fakeClient.Data[key] = tools.EtcdResponseWithError{
|
2015-08-18 15:03:54 +00:00
|
|
|
R: &etcd.Response{
|
|
|
|
Node: &etcd.Node{
|
|
|
|
Nodes: nodes,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
E: nil,
|
|
|
|
}
|
|
|
|
} else {
|
2015-08-31 12:11:11 +00:00
|
|
|
t.fakeClient.Data[key] = tools.EtcdResponseWithError{
|
2015-08-18 15:03:54 +00:00
|
|
|
R: &etcd.Response{},
|
2015-08-31 12:11:11 +00:00
|
|
|
E: t.fakeClient.NewError(tools.EtcdErrorCodeNotFound),
|
2015-08-18 15:03:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
2015-08-20 14:16:39 +00:00
|
|
|
|
2015-08-31 12:11:11 +00:00
|
|
|
func (t *Tester) setResourceVersion(resourceVersion uint64) {
|
|
|
|
t.fakeClient.ChangeIndex = resourceVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tester) injectWatchError(err error) {
|
|
|
|
t.fakeClient.WatchInjectError <- err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Tester) emitObject(obj runtime.Object, action string) error {
|
2015-09-04 07:06:01 +00:00
|
|
|
codec, err := getCodec(obj)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
encoded, err := codec.Encode(obj)
|
2015-08-31 12:11:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
node := &etcd.Node{
|
|
|
|
Value: string(encoded),
|
|
|
|
}
|
|
|
|
var prevNode *etcd.Node = nil
|
|
|
|
if action == etcdstorage.EtcdDelete {
|
|
|
|
prevNode = node
|
|
|
|
}
|
|
|
|
t.fakeClient.WatchResponse <- &etcd.Response{
|
|
|
|
Action: action,
|
|
|
|
Node: node,
|
|
|
|
PrevNode: prevNode,
|
|
|
|
}
|
|
|
|
return nil
|
2015-08-20 14:16:39 +00:00
|
|
|
}
|
2015-09-01 13:27:13 +00:00
|
|
|
|
|
|
|
func isNotFoundEtcdError(err error) bool {
|
|
|
|
etcdError, ok := err.(*etcd.EtcdError)
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return etcdError.ErrorCode == tools.EtcdErrorCodeNotFound
|
|
|
|
}
|