mirror of https://github.com/k3s-io/k3s
155 lines
3.8 KiB
Go
155 lines
3.8 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 etcd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
"k8s.io/kubernetes/pkg/fields"
|
|
"k8s.io/kubernetes/pkg/labels"
|
|
"k8s.io/kubernetes/pkg/registry/generic"
|
|
"k8s.io/kubernetes/pkg/registry/registrytest"
|
|
"k8s.io/kubernetes/pkg/runtime"
|
|
etcdtesting "k8s.io/kubernetes/pkg/storage/etcd/testing"
|
|
"k8s.io/kubernetes/pkg/util/intstr"
|
|
)
|
|
|
|
func newStorage(t *testing.T) (*REST, *etcdtesting.EtcdTestServer) {
|
|
etcdStorage, server := registrytest.NewEtcdStorage(t, "")
|
|
return NewREST(etcdStorage, generic.UndecoratedStorage), server
|
|
}
|
|
|
|
func validService() *api.Service {
|
|
return &api.Service{
|
|
ObjectMeta: api.ObjectMeta{
|
|
Name: "foo",
|
|
Namespace: api.NamespaceDefault,
|
|
},
|
|
Spec: api.ServiceSpec{
|
|
Selector: map[string]string{"bar": "baz"},
|
|
ClusterIP: "None",
|
|
SessionAffinity: "None",
|
|
Type: api.ServiceTypeClusterIP,
|
|
Ports: []api.ServicePort{{
|
|
Port: 6502,
|
|
Protocol: api.ProtocolTCP,
|
|
TargetPort: intstr.FromInt(6502),
|
|
}},
|
|
},
|
|
}
|
|
}
|
|
|
|
func TestCreate(t *testing.T) {
|
|
storage, server := newStorage(t)
|
|
defer server.Terminate(t)
|
|
test := registrytest.New(t, storage.Etcd)
|
|
validService := validService()
|
|
validService.ObjectMeta = api.ObjectMeta{}
|
|
test.TestCreate(
|
|
// valid
|
|
validService,
|
|
// invalid
|
|
&api.Service{
|
|
Spec: api.ServiceSpec{},
|
|
},
|
|
// invalid
|
|
&api.Service{
|
|
Spec: api.ServiceSpec{
|
|
Selector: map[string]string{"bar": "baz"},
|
|
ClusterIP: "invalid",
|
|
SessionAffinity: "None",
|
|
Type: api.ServiceTypeClusterIP,
|
|
Ports: []api.ServicePort{{
|
|
Port: 6502,
|
|
Protocol: api.ProtocolTCP,
|
|
TargetPort: intstr.FromInt(6502),
|
|
}},
|
|
},
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestUpdate(t *testing.T) {
|
|
storage, server := newStorage(t)
|
|
defer server.Terminate(t)
|
|
test := registrytest.New(t, storage.Etcd).AllowCreateOnUpdate()
|
|
test.TestUpdate(
|
|
// valid
|
|
validService(),
|
|
// updateFunc
|
|
func(obj runtime.Object) runtime.Object {
|
|
object := obj.(*api.Service)
|
|
object.Spec = api.ServiceSpec{
|
|
Selector: map[string]string{"bar": "baz2"},
|
|
SessionAffinity: api.ServiceAffinityNone,
|
|
Type: api.ServiceTypeClusterIP,
|
|
Ports: []api.ServicePort{{
|
|
Port: 6502,
|
|
Protocol: api.ProtocolTCP,
|
|
TargetPort: intstr.FromInt(6502),
|
|
}},
|
|
}
|
|
return object
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestDelete(t *testing.T) {
|
|
storage, server := newStorage(t)
|
|
defer server.Terminate(t)
|
|
test := registrytest.New(t, storage.Etcd).AllowCreateOnUpdate()
|
|
test.TestDelete(validService())
|
|
}
|
|
|
|
func TestGet(t *testing.T) {
|
|
storage, server := newStorage(t)
|
|
defer server.Terminate(t)
|
|
test := registrytest.New(t, storage.Etcd).AllowCreateOnUpdate()
|
|
test.TestGet(validService())
|
|
}
|
|
|
|
func TestList(t *testing.T) {
|
|
storage, server := newStorage(t)
|
|
defer server.Terminate(t)
|
|
test := registrytest.New(t, storage.Etcd).AllowCreateOnUpdate()
|
|
test.TestList(validService())
|
|
}
|
|
|
|
func TestWatch(t *testing.T) {
|
|
storage, server := newStorage(t)
|
|
defer server.Terminate(t)
|
|
test := registrytest.New(t, storage.Etcd)
|
|
test.TestWatch(
|
|
validService(),
|
|
// matching labels
|
|
[]labels.Set{},
|
|
// not matching labels
|
|
[]labels.Set{
|
|
{"foo": "bar"},
|
|
},
|
|
// matching fields
|
|
[]fields.Set{
|
|
{"metadata.name": "foo"},
|
|
},
|
|
// not matchin fields
|
|
[]fields.Set{
|
|
{"metadata.name": "bar"},
|
|
},
|
|
)
|
|
}
|