123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 |
- // Copyright 2016 The etcd Authors
- //
- // 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 (
- "fmt"
- "testing"
- "time"
- "golang.org/x/net/context"
- "google.golang.org/grpc/metadata"
- "github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes"
- pb "github.com/coreos/etcd/etcdserver/etcdserverpb"
- "github.com/coreos/etcd/mvcc/mvccpb"
- "github.com/coreos/etcd/pkg/testutil"
- )
- // TestV3LeasePrmote ensures the newly elected leader can promote itself
- // to the primary lessor, refresh the leases and start to manage leases.
- // TODO: use customized clock to make this test go faster?
- func TestV3LeasePrmote(t *testing.T) {
- clus := NewClusterV3(t, &ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- // create lease
- lresp, err := toGRPC(clus.RandClient()).Lease.LeaseGrant(context.TODO(), &pb.LeaseGrantRequest{TTL: 5})
- if err != nil {
- t.Fatal(err)
- }
- if lresp.Error != "" {
- t.Fatal(lresp.Error)
- }
- // wait until the lease is going to expire.
- time.Sleep(time.Duration(lresp.TTL-1) * time.Second)
- // kill the current leader, all leases should be refreshed.
- toStop := clus.waitLeader(t, clus.Members)
- clus.Members[toStop].Stop(t)
- var toWait []*member
- for i, m := range clus.Members {
- if i != toStop {
- toWait = append(toWait, m)
- }
- }
- clus.waitLeader(t, toWait)
- clus.Members[toStop].Restart(t)
- clus.waitLeader(t, clus.Members)
- // ensure lease is refreshed by waiting for a "long" time.
- // it was going to expire anyway.
- time.Sleep(3 * time.Second)
- if !leaseExist(t, clus, lresp.ID) {
- t.Error("unexpected lease not exists")
- }
- // let lease expires. total lease = 5 seconds and we already
- // waits for 3 seconds, so 3 seconds more is enough.
- time.Sleep(3 * time.Second)
- if leaseExist(t, clus, lresp.ID) {
- t.Error("unexpected lease exists")
- }
- }
- // TestV3LeaseRevoke ensures a key is deleted once its lease is revoked.
- func TestV3LeaseRevoke(t *testing.T) {
- defer testutil.AfterTest(t)
- testLeaseRemoveLeasedKey(t, func(clus *ClusterV3, leaseID int64) error {
- lc := toGRPC(clus.RandClient()).Lease
- _, err := lc.LeaseRevoke(context.TODO(), &pb.LeaseRevokeRequest{ID: leaseID})
- return err
- })
- }
- // TestV3LeaseGrantById ensures leases may be created by a given id.
- func TestV3LeaseGrantByID(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := NewClusterV3(t, &ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- // create fixed lease
- lresp, err := toGRPC(clus.RandClient()).Lease.LeaseGrant(
- context.TODO(),
- &pb.LeaseGrantRequest{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, 1)
- }
- // create duplicate fixed lease
- lresp, err = toGRPC(clus.RandClient()).Lease.LeaseGrant(
- context.TODO(),
- &pb.LeaseGrantRequest{ID: 1, TTL: 1})
- if !eqErrGRPC(err, rpctypes.ErrGRPCLeaseExist) {
- t.Error(err)
- }
- // create fresh fixed lease
- lresp, err = toGRPC(clus.RandClient()).Lease.LeaseGrant(
- context.TODO(),
- &pb.LeaseGrantRequest{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, 2)
- }
- }
- // TestV3LeaseExpire ensures a key is deleted once a key expires.
- func TestV3LeaseExpire(t *testing.T) {
- defer testutil.AfterTest(t)
- testLeaseRemoveLeasedKey(t, func(clus *ClusterV3, leaseID int64) error {
- // let lease lapse; wait for deleted key
- ctx, cancel := context.WithCancel(context.Background())
- defer cancel()
- wStream, err := toGRPC(clus.RandClient()).Watch.Watch(ctx)
- if err != nil {
- return err
- }
- wreq := &pb.WatchRequest{RequestUnion: &pb.WatchRequest_CreateRequest{
- CreateRequest: &pb.WatchCreateRequest{
- Key: []byte("foo"), StartRevision: 1}}}
- if err := wStream.Send(wreq); err != nil {
- return err
- }
- if _, err := wStream.Recv(); err != nil {
- // the 'created' message
- return err
- }
- if _, err := wStream.Recv(); err != nil {
- // the 'put' message
- return err
- }
- errc := make(chan error, 1)
- go func() {
- resp, err := wStream.Recv()
- switch {
- case err != nil:
- errc <- err
- case len(resp.Events) != 1:
- fallthrough
- case resp.Events[0].Type != mvccpb.DELETE:
- errc <- fmt.Errorf("expected key delete, got %v", resp)
- default:
- errc <- nil
- }
- }()
- select {
- case <-time.After(15 * time.Second):
- return fmt.Errorf("lease expiration too slow")
- case err := <-errc:
- return err
- }
- })
- }
- // TestV3LeaseKeepAlive ensures keepalive keeps the lease alive.
- func TestV3LeaseKeepAlive(t *testing.T) {
- defer testutil.AfterTest(t)
- testLeaseRemoveLeasedKey(t, func(clus *ClusterV3, leaseID int64) error {
- lc := toGRPC(clus.RandClient()).Lease
- lreq := &pb.LeaseKeepAliveRequest{ID: leaseID}
- ctx, cancel := context.WithCancel(context.Background())
- defer cancel()
- lac, err := lc.LeaseKeepAlive(ctx)
- 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 and confirms it exists in the cluster.
- func TestV3LeaseExists(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := NewClusterV3(t, &ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- // create lease
- ctx0, cancel0 := context.WithCancel(context.Background())
- defer cancel0()
- lresp, err := toGRPC(clus.RandClient()).Lease.LeaseGrant(
- ctx0,
- &pb.LeaseGrantRequest{TTL: 30})
- if err != nil {
- t.Fatal(err)
- }
- if lresp.Error != "" {
- t.Fatal(lresp.Error)
- }
- if !leaseExist(t, clus, lresp.ID) {
- t.Error("unexpected lease not exists")
- }
- }
- func TestV3PutOnNonExistLease(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := NewClusterV3(t, &ClusterConfig{Size: 1})
- defer clus.Terminate(t)
- ctx, cancel := context.WithCancel(context.Background())
- defer cancel()
- badLeaseID := int64(0x12345678)
- putr := &pb.PutRequest{Key: []byte("foo"), Value: []byte("bar"), Lease: badLeaseID}
- _, err := toGRPC(clus.RandClient()).KV.Put(ctx, putr)
- if !eqErrGRPC(err, rpctypes.ErrGRPCLeaseNotFound) {
- t.Errorf("err = %v, want %v", err, rpctypes.ErrGRPCCompacted)
- }
- }
- // TestV3LeaseSwitch tests a key can be switched from one lease to another.
- func TestV3LeaseSwitch(t *testing.T) {
- defer testutil.AfterTest(t)
- clus := NewClusterV3(t, &ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- key := "foo"
- // create lease
- ctx, cancel := context.WithCancel(context.Background())
- defer cancel()
- lresp1, err1 := toGRPC(clus.RandClient()).Lease.LeaseGrant(ctx, &pb.LeaseGrantRequest{TTL: 30})
- if err1 != nil {
- t.Fatal(err1)
- }
- lresp2, err2 := toGRPC(clus.RandClient()).Lease.LeaseGrant(ctx, &pb.LeaseGrantRequest{TTL: 30})
- if err2 != nil {
- t.Fatal(err2)
- }
- // attach key on lease1 then switch it to lease2
- put1 := &pb.PutRequest{Key: []byte(key), Lease: lresp1.ID}
- _, err := toGRPC(clus.RandClient()).KV.Put(ctx, put1)
- if err != nil {
- t.Fatal(err)
- }
- put2 := &pb.PutRequest{Key: []byte(key), Lease: lresp2.ID}
- _, err = toGRPC(clus.RandClient()).KV.Put(ctx, put2)
- if err != nil {
- t.Fatal(err)
- }
- // revoke lease1 should not remove key
- _, err = toGRPC(clus.RandClient()).Lease.LeaseRevoke(ctx, &pb.LeaseRevokeRequest{ID: lresp1.ID})
- if err != nil {
- t.Fatal(err)
- }
- rreq := &pb.RangeRequest{Key: []byte("foo")}
- rresp, err := toGRPC(clus.RandClient()).KV.Range(context.TODO(), rreq)
- if err != nil {
- t.Fatal(err)
- }
- if len(rresp.Kvs) != 1 {
- t.Fatalf("unexpect removal of key")
- }
- // revoke lease2 should remove key
- _, err = toGRPC(clus.RandClient()).Lease.LeaseRevoke(ctx, &pb.LeaseRevokeRequest{ID: lresp2.ID})
- if err != nil {
- t.Fatal(err)
- }
- rresp, err = toGRPC(clus.RandClient()).KV.Range(context.TODO(), rreq)
- if err != nil {
- t.Fatal(err)
- }
- if len(rresp.Kvs) != 0 {
- t.Fatalf("lease removed but key remains")
- }
- }
- // TestV3LeaseFailover ensures the old leader drops lease keepalive requests within
- // election timeout after it loses its quorum. And the new leader extends the TTL of
- // the lease to at least TTL + election timeout.
- func TestV3LeaseFailover(t *testing.T) {
- clus := NewClusterV3(t, &ClusterConfig{Size: 3})
- defer clus.Terminate(t)
- toIsolate := clus.waitLeader(t, clus.Members)
- lc := toGRPC(clus.Client(toIsolate)).Lease
- // create lease
- lresp, err := lc.LeaseGrant(context.TODO(), &pb.LeaseGrantRequest{TTL: 5})
- if err != nil {
- t.Fatal(err)
- }
- if lresp.Error != "" {
- t.Fatal(lresp.Error)
- }
- // isolate the current leader with its followers.
- clus.Members[toIsolate].Pause()
- lreq := &pb.LeaseKeepAliveRequest{ID: lresp.ID}
- md := metadata.Pairs(rpctypes.MetadataRequireLeaderKey, rpctypes.MetadataHasLeader)
- mctx := metadata.NewContext(context.Background(), md)
- ctx, cancel := context.WithCancel(mctx)
- defer cancel()
- lac, err := lc.LeaseKeepAlive(ctx)
- if err != nil {
- t.Fatal(err)
- }
- defer lac.CloseSend()
- // send keep alive to old leader until the old leader starts
- // to drop lease request.
- var expectedExp time.Time
- for {
- if err = lac.Send(lreq); err != nil {
- break
- }
- lkresp, rxerr := lac.Recv()
- if rxerr != nil {
- break
- }
- expectedExp = time.Now().Add(time.Duration(lkresp.TTL) * time.Second)
- time.Sleep(time.Duration(lkresp.TTL/2) * time.Second)
- }
- clus.Members[toIsolate].Resume()
- clus.waitLeader(t, clus.Members)
- // lease should not expire at the last received expire deadline.
- time.Sleep(expectedExp.Sub(time.Now()) - 500*time.Millisecond)
- if !leaseExist(t, clus, lresp.ID) {
- t.Error("unexpected lease not exists")
- }
- }
- // acquireLeaseAndKey creates a new lease and creates an attached key.
- func acquireLeaseAndKey(clus *ClusterV3, key string) (int64, error) {
- // create lease
- lresp, err := toGRPC(clus.RandClient()).Lease.LeaseGrant(
- context.TODO(),
- &pb.LeaseGrantRequest{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 := toGRPC(clus.RandClient()).KV.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 := NewClusterV3(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 := toGRPC(clus.RandClient()).KV.Range(context.TODO(), rreq)
- if err != nil {
- t.Fatal(err)
- }
- if len(rresp.Kvs) != 0 {
- t.Fatalf("lease removed but key remains")
- }
- }
- func leaseExist(t *testing.T, clus *ClusterV3, leaseID int64) bool {
- l := toGRPC(clus.RandClient()).Lease
- _, err := l.LeaseGrant(context.Background(), &pb.LeaseGrantRequest{ID: leaseID, TTL: 5})
- if err == nil {
- _, err = l.LeaseRevoke(context.Background(), &pb.LeaseRevokeRequest{ID: leaseID})
- if err != nil {
- t.Fatalf("failed to check lease %v", err)
- }
- return false
- }
- if eqErrGRPC(err, rpctypes.ErrGRPCLeaseExist) {
- return true
- }
- t.Fatalf("unexpecter error %v", err)
- return true
- }
|