| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165 |
- // 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 recipe
- package integration
- import (
- "bytes"
- "fmt"
- "math/rand"
- "reflect"
- "sort"
- "sync"
- "testing"
- "time"
- "github.com/coreos/etcd/Godeps/_workspace/src/golang.org/x/net/context"
- "github.com/coreos/etcd/Godeps/_workspace/src/google.golang.org/grpc"
- pb "github.com/coreos/etcd/etcdserver/etcdserverpb"
- "github.com/coreos/etcd/lease"
- "github.com/coreos/etcd/storage/storagepb"
- )
- type clusterV3 struct {
- *cluster
- conns []*grpc.ClientConn
- }
- // newClusterGRPC returns a launched cluster with a grpc client connection
- // for each cluster member.
- func newClusterGRPC(t *testing.T, cfg *clusterConfig) *clusterV3 {
- cfg.useV3 = true
- cfg.useGRPC = true
- clus := &clusterV3{cluster: NewClusterByConfig(t, cfg)}
- for _, m := range clus.Members {
- conn, err := NewGRPCClient(m)
- if err != nil {
- t.Fatal(err)
- }
- clus.conns = append(clus.conns, conn)
- }
- clus.Launch(t)
- return clus
- }
- func (c *clusterV3) Terminate(t *testing.T) {
- for _, conn := range c.conns {
- if err := conn.Close(); err != nil {
- t.Error(err)
- }
- }
- c.cluster.Terminate(t)
- }
- func (c *clusterV3) RandConn() *grpc.ClientConn {
- return c.conns[rand.Intn(len(c.conns))]
- }
- // TestV3PutOverwrite puts a key with the v3 api to a random cluster member,
- // overwrites it, then checks that the change was applied.
- func TestV3PutOverwrite(t *testing.T) {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- defer clus.Terminate(t)
- kvc := pb.NewKVClient(clus.RandConn())
- key := []byte("foo")
- reqput := &pb.PutRequest{Key: key, Value: []byte("bar")}
- respput, err := kvc.Put(context.TODO(), reqput)
- if err != nil {
- t.Fatalf("couldn't put key (%v)", err)
- }
- // overwrite
- reqput.Value = []byte("baz")
- respput2, err := kvc.Put(context.TODO(), reqput)
- if err != nil {
- t.Fatalf("couldn't put key (%v)", err)
- }
- if respput2.Header.Revision <= respput.Header.Revision {
- t.Fatalf("expected newer revision on overwrite, got %v <= %v",
- respput2.Header.Revision, respput.Header.Revision)
- }
- reqrange := &pb.RangeRequest{Key: key}
- resprange, err := kvc.Range(context.TODO(), reqrange)
- if err != nil {
- t.Fatalf("couldn't get key (%v)", err)
- }
- if len(resprange.Kvs) != 1 {
- t.Fatalf("expected 1 key, got %v", len(resprange.Kvs))
- }
- kv := resprange.Kvs[0]
- if kv.ModRevision <= kv.CreateRevision {
- t.Errorf("expected modRev > createRev, got %d <= %d",
- kv.ModRevision, kv.CreateRevision)
- }
- if !reflect.DeepEqual(reqput.Value, kv.Value) {
- t.Errorf("expected value %v, got %v", reqput.Value, kv.Value)
- }
- }
- // TestV3DeleteRange tests various edge cases in the DeleteRange API.
- func TestV3DeleteRange(t *testing.T) {
- tests := []struct {
- keySet []string
- begin string
- end string
- wantSet [][]byte
- }{
- // delete middle
- {
- []string{"foo", "foo/abc", "fop"},
- "foo/", "fop",
- [][]byte{[]byte("foo"), []byte("fop")},
- },
- // no delete
- {
- []string{"foo", "foo/abc", "fop"},
- "foo/", "foo/",
- [][]byte{[]byte("foo"), []byte("foo/abc"), []byte("fop")},
- },
- // delete first
- {
- []string{"foo", "foo/abc", "fop"},
- "fo", "fop",
- [][]byte{[]byte("fop")},
- },
- // delete tail
- {
- []string{"foo", "foo/abc", "fop"},
- "foo/", "fos",
- [][]byte{[]byte("foo")},
- },
- // delete exact
- {
- []string{"foo", "foo/abc", "fop"},
- "foo/abc", "",
- [][]byte{[]byte("foo"), []byte("fop")},
- },
- // delete none, [x,x)
- {
- []string{"foo"},
- "foo", "foo",
- [][]byte{[]byte("foo")},
- },
- }
- for i, tt := range tests {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- kvc := pb.NewKVClient(clus.RandConn())
- ks := tt.keySet
- for j := range ks {
- reqput := &pb.PutRequest{Key: []byte(ks[j]), Value: []byte{}}
- _, err := kvc.Put(context.TODO(), reqput)
- if err != nil {
- t.Fatalf("couldn't put key (%v)", err)
- }
- }
- dreq := &pb.DeleteRangeRequest{
- Key: []byte(tt.begin),
- RangeEnd: []byte(tt.end)}
- dresp, err := kvc.DeleteRange(context.TODO(), dreq)
- if err != nil {
- t.Fatalf("couldn't delete range on test %d (%v)", i, err)
- }
- rreq := &pb.RangeRequest{Key: []byte{0x0}, RangeEnd: []byte{0xff}}
- rresp, err := kvc.Range(context.TODO(), rreq)
- if err != nil {
- t.Errorf("couldn't get range on test %v (%v)", i, err)
- }
- if dresp.Header.Revision != rresp.Header.Revision {
- t.Errorf("expected revision %v, got %v",
- dresp.Header.Revision, rresp.Header.Revision)
- }
- keys := [][]byte{}
- for j := range rresp.Kvs {
- keys = append(keys, rresp.Kvs[j].Key)
- }
- if reflect.DeepEqual(tt.wantSet, keys) == false {
- t.Errorf("expected %v on test %v, got %v", tt.wantSet, i, keys)
- }
- // can't defer because tcp ports will be in use
- clus.Terminate(t)
- }
- }
- // TestV3WatchFromCurrentRevision tests Watch APIs from current revision.
- func TestV3WatchFromCurrentRevision(t *testing.T) {
- tests := []struct {
- putKeys []string
- watchRequest *pb.WatchRequest
- wresps []*pb.WatchResponse
- }{
- // watch the key, matching
- {
- []string{"foo"},
- &pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Key: []byte("foo")}},
- []*pb.WatchResponse{
- {
- Header: &pb.ResponseHeader{Revision: 1},
- Created: true,
- },
- {
- Header: &pb.ResponseHeader{Revision: 2},
- Created: false,
- Events: []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- },
- },
- },
- },
- // watch the key, non-matching
- {
- []string{"foo"},
- &pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Key: []byte("helloworld")}},
- []*pb.WatchResponse{
- {
- Header: &pb.ResponseHeader{Revision: 1},
- Created: true,
- },
- },
- },
- // watch the prefix, matching
- {
- []string{"fooLong"},
- &pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Prefix: []byte("foo")}},
- []*pb.WatchResponse{
- {
- Header: &pb.ResponseHeader{Revision: 1},
- Created: true,
- },
- {
- Header: &pb.ResponseHeader{Revision: 2},
- Created: false,
- Events: []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("fooLong"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- },
- },
- },
- },
- // watch the prefix, non-matching
- {
- []string{"foo"},
- &pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Prefix: []byte("helloworld")}},
- []*pb.WatchResponse{
- {
- Header: &pb.ResponseHeader{Revision: 1},
- Created: true,
- },
- },
- },
- // multiple puts, one watcher with matching key
- {
- []string{"foo", "foo", "foo"},
- &pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Key: []byte("foo")}},
- []*pb.WatchResponse{
- {
- Header: &pb.ResponseHeader{Revision: 1},
- Created: true,
- },
- {
- Header: &pb.ResponseHeader{Revision: 2},
- Created: false,
- Events: []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- },
- },
- {
- Header: &pb.ResponseHeader{Revision: 3},
- Created: false,
- Events: []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 3, Version: 2},
- },
- },
- },
- {
- Header: &pb.ResponseHeader{Revision: 4},
- Created: false,
- Events: []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 4, Version: 3},
- },
- },
- },
- },
- },
- // multiple puts, one watcher with matching prefix
- {
- []string{"foo", "foo", "foo"},
- &pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Prefix: []byte("foo")}},
- []*pb.WatchResponse{
- {
- Header: &pb.ResponseHeader{Revision: 1},
- Created: true,
- },
- {
- Header: &pb.ResponseHeader{Revision: 2},
- Created: false,
- Events: []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- },
- },
- {
- Header: &pb.ResponseHeader{Revision: 3},
- Created: false,
- Events: []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 3, Version: 2},
- },
- },
- },
- {
- Header: &pb.ResponseHeader{Revision: 4},
- Created: false,
- Events: []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 4, Version: 3},
- },
- },
- },
- },
- },
- }
- for i, tt := range tests {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- wAPI := pb.NewWatchClient(clus.RandConn())
- wStream, err := wAPI.Watch(context.TODO())
- if err != nil {
- t.Fatalf("#%d: wAPI.Watch error: %v", i, err)
- }
- if err := wStream.Send(tt.watchRequest); err != nil {
- t.Fatalf("#%d: wStream.Send error: %v", i, err)
- }
- go func() {
- for _, k := range tt.putKeys {
- kvc := pb.NewKVClient(clus.RandConn())
- req := &pb.PutRequest{Key: []byte(k), Value: []byte("bar")}
- if _, err := kvc.Put(context.TODO(), req); err != nil {
- t.Fatalf("#%d: couldn't put key (%v)", i, err)
- }
- }
- }()
- var createdWatchId int64
- for j, wresp := range tt.wresps {
- resp, err := wStream.Recv()
- if err != nil {
- t.Errorf("#%d.%d: wStream.Recv error: %v", i, j, err)
- }
- if resp.Header == nil {
- t.Fatalf("#%d.%d: unexpected nil resp.Header", i, j)
- }
- if resp.Header.Revision != wresp.Header.Revision {
- t.Errorf("#%d.%d: resp.Header.Revision got = %d, want = %d", i, j, resp.Header.Revision, wresp.Header.Revision)
- }
- if wresp.Created != resp.Created {
- t.Errorf("#%d.%d: resp.Created got = %v, want = %v", i, j, resp.Created, wresp.Created)
- }
- if resp.Created {
- createdWatchId = resp.WatchId
- }
- if resp.WatchId != createdWatchId {
- t.Errorf("#%d.%d: resp.WatchId got = %d, want = %d", i, j, resp.WatchId, createdWatchId)
- }
- if !reflect.DeepEqual(resp.Events, wresp.Events) {
- t.Errorf("#%d.%d: resp.Events got = %+v, want = %+v", i, j, resp.Events, wresp.Events)
- }
- }
- rok, nr := WaitResponse(wStream, 1*time.Second)
- if !rok {
- t.Errorf("unexpected pb.WatchResponse is received %+v", nr)
- }
- // can't defer because tcp ports will be in use
- clus.Terminate(t)
- }
- }
- // TestV3WatchCancelSynced tests Watch APIs cancellation from synced map.
- func TestV3WatchCancelSynced(t *testing.T) {
- testV3WatchCancel(t, 0)
- }
- // TestV3WatchCancelUnsynced tests Watch APIs cancellation from unsynced map.
- func TestV3WatchCancelUnsynced(t *testing.T) {
- testV3WatchCancel(t, 1)
- }
- func testV3WatchCancel(t *testing.T, startRev int64) {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- wAPI := pb.NewWatchClient(clus.RandConn())
- wStream, errW := wAPI.Watch(context.TODO())
- if errW != nil {
- t.Fatalf("wAPI.Watch error: %v", errW)
- }
- if err := wStream.Send(&pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Key: []byte("foo"), StartRevision: startRev}}); err != nil {
- t.Fatalf("wStream.Send error: %v", err)
- }
- wresp, errR := wStream.Recv()
- if errR != nil {
- t.Errorf("wStream.Recv error: %v", errR)
- }
- if !wresp.Created {
- t.Errorf("wresp.Created got = %v, want = true", wresp.Created)
- }
- if err := wStream.Send(&pb.WatchRequest{CancelRequest: &pb.WatchCancelRequest{WatchId: wresp.WatchId}}); err != nil {
- t.Fatalf("wStream.Send error: %v", err)
- }
- cresp, err := wStream.Recv()
- if err != nil {
- t.Errorf("wStream.Recv error: %v", err)
- }
- if !cresp.Canceled {
- t.Errorf("cresp.Canceled got = %v, want = true", cresp.Canceled)
- }
- kvc := pb.NewKVClient(clus.RandConn())
- if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: []byte("foo"), Value: []byte("bar")}); err != nil {
- t.Errorf("couldn't put key (%v)", err)
- }
- // watch got canceled, so this should block
- rok, nr := WaitResponse(wStream, 1*time.Second)
- if !rok {
- t.Errorf("unexpected pb.WatchResponse is received %+v", nr)
- }
- clus.Terminate(t)
- }
- func TestV3WatchMultipleWatchersSynced(t *testing.T) {
- testV3WatchMultipleWatchers(t, 0)
- }
- func TestV3WatchMultipleWatchersUnsynced(t *testing.T) {
- testV3WatchMultipleWatchers(t, 1)
- }
- // testV3WatchMultipleWatchers tests multiple watchers on the same key
- // and one watcher with matching prefix. It first puts the key
- // that matches all watchers, and another key that matches only
- // one watcher to test if it receives expected events.
- func testV3WatchMultipleWatchers(t *testing.T, startRev int64) {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- wAPI := pb.NewWatchClient(clus.RandConn())
- kvc := pb.NewKVClient(clus.RandConn())
- wStream, errW := wAPI.Watch(context.TODO())
- if errW != nil {
- t.Fatalf("wAPI.Watch error: %v", errW)
- }
- watchKeyN := 4
- for i := 0; i < watchKeyN+1; i++ {
- var wreq *pb.WatchRequest
- if i < watchKeyN {
- wreq = &pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Key: []byte("foo"), StartRevision: startRev}}
- } else {
- wreq = &pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Prefix: []byte("fo"), StartRevision: startRev}}
- }
- if err := wStream.Send(wreq); err != nil {
- t.Fatalf("wStream.Send error: %v", err)
- }
- }
- ids := make(map[int64]struct{})
- for i := 0; i < watchKeyN+1; i++ {
- wresp, err := wStream.Recv()
- if err != nil {
- t.Fatalf("wStream.Recv error: %v", err)
- }
- if !wresp.Created {
- t.Fatalf("wresp.Created got = %v, want = true", wresp.Created)
- }
- ids[wresp.WatchId] = struct{}{}
- }
- if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: []byte("foo"), Value: []byte("bar")}); err != nil {
- t.Fatalf("couldn't put key (%v)", err)
- }
- for i := 0; i < watchKeyN+1; i++ {
- wresp, err := wStream.Recv()
- if err != nil {
- t.Fatalf("wStream.Recv error: %v", err)
- }
- if _, ok := ids[wresp.WatchId]; !ok {
- t.Errorf("watchId %d is not created!", wresp.WatchId)
- } else {
- delete(ids, wresp.WatchId)
- }
- if len(wresp.Events) == 0 {
- t.Errorf("#%d: no events received", i)
- }
- for _, ev := range wresp.Events {
- if string(ev.Kv.Key) != "foo" {
- t.Errorf("ev.Kv.Key got = %s, want = foo", ev.Kv.Key)
- }
- if string(ev.Kv.Value) != "bar" {
- t.Errorf("ev.Kv.Value got = %s, want = bar", ev.Kv.Value)
- }
- }
- }
- // now put one key that has only one matching watcher
- if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: []byte("fo"), Value: []byte("bar")}); err != nil {
- t.Fatalf("couldn't put key (%v)", err)
- }
- wresp, err := wStream.Recv()
- if err != nil {
- t.Errorf("wStream.Recv error: %v", err)
- }
- if len(wresp.Events) != 1 {
- t.Fatalf("len(wresp.Events) got = %d, want = 1", len(wresp.Events))
- }
- if string(wresp.Events[0].Kv.Key) != "fo" {
- t.Errorf("wresp.Events[0].Kv.Key got = %s, want = fo", wresp.Events[0].Kv.Key)
- }
- // now Recv should block because there is no more events coming
- rok, nr := WaitResponse(wStream, 1*time.Second)
- if !rok {
- t.Errorf("unexpected pb.WatchResponse is received %+v", nr)
- }
- clus.Terminate(t)
- }
- func TestV3WatchMultipleEventsTxnSynced(t *testing.T) {
- testV3WatchMultipleEventsTxn(t, 0)
- }
- func TestV3WatchMultipleEventsTxnUnsynced(t *testing.T) {
- testV3WatchMultipleEventsTxn(t, 1)
- }
- // testV3WatchMultipleEventsTxn tests Watch APIs when it receives multiple events.
- func testV3WatchMultipleEventsTxn(t *testing.T, startRev int64) {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- wAPI := pb.NewWatchClient(clus.RandConn())
- wStream, wErr := wAPI.Watch(context.TODO())
- if wErr != nil {
- t.Fatalf("wAPI.Watch error: %v", wErr)
- }
- if err := wStream.Send(&pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Prefix: []byte("foo"), StartRevision: startRev}}); err != nil {
- t.Fatalf("wStream.Send error: %v", err)
- }
- kvc := pb.NewKVClient(clus.RandConn())
- txn := pb.TxnRequest{}
- for i := 0; i < 3; i++ {
- ru := &pb.RequestUnion{}
- ru.RequestPut = &pb.PutRequest{Key: []byte(fmt.Sprintf("foo%d", i)), Value: []byte("bar")}
- txn.Success = append(txn.Success, ru)
- }
- tresp, err := kvc.Txn(context.Background(), &txn)
- if err != nil {
- t.Fatalf("kvc.Txn error: %v", err)
- }
- if !tresp.Succeeded {
- t.Fatalf("kvc.Txn failed: %+v", tresp)
- }
- events := []*storagepb.Event{}
- for len(events) < 3 {
- resp, err := wStream.Recv()
- if err != nil {
- t.Errorf("wStream.Recv error: %v", err)
- }
- if resp.Created {
- continue
- }
- events = append(events, resp.Events...)
- }
- sort.Sort(eventsSortByKey(events))
- wevents := []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo0"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo1"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo2"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- }
- if !reflect.DeepEqual(events, wevents) {
- t.Errorf("events got = %+v, want = %+v", events, wevents)
- }
- rok, nr := WaitResponse(wStream, 1*time.Second)
- if !rok {
- t.Errorf("unexpected pb.WatchResponse is received %+v", nr)
- }
- // can't defer because tcp ports will be in use
- clus.Terminate(t)
- }
- type eventsSortByKey []*storagepb.Event
- func (evs eventsSortByKey) Len() int { return len(evs) }
- func (evs eventsSortByKey) Swap(i, j int) { evs[i], evs[j] = evs[j], evs[i] }
- func (evs eventsSortByKey) Less(i, j int) bool { return bytes.Compare(evs[i].Kv.Key, evs[j].Kv.Key) < 0 }
- func TestV3WatchMultipleEventsPutUnsynced(t *testing.T) {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- defer clus.Terminate(t)
- kvc := pb.NewKVClient(clus.RandConn())
- if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: []byte("foo0"), Value: []byte("bar")}); err != nil {
- t.Fatalf("couldn't put key (%v)", err)
- }
- if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: []byte("foo1"), Value: []byte("bar")}); err != nil {
- t.Fatalf("couldn't put key (%v)", err)
- }
- wAPI := pb.NewWatchClient(clus.RandConn())
- wStream, wErr := wAPI.Watch(context.TODO())
- if wErr != nil {
- t.Fatalf("wAPI.Watch error: %v", wErr)
- }
- if err := wStream.Send(&pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Prefix: []byte("foo"), StartRevision: 1}}); err != nil {
- t.Fatalf("wStream.Send error: %v", err)
- }
- if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: []byte("foo0"), Value: []byte("bar")}); err != nil {
- t.Fatalf("couldn't put key (%v)", err)
- }
- if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: []byte("foo1"), Value: []byte("bar")}); err != nil {
- t.Fatalf("couldn't put key (%v)", err)
- }
- allWevents := []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo0"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo1"), Value: []byte("bar"), CreateRevision: 3, ModRevision: 3, Version: 1},
- },
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo0"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 4, Version: 2},
- },
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo1"), Value: []byte("bar"), CreateRevision: 3, ModRevision: 5, Version: 2},
- },
- }
- events := []*storagepb.Event{}
- for len(events) < 4 {
- resp, err := wStream.Recv()
- if err != nil {
- t.Errorf("wStream.Recv error: %v", err)
- }
- if resp.Created {
- continue
- }
- events = append(events, resp.Events...)
- // if PUT requests are committed by now, first receive would return
- // multiple events, but if not, it returns a single event. In SSD,
- // it should return 4 events at once.
- }
- if !reflect.DeepEqual(events, allWevents) {
- t.Errorf("events got = %+v, want = %+v", events, allWevents)
- }
- rok, nr := WaitResponse(wStream, 1*time.Second)
- if !rok {
- t.Errorf("unexpected pb.WatchResponse is received %+v", nr)
- }
- }
- func TestV3WatchMultipleStreamsSynced(t *testing.T) {
- testV3WatchMultipleStreams(t, 0)
- }
- func TestV3WatchMultipleStreamsUnsynced(t *testing.T) {
- testV3WatchMultipleStreams(t, 1)
- }
- // testV3WatchMultipleStreams tests multiple watchers on the same key on multiple streams.
- func testV3WatchMultipleStreams(t *testing.T, startRev int64) {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- wAPI := pb.NewWatchClient(clus.RandConn())
- kvc := pb.NewKVClient(clus.RandConn())
- streams := make([]pb.Watch_WatchClient, 5)
- for i := range streams {
- wStream, errW := wAPI.Watch(context.TODO())
- if errW != nil {
- t.Fatalf("wAPI.Watch error: %v", errW)
- }
- if err := wStream.Send(&pb.WatchRequest{CreateRequest: &pb.WatchCreateRequest{Key: []byte("foo"), StartRevision: startRev}}); err != nil {
- t.Fatalf("wStream.Send error: %v", err)
- }
- streams[i] = wStream
- }
- for _, wStream := range streams {
- wresp, err := wStream.Recv()
- if err != nil {
- t.Fatalf("wStream.Recv error: %v", err)
- }
- if !wresp.Created {
- t.Fatalf("wresp.Created got = %v, want = true", wresp.Created)
- }
- }
- if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: []byte("foo"), Value: []byte("bar")}); err != nil {
- t.Fatalf("couldn't put key (%v)", err)
- }
- var wg sync.WaitGroup
- wg.Add(len(streams))
- wevents := []*storagepb.Event{
- {
- Type: storagepb.PUT,
- Kv: &storagepb.KeyValue{Key: []byte("foo"), Value: []byte("bar"), CreateRevision: 2, ModRevision: 2, Version: 1},
- },
- }
- for i := range streams {
- go func(i int) {
- defer wg.Done()
- wStream := streams[i]
- wresp, err := wStream.Recv()
- if err != nil {
- t.Fatalf("wStream.Recv error: %v", err)
- }
- if wresp.WatchId != 0 {
- t.Errorf("watchId got = %d, want = 0", wresp.WatchId)
- }
- if !reflect.DeepEqual(wresp.Events, wevents) {
- t.Errorf("wresp.Events got = %+v, want = %+v", wresp.Events, wevents)
- }
- // now Recv should block because there is no more events coming
- rok, nr := WaitResponse(wStream, 1*time.Second)
- if !rok {
- t.Errorf("unexpected pb.WatchResponse is received %+v", nr)
- }
- }(i)
- }
- wg.Wait()
- clus.Terminate(t)
- }
- // WaitResponse waits on the given stream for given duration.
- // If there is no more events, true and a nil response will be
- // returned closing the WatchClient stream. Or the response will
- // be returned.
- func WaitResponse(wc pb.Watch_WatchClient, timeout time.Duration) (bool, *pb.WatchResponse) {
- rCh := make(chan *pb.WatchResponse)
- go func() {
- resp, _ := wc.Recv()
- rCh <- resp
- }()
- select {
- case nr := <-rCh:
- return false, nr
- case <-time.After(timeout):
- }
- wc.CloseSend()
- rv, ok := <-rCh
- if rv != nil || !ok {
- return false, rv
- }
- return true, nil
- }
- func TestV3RangeRequest(t *testing.T) {
- tests := []struct {
- putKeys []string
- reqs []pb.RangeRequest
- wresps [][]string
- wmores []bool
- }{
- // single key
- {
- []string{"foo", "bar"},
- []pb.RangeRequest{
- // exists
- {Key: []byte("foo")},
- // doesn't exist
- {Key: []byte("baz")},
- },
- [][]string{
- {"foo"},
- {},
- },
- []bool{false, false},
- },
- // multi-key
- {
- []string{"a", "b", "c", "d", "e"},
- []pb.RangeRequest{
- // all in range
- {Key: []byte("a"), RangeEnd: []byte("z")},
- // [b, d)
- {Key: []byte("b"), RangeEnd: []byte("d")},
- // out of range
- {Key: []byte("f"), RangeEnd: []byte("z")},
- // [c,c) = empty
- {Key: []byte("c"), RangeEnd: []byte("c")},
- // [d, b) = empty
- {Key: []byte("d"), RangeEnd: []byte("b")},
- },
- [][]string{
- {"a", "b", "c", "d", "e"},
- {"b", "c"},
- {},
- {},
- {},
- },
- []bool{false, false, false, false, false},
- },
- // revision
- {
- []string{"a", "b", "c", "d", "e"},
- []pb.RangeRequest{
- {Key: []byte("a"), RangeEnd: []byte("z"), Revision: 0},
- {Key: []byte("a"), RangeEnd: []byte("z"), Revision: 1},
- {Key: []byte("a"), RangeEnd: []byte("z"), Revision: 2},
- {Key: []byte("a"), RangeEnd: []byte("z"), Revision: 3},
- },
- [][]string{
- {"a", "b", "c", "d", "e"},
- {},
- {"a"},
- {"a", "b"},
- },
- []bool{false, false, false, false},
- },
- // limit
- {
- []string{"foo", "bar"},
- []pb.RangeRequest{
- // more
- {Key: []byte("a"), RangeEnd: []byte("z"), Limit: 1},
- // no more
- {Key: []byte("a"), RangeEnd: []byte("z"), Limit: 2},
- },
- [][]string{
- {"bar"},
- {"bar", "foo"},
- },
- []bool{true, false},
- },
- // sort
- {
- []string{"b", "a", "c", "d", "c"},
- []pb.RangeRequest{
- {
- Key: []byte("a"), RangeEnd: []byte("z"),
- Limit: 1,
- SortOrder: pb.RangeRequest_ASCEND,
- SortTarget: pb.RangeRequest_KEY,
- },
- {
- Key: []byte("a"), RangeEnd: []byte("z"),
- Limit: 1,
- SortOrder: pb.RangeRequest_DESCEND,
- SortTarget: pb.RangeRequest_KEY,
- },
- {
- Key: []byte("a"), RangeEnd: []byte("z"),
- Limit: 1,
- SortOrder: pb.RangeRequest_ASCEND,
- SortTarget: pb.RangeRequest_CREATE,
- },
- {
- Key: []byte("a"), RangeEnd: []byte("z"),
- Limit: 1,
- SortOrder: pb.RangeRequest_DESCEND,
- SortTarget: pb.RangeRequest_MOD,
- },
- {
- Key: []byte("z"), RangeEnd: []byte("z"),
- Limit: 1,
- SortOrder: pb.RangeRequest_DESCEND,
- SortTarget: pb.RangeRequest_CREATE,
- },
- },
- [][]string{
- {"a"},
- {"d"},
- {"b"},
- {"c"},
- {},
- },
- []bool{true, true, true, true, false},
- },
- }
- for i, tt := range tests {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- for _, k := range tt.putKeys {
- kvc := pb.NewKVClient(clus.RandConn())
- req := &pb.PutRequest{Key: []byte(k), Value: []byte("bar")}
- if _, err := kvc.Put(context.TODO(), req); err != nil {
- t.Fatalf("#%d: couldn't put key (%v)", i, err)
- }
- }
- for j, req := range tt.reqs {
- kvc := pb.NewKVClient(clus.RandConn())
- resp, err := kvc.Range(context.TODO(), &req)
- if err != nil {
- t.Errorf("#%d.%d: Range error: %v", i, j, err)
- continue
- }
- if len(resp.Kvs) != len(tt.wresps[j]) {
- t.Errorf("#%d.%d: bad len(resp.Kvs). got = %d, want = %d, ", i, j, len(resp.Kvs), len(tt.wresps[j]))
- continue
- }
- for k, wKey := range tt.wresps[j] {
- respKey := string(resp.Kvs[k].Key)
- if respKey != wKey {
- t.Errorf("#%d.%d: key[%d]. got = %v, want = %v, ", i, j, k, respKey, wKey)
- }
- }
- if resp.More != tt.wmores[j] {
- t.Errorf("#%d.%d: bad more. got = %v, want = %v, ", i, j, resp.More, tt.wmores[j])
- }
- wrev := req.Revision
- if wrev == 0 {
- wrev = int64(len(tt.putKeys) + 1)
- }
- if resp.Header.Revision != wrev {
- t.Errorf("#%d.%d: bad header revision. got = %d. want = %d", i, j, resp.Header.Revision, wrev)
- }
- }
- clus.Terminate(t)
- }
- }
- // TestV3LeaseRevoke ensures a key is deleted once its lease is revoked.
- func TestV3LeaseRevoke(t *testing.T) {
- testLeaseRemoveLeasedKey(t, func(clus *clusterV3, leaseID int64) error {
- lc := pb.NewLeaseClient(clus.RandConn())
- _, err := lc.LeaseRevoke(context.TODO(), &pb.LeaseRevokeRequest{ID: leaseID})
- return err
- })
- }
- // TestV3LeaseCreateById ensures leases may be created by a given id.
- func TestV3LeaseCreateByID(t *testing.T) {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- defer clus.Terminate(t)
- // create fixed lease
- lresp, err := pb.NewLeaseClient(clus.RandConn()).LeaseCreate(
- context.TODO(),
- &pb.LeaseCreateRequest{ID: 1, TTL: 1})
- if err != nil {
- t.Errorf("could not create lease 1 (%v)", err)
- }
- if lresp.ID != 1 {
- t.Errorf("got id %v, wanted id %v", lresp.ID)
- }
- // create duplicate fixed lease
- lresp, err = pb.NewLeaseClient(clus.RandConn()).LeaseCreate(
- context.TODO(),
- &pb.LeaseCreateRequest{ID: 1, TTL: 1})
- if err != nil {
- t.Error(err)
- }
- if lresp.ID != 0 || lresp.Error != lease.ErrLeaseExists.Error() {
- t.Errorf("got id %v, wanted id 0 (%v)", lresp.ID, lresp.Error)
- }
- // create fresh fixed lease
- lresp, err = pb.NewLeaseClient(clus.RandConn()).LeaseCreate(
- context.TODO(),
- &pb.LeaseCreateRequest{ID: 2, TTL: 1})
- if err != nil {
- t.Errorf("could not create lease 2 (%v)", err)
- }
- if lresp.ID != 2 {
- t.Errorf("got id %v, wanted id %v", lresp.ID)
- }
- }
- // TestV3LeaseKeepAlive ensures keepalive keeps the lease alive.
- func TestV3LeaseKeepAlive(t *testing.T) {
- testLeaseRemoveLeasedKey(t, func(clus *clusterV3, leaseID int64) error {
- lc := pb.NewLeaseClient(clus.RandConn())
- lreq := &pb.LeaseKeepAliveRequest{ID: leaseID}
- lac, err := lc.LeaseKeepAlive(context.TODO())
- if err != nil {
- return err
- }
- defer lac.CloseSend()
- // renew long enough so lease would've expired otherwise
- for i := 0; i < 3; i++ {
- if err = lac.Send(lreq); err != nil {
- return err
- }
- lresp, rxerr := lac.Recv()
- if rxerr != nil {
- return rxerr
- }
- if lresp.ID != leaseID {
- return fmt.Errorf("expected lease ID %v, got %v", leaseID, lresp.ID)
- }
- time.Sleep(time.Duration(lresp.TTL/2) * time.Second)
- }
- _, err = lc.LeaseRevoke(context.TODO(), &pb.LeaseRevokeRequest{ID: leaseID})
- return err
- })
- }
- // TestV3LeaseExists creates a lease on a random client, then sends a keepalive on another
- // client to confirm it's visible to the whole cluster.
- func TestV3LeaseExists(t *testing.T) {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- defer clus.Terminate(t)
- // create lease
- lresp, err := pb.NewLeaseClient(clus.RandConn()).LeaseCreate(
- context.TODO(),
- &pb.LeaseCreateRequest{TTL: 30})
- if err != nil {
- t.Fatal(err)
- }
- if lresp.Error != "" {
- t.Fatal(lresp.Error)
- }
- // confirm keepalive
- lac, err := pb.NewLeaseClient(clus.RandConn()).LeaseKeepAlive(context.TODO())
- if err != nil {
- t.Fatal(err)
- }
- defer lac.CloseSend()
- if err = lac.Send(&pb.LeaseKeepAliveRequest{ID: lresp.ID}); err != nil {
- t.Fatal(err)
- }
- if _, err = lac.Recv(); err != nil {
- t.Fatal(err)
- }
- }
- // acquireLeaseAndKey creates a new lease and creates an attached key.
- func acquireLeaseAndKey(clus *clusterV3, key string) (int64, error) {
- // create lease
- lresp, err := pb.NewLeaseClient(clus.RandConn()).LeaseCreate(
- context.TODO(),
- &pb.LeaseCreateRequest{TTL: 1})
- if err != nil {
- return 0, err
- }
- if lresp.Error != "" {
- return 0, fmt.Errorf(lresp.Error)
- }
- // attach to key
- put := &pb.PutRequest{Key: []byte(key), Lease: lresp.ID}
- if _, err := pb.NewKVClient(clus.RandConn()).Put(context.TODO(), put); err != nil {
- return 0, err
- }
- return lresp.ID, nil
- }
- // testLeaseRemoveLeasedKey performs some action while holding a lease with an
- // attached key "foo", then confirms the key is gone.
- func testLeaseRemoveLeasedKey(t *testing.T, act func(*clusterV3, int64) error) {
- clus := newClusterGRPC(t, &clusterConfig{size: 3})
- defer clus.Terminate(t)
- leaseID, err := acquireLeaseAndKey(clus, "foo")
- if err != nil {
- t.Fatal(err)
- }
- if err = act(clus, leaseID); err != nil {
- t.Fatal(err)
- }
- // confirm no key
- rreq := &pb.RangeRequest{Key: []byte("foo")}
- rresp, err := pb.NewKVClient(clus.RandConn()).Range(context.TODO(), rreq)
- if err != nil {
- t.Fatal(err)
- }
- if len(rresp.Kvs) != 0 {
- t.Fatalf("lease removed but key remains")
- }
- }
|