| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- // Copyright 2016 CoreOS, Inc.
- //
- // 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 integration
- import (
- "bytes"
- "reflect"
- "testing"
- "time"
- "github.com/coreos/etcd/Godeps/_workspace/src/golang.org/x/net/context"
- "github.com/coreos/etcd/clientv3"
- "github.com/coreos/etcd/etcdserver/api/v3rpc"
- "github.com/coreos/etcd/integration"
- "github.com/coreos/etcd/lease"
- "github.com/coreos/etcd/pkg/testutil"
- "github.com/coreos/etcd/storage/storagepb"
- )
- func TestKVPut(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- lapi := clientv3.NewLease(clus.RandClient())
- defer lapi.Close()
- kv := clientv3.NewKV(clus.RandClient())
- ctx := context.TODO()
- resp, err := lapi.Create(context.Background(), 10)
- if err != nil {
- t.Fatalf("failed to create lease %v", err)
- }
- tests := []struct {
- key, val string
- leaseID lease.LeaseID
- }{
- {"foo", "bar", lease.NoLease},
- {"hello", "world", lease.LeaseID(resp.ID)},
- }
- for i, tt := range tests {
- if _, err := kv.Put(ctx, tt.key, tt.val, clientv3.WithLease(tt.leaseID)); err != nil {
- t.Fatalf("#%d: couldn't put %q (%v)", i, tt.key, err)
- }
- resp, err := kv.Get(ctx, tt.key)
- if err != nil {
- t.Fatalf("#%d: couldn't get key (%v)", i, err)
- }
- if len(resp.Kvs) != 1 {
- t.Fatalf("#%d: expected 1 key, got %d", i, len(resp.Kvs))
- }
- if !bytes.Equal([]byte(tt.val), resp.Kvs[0].Value) {
- t.Errorf("#%d: val = %s, want %s", i, tt.val, resp.Kvs[0].Value)
- }
- if tt.leaseID != lease.LeaseID(resp.Kvs[0].Lease) {
- t.Errorf("#%d: val = %d, want %d", i, tt.leaseID, resp.Kvs[0].Lease)
- }
- }
- }
- func TestKVRange(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- kv := clientv3.NewKV(clus.RandClient())
- ctx := context.TODO()
- keySet := []string{"a", "b", "c", "c", "c", "foo", "foo/abc", "fop"}
- for i, key := range keySet {
- if _, err := kv.Put(ctx, key, ""); err != nil {
- t.Fatalf("#%d: couldn't put %q (%v)", i, key, err)
- }
- }
- resp, err := kv.Get(ctx, keySet[0])
- if err != nil {
- t.Fatalf("couldn't get key (%v)", err)
- }
- wheader := resp.Header
- tests := []struct {
- begin, end string
- rev int64
- sortOption *clientv3.SortOption
- wantSet []*storagepb.KeyValue
- }{
- // range first two
- {
- "a", "c",
- 0,
- nil,
- []*storagepb.KeyValue{
- {Key: []byte("a"), Value: nil, CreateRevision: 2, ModRevision: 2, Version: 1},
- {Key: []byte("b"), Value: nil, CreateRevision: 3, ModRevision: 3, Version: 1},
- },
- },
- // range all with rev
- {
- "a", "x",
- 2,
- nil,
- []*storagepb.KeyValue{
- {Key: []byte("a"), Value: nil, CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- },
- // range all with SortByKey, SortAscend
- {
- "a", "x",
- 0,
- &clientv3.SortOption{Target: clientv3.SortByKey, Order: clientv3.SortAscend},
- []*storagepb.KeyValue{
- {Key: []byte("a"), Value: nil, CreateRevision: 2, ModRevision: 2, Version: 1},
- {Key: []byte("b"), Value: nil, CreateRevision: 3, ModRevision: 3, Version: 1},
- {Key: []byte("c"), Value: nil, CreateRevision: 4, ModRevision: 6, Version: 3},
- {Key: []byte("foo"), Value: nil, CreateRevision: 7, ModRevision: 7, Version: 1},
- {Key: []byte("foo/abc"), Value: nil, CreateRevision: 8, ModRevision: 8, Version: 1},
- {Key: []byte("fop"), Value: nil, CreateRevision: 9, ModRevision: 9, Version: 1},
- },
- },
- // range all with SortByCreatedRev, SortDescend
- {
- "a", "x",
- 0,
- &clientv3.SortOption{Target: clientv3.SortByCreatedRev, Order: clientv3.SortDescend},
- []*storagepb.KeyValue{
- {Key: []byte("fop"), Value: nil, CreateRevision: 9, ModRevision: 9, Version: 1},
- {Key: []byte("foo/abc"), Value: nil, CreateRevision: 8, ModRevision: 8, Version: 1},
- {Key: []byte("foo"), Value: nil, CreateRevision: 7, ModRevision: 7, Version: 1},
- {Key: []byte("c"), Value: nil, CreateRevision: 4, ModRevision: 6, Version: 3},
- {Key: []byte("b"), Value: nil, CreateRevision: 3, ModRevision: 3, Version: 1},
- {Key: []byte("a"), Value: nil, CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- },
- // range all with SortByModifiedRev, SortDescend
- {
- "a", "x",
- 0,
- &clientv3.SortOption{Target: clientv3.SortByModifiedRev, Order: clientv3.SortDescend},
- []*storagepb.KeyValue{
- {Key: []byte("fop"), Value: nil, CreateRevision: 9, ModRevision: 9, Version: 1},
- {Key: []byte("foo/abc"), Value: nil, CreateRevision: 8, ModRevision: 8, Version: 1},
- {Key: []byte("foo"), Value: nil, CreateRevision: 7, ModRevision: 7, Version: 1},
- {Key: []byte("c"), Value: nil, CreateRevision: 4, ModRevision: 6, Version: 3},
- {Key: []byte("b"), Value: nil, CreateRevision: 3, ModRevision: 3, Version: 1},
- {Key: []byte("a"), Value: nil, CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- },
- }
- for i, tt := range tests {
- opts := []clientv3.OpOption{clientv3.WithRange(tt.end), clientv3.WithRev(tt.rev)}
- if tt.sortOption != nil {
- opts = append(opts, clientv3.WithSort(tt.sortOption.Target, tt.sortOption.Order))
- }
- resp, err := kv.Get(ctx, tt.begin, opts...)
- if err != nil {
- t.Fatalf("#%d: couldn't range (%v)", i, err)
- }
- if !reflect.DeepEqual(wheader, resp.Header) {
- t.Fatalf("#%d: wheader expected %+v, got %+v", i, wheader, resp.Header)
- }
- if !reflect.DeepEqual(tt.wantSet, resp.Kvs) {
- t.Fatalf("#%d: resp.Kvs expected %+v, got %+v", i, tt.wantSet, resp.Kvs)
- }
- }
- }
- func TestKVDeleteRange(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- kv := clientv3.NewKV(clus.RandClient())
- ctx := context.TODO()
- keySet := []string{"a", "b", "c", "c", "c", "d", "e", "f"}
- for i, key := range keySet {
- if _, err := kv.Put(ctx, key, ""); err != nil {
- t.Fatalf("#%d: couldn't put %q (%v)", i, key, err)
- }
- }
- tests := []struct {
- key, end string
- delRev int64
- }{
- {"a", "b", int64(len(keySet) + 2)}, // delete [a, b)
- {"d", "f", int64(len(keySet) + 3)}, // delete [d, f)
- }
- for i, tt := range tests {
- dresp, err := kv.Delete(ctx, tt.key, clientv3.WithRange(tt.end))
- if err != nil {
- t.Fatalf("#%d: couldn't delete range (%v)", i, err)
- }
- if dresp.Header.Revision != tt.delRev {
- t.Fatalf("#%d: dresp.Header.Revision got %d, want %d", i, dresp.Header.Revision, tt.delRev)
- }
- resp, err := kv.Get(ctx, tt.key, clientv3.WithRange(tt.end))
- if err != nil {
- t.Fatalf("#%d: couldn't get key (%v)", i, err)
- }
- if len(resp.Kvs) > 0 {
- t.Fatalf("#%d: resp.Kvs expected none, but got %+v", i, resp.Kvs)
- }
- }
- }
- func TestKVDelete(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- kv := clientv3.NewKV(clus.RandClient())
- ctx := context.TODO()
- presp, err := kv.Put(ctx, "foo", "")
- if err != nil {
- t.Fatalf("couldn't put 'foo' (%v)", err)
- }
- if presp.Header.Revision != 2 {
- t.Fatalf("presp.Header.Revision got %d, want %d", presp.Header.Revision, 2)
- }
- resp, err := kv.Delete(ctx, "foo")
- if err != nil {
- t.Fatalf("couldn't delete key (%v)", err)
- }
- if resp.Header.Revision != 3 {
- t.Fatalf("resp.Header.Revision got %d, want %d", resp.Header.Revision, 3)
- }
- gresp, err := kv.Get(ctx, "foo")
- if err != nil {
- t.Fatalf("couldn't get key (%v)", err)
- }
- if len(gresp.Kvs) > 0 {
- t.Fatalf("gresp.Kvs got %+v, want none", gresp.Kvs)
- }
- }
- func TestKVCompact(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- kv := clientv3.NewKV(clus.RandClient())
- ctx := context.TODO()
- for i := 0; i < 10; i++ {
- if _, err := kv.Put(ctx, "foo", "bar"); err != nil {
- t.Fatalf("couldn't put 'foo' (%v)", err)
- }
- }
- err := kv.Compact(ctx, 7)
- if err != nil {
- t.Fatalf("couldn't compact kv space (%v)", err)
- }
- err = kv.Compact(ctx, 7)
- if err == nil || err != v3rpc.ErrCompacted {
- t.Fatalf("error got %v, want %v", err, v3rpc.ErrFutureRev)
- }
- wc := clientv3.NewWatcher(clus.RandClient())
- defer wc.Close()
- wchan := wc.Watch(ctx, "foo", 3)
- _, ok := <-wchan
- if ok {
- t.Fatalf("wchan ok got %v, want false", ok)
- }
- err = kv.Compact(ctx, 1000)
- if err == nil || err != v3rpc.ErrFutureRev {
- t.Fatalf("error got %v, want %v", err, v3rpc.ErrFutureRev)
- }
- }
- // TestKVGetRetry ensures get will retry on disconnect.
- func TestKVGetRetry(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- kv := clientv3.NewKV(clus.Client(0))
- ctx := context.TODO()
- if _, err := kv.Put(ctx, "foo", "bar"); err != nil {
- t.Fatal(err)
- }
- clus.Members[0].Stop(t)
- <-clus.Members[0].StopNotify()
- donec := make(chan struct{})
- go func() {
- // Get will fail, but reconnect will trigger
- gresp, gerr := kv.Get(ctx, "foo")
- if gerr != nil {
- t.Fatal(gerr)
- }
- wkvs := []*storagepb.KeyValue{
- {
- Key: []byte("foo"),
- Value: []byte("bar"),
- CreateRevision: 2,
- ModRevision: 2,
- Version: 1,
- },
- }
- if !reflect.DeepEqual(gresp.Kvs, wkvs) {
- t.Fatalf("bad get: got %v, want %v", gresp.Kvs, wkvs)
- }
- donec <- struct{}{}
- }()
- time.Sleep(100 * time.Millisecond)
- clus.Members[0].Restart(t)
- select {
- case <-time.After(5 * time.Second):
- t.Fatalf("timed out waiting for get")
- case <-donec:
- }
- }
- // TestKVPutFailGetRetry ensures a get will retry following a failed put.
- func TestKVPutFailGetRetry(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- kv := clientv3.NewKV(clus.Client(0))
- ctx := context.TODO()
- clus.Members[0].Stop(t)
- <-clus.Members[0].StopNotify()
- _, err := kv.Put(ctx, "foo", "bar")
- if err == nil {
- t.Fatalf("got success on disconnected put, wanted error")
- }
- donec := make(chan struct{})
- go func() {
- // Get will fail, but reconnect will trigger
- gresp, gerr := kv.Get(ctx, "foo")
- if gerr != nil {
- t.Fatal(gerr)
- }
- if len(gresp.Kvs) != 0 {
- t.Fatalf("bad get kvs: got %+v, want empty", gresp.Kvs)
- }
- donec <- struct{}{}
- }()
- time.Sleep(100 * time.Millisecond)
- clus.Members[0].Restart(t)
- select {
- case <-time.After(5 * time.Second):
- t.Fatalf("timed out waiting for get")
- case <-donec:
- }
- }
|