109 lines
3.1 KiB
Go
109 lines
3.1 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 (
|
|
"strings"
|
|
"testing"
|
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
"k8s.io/kubernetes/pkg/api/testapi"
|
|
"k8s.io/kubernetes/pkg/registry/registrytest"
|
|
"k8s.io/kubernetes/pkg/registry/service/allocator"
|
|
"k8s.io/kubernetes/pkg/runtime"
|
|
"k8s.io/kubernetes/pkg/tools"
|
|
"k8s.io/kubernetes/pkg/tools/etcdtest"
|
|
)
|
|
|
|
func newStorage(t *testing.T) (*Etcd, *tools.FakeEtcdClient, allocator.Interface) {
|
|
etcdStorage, fakeClient := registrytest.NewEtcdStorage(t, "")
|
|
mem := allocator.NewAllocationMap(100, "rangeSpecValue")
|
|
etcd := NewEtcd(mem, "/ranges/serviceips", "serviceipallocation", etcdStorage)
|
|
return etcd, fakeClient, mem
|
|
}
|
|
|
|
func validNewRangeAllocation() *api.RangeAllocation {
|
|
return &api.RangeAllocation{
|
|
Range: "rangeSpecValue",
|
|
}
|
|
}
|
|
|
|
func key() string {
|
|
s := "/ranges/serviceips"
|
|
return etcdtest.AddPrefix(s)
|
|
}
|
|
|
|
func TestEmpty(t *testing.T) {
|
|
storage, fakeClient, _ := newStorage(t)
|
|
fakeClient.ExpectNotFoundGet(key())
|
|
if _, err := storage.Allocate(1); !strings.Contains(err.Error(), "cannot allocate resources of type serviceipallocation at this time") {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestStore(t *testing.T) {
|
|
storage, fakeClient, backing := newStorage(t)
|
|
if _, err := fakeClient.Set(key(), runtime.EncodeOrDie(testapi.Default.Codec(), validNewRangeAllocation()), 0); err != nil {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
|
|
if _, err := storage.Allocate(2); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
ok, err := backing.Allocate(2)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if ok {
|
|
t.Fatal("Expected backing allocation to fail")
|
|
}
|
|
if ok, err := storage.Allocate(2); ok || err != nil {
|
|
t.Fatal("Expected allocation to fail")
|
|
}
|
|
|
|
obj := fakeClient.Data[key()]
|
|
if obj.R == nil || obj.R.Node == nil {
|
|
t.Fatalf("%s is empty: %#v", key(), obj)
|
|
}
|
|
t.Logf("data: %#v", obj.R.Node)
|
|
|
|
other := allocator.NewAllocationMap(100, "rangeSpecValue")
|
|
|
|
allocation := &api.RangeAllocation{}
|
|
if err := storage.storage.Get(key(), allocation, false); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if allocation.ResourceVersion != "2" {
|
|
t.Fatalf("%#v", allocation)
|
|
}
|
|
if allocation.Range != "rangeSpecValue" {
|
|
t.Errorf("unexpected stored Range: %s", allocation.Range)
|
|
}
|
|
if err := other.Restore("rangeSpecValue", allocation.Data); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !other.Has(2) {
|
|
t.Fatalf("could not restore allocated IP: %#v", other)
|
|
}
|
|
|
|
other = allocator.NewAllocationMap(100, "rangeSpecValue")
|
|
otherStorage := NewEtcd(other, "/ranges/serviceips", "serviceipallocation", storage.storage)
|
|
if ok, err := otherStorage.Allocate(2); ok || err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|