123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- // 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 e2e
- import (
- "fmt"
- "testing"
- )
- func TestCtlV3Put(t *testing.T) { testCtl(t, putTest) }
- func TestCtlV3PutNoTLS(t *testing.T) { testCtl(t, putTest, withCfg(configNoTLS)) }
- func TestCtlV3PutClientTLS(t *testing.T) { testCtl(t, putTest, withCfg(configClientTLS)) }
- func TestCtlV3PutClientAutoTLS(t *testing.T) { testCtl(t, putTest, withCfg(configClientAutoTLS)) }
- func TestCtlV3PutPeerTLS(t *testing.T) { testCtl(t, putTest, withCfg(configPeerTLS)) }
- func TestCtlV3PutTimeout(t *testing.T) { testCtl(t, putTest, withDialTimeout(0)) }
- func TestCtlV3PutClientTLSFlagByEnv(t *testing.T) {
- testCtl(t, putTest, withCfg(configClientTLS), withFlagByEnv())
- }
- func TestCtlV3PutIgnoreValue(t *testing.T) { testCtl(t, putTestIgnoreValue) }
- func TestCtlV3PutIgnoreLease(t *testing.T) { testCtl(t, putTestIgnoreLease) }
- func TestCtlV3Get(t *testing.T) { testCtl(t, getTest) }
- func TestCtlV3GetNoTLS(t *testing.T) { testCtl(t, getTest, withCfg(configNoTLS)) }
- func TestCtlV3GetClientTLS(t *testing.T) { testCtl(t, getTest, withCfg(configClientTLS)) }
- func TestCtlV3GetClientAutoTLS(t *testing.T) { testCtl(t, getTest, withCfg(configClientAutoTLS)) }
- func TestCtlV3GetPeerTLS(t *testing.T) { testCtl(t, getTest, withCfg(configPeerTLS)) }
- func TestCtlV3GetTimeout(t *testing.T) { testCtl(t, getTest, withDialTimeout(0)) }
- func TestCtlV3GetQuorum(t *testing.T) { testCtl(t, getTest, withQuorum()) }
- func TestCtlV3GetFormat(t *testing.T) { testCtl(t, getFormatTest) }
- func TestCtlV3GetRev(t *testing.T) { testCtl(t, getRevTest) }
- func TestCtlV3GetKeysOnly(t *testing.T) { testCtl(t, getKeysOnlyTest) }
- func TestCtlV3Del(t *testing.T) { testCtl(t, delTest) }
- func TestCtlV3DelNoTLS(t *testing.T) { testCtl(t, delTest, withCfg(configNoTLS)) }
- func TestCtlV3DelClientTLS(t *testing.T) { testCtl(t, delTest, withCfg(configClientTLS)) }
- func TestCtlV3DelPeerTLS(t *testing.T) { testCtl(t, delTest, withCfg(configPeerTLS)) }
- func TestCtlV3DelTimeout(t *testing.T) { testCtl(t, delTest, withDialTimeout(0)) }
- func putTest(cx ctlCtx) {
- key, value := "foo", "bar"
- if err := ctlV3Put(cx, key, value, ""); err != nil {
- if cx.dialTimeout > 0 && !isGRPCTimedout(err) {
- cx.t.Fatalf("putTest ctlV3Put error (%v)", err)
- }
- }
- if err := ctlV3Get(cx, []string{key}, kv{key, value}); err != nil {
- if cx.dialTimeout > 0 && !isGRPCTimedout(err) {
- cx.t.Fatalf("putTest ctlV3Get error (%v)", err)
- }
- }
- }
- func putTestIgnoreValue(cx ctlCtx) {
- if err := ctlV3Put(cx, "foo", "bar", ""); err != nil {
- cx.t.Fatal(err)
- }
- if err := ctlV3Get(cx, []string{"foo"}, kv{"foo", "bar"}); err != nil {
- cx.t.Fatal(err)
- }
- if err := ctlV3Put(cx, "foo", "", "", "--ignore-value"); err != nil {
- cx.t.Fatal(err)
- }
- if err := ctlV3Get(cx, []string{"foo"}, kv{"foo", "bar"}); err != nil {
- cx.t.Fatal(err)
- }
- }
- func putTestIgnoreLease(cx ctlCtx) {
- leaseID, err := ctlV3LeaseGrant(cx, 10)
- if err != nil {
- cx.t.Fatalf("putTestIgnoreLease: ctlV3LeaseGrant error (%v)", err)
- }
- if err := ctlV3Put(cx, "foo", "bar", leaseID); err != nil {
- cx.t.Fatalf("putTestIgnoreLease: ctlV3Put error (%v)", err)
- }
- if err := ctlV3Get(cx, []string{"foo"}, kv{"foo", "bar"}); err != nil {
- cx.t.Fatalf("putTestIgnoreLease: ctlV3Get error (%v)", err)
- }
- if err := ctlV3Put(cx, "foo", "bar1", "", "--ignore-lease"); err != nil {
- cx.t.Fatalf("putTestIgnoreLease: ctlV3Put error (%v)", err)
- }
- if err := ctlV3Get(cx, []string{"foo"}, kv{"foo", "bar1"}); err != nil {
- cx.t.Fatalf("putTestIgnoreLease: ctlV3Get error (%v)", err)
- }
- if err := ctlV3LeaseRevoke(cx, leaseID); err != nil {
- cx.t.Fatalf("putTestIgnoreLease: ctlV3LeaseRevok error (%v)", err)
- }
- if err := ctlV3Get(cx, []string{"key"}); err != nil { // expect no output
- cx.t.Fatalf("putTestIgnoreLease: ctlV3Get error (%v)", err)
- }
- }
- func getTest(cx ctlCtx) {
- var (
- kvs = []kv{{"key1", "val1"}, {"key2", "val2"}, {"key3", "val3"}}
- revkvs = []kv{{"key3", "val3"}, {"key2", "val2"}, {"key1", "val1"}}
- )
- for i := range kvs {
- if err := ctlV3Put(cx, kvs[i].key, kvs[i].val, ""); err != nil {
- cx.t.Fatalf("getTest #%d: ctlV3Put error (%v)", i, err)
- }
- }
- tests := []struct {
- args []string
- wkv []kv
- }{
- {[]string{"key1"}, []kv{{"key1", "val1"}}},
- {[]string{"", "--prefix"}, kvs},
- {[]string{"", "--from-key"}, kvs},
- {[]string{"key", "--prefix"}, kvs},
- {[]string{"key", "--prefix", "--limit=2"}, kvs[:2]},
- {[]string{"key", "--prefix", "--order=ASCEND", "--sort-by=MODIFY"}, kvs},
- {[]string{"key", "--prefix", "--order=ASCEND", "--sort-by=VERSION"}, kvs},
- {[]string{"key", "--prefix", "--sort-by=CREATE"}, kvs}, // ASCEND by default
- {[]string{"key", "--prefix", "--order=DESCEND", "--sort-by=CREATE"}, revkvs},
- {[]string{"key", "--prefix", "--order=DESCEND", "--sort-by=KEY"}, revkvs},
- }
- for i, tt := range tests {
- if err := ctlV3Get(cx, tt.args, tt.wkv...); err != nil {
- if cx.dialTimeout > 0 && !isGRPCTimedout(err) {
- cx.t.Errorf("getTest #%d: ctlV3Get error (%v)", i, err)
- }
- }
- }
- }
- func getFormatTest(cx ctlCtx) {
- if err := ctlV3Put(cx, "abc", "123", ""); err != nil {
- cx.t.Fatal(err)
- }
- tests := []struct {
- format string
- valueOnly bool
- wstr string
- }{
- {"simple", false, "abc"},
- {"simple", true, "123"},
- {"json", false, `"kvs":[{"key":"YWJj"`},
- {"protobuf", false, "\x17\b\x93\xe7\xf6\x93\xd4ņ\xe14\x10\xed"},
- }
- for i, tt := range tests {
- cmdArgs := append(cx.PrefixArgs(), "get")
- cmdArgs = append(cmdArgs, "--write-out="+tt.format)
- if tt.valueOnly {
- cmdArgs = append(cmdArgs, "--print-value-only")
- }
- cmdArgs = append(cmdArgs, "abc")
- if err := spawnWithExpect(cmdArgs, tt.wstr); err != nil {
- cx.t.Errorf("#%d: error (%v), wanted %v", i, err, tt.wstr)
- }
- }
- }
- func getRevTest(cx ctlCtx) {
- var (
- kvs = []kv{{"key", "val1"}, {"key", "val2"}, {"key", "val3"}}
- )
- for i := range kvs {
- if err := ctlV3Put(cx, kvs[i].key, kvs[i].val, ""); err != nil {
- cx.t.Fatalf("getRevTest #%d: ctlV3Put error (%v)", i, err)
- }
- }
- tests := []struct {
- args []string
- wkv []kv
- }{
- {[]string{"key", "--rev", "2"}, kvs[:1]},
- {[]string{"key", "--rev", "3"}, kvs[1:2]},
- {[]string{"key", "--rev", "4"}, kvs[2:]},
- }
- for i, tt := range tests {
- if err := ctlV3Get(cx, tt.args, tt.wkv...); err != nil {
- cx.t.Errorf("getTest #%d: ctlV3Get error (%v)", i, err)
- }
- }
- }
- func getKeysOnlyTest(cx ctlCtx) {
- if err := ctlV3Put(cx, "key", "val", ""); err != nil {
- cx.t.Fatal(err)
- }
- cmdArgs := append(cx.PrefixArgs(), []string{"get", "--keys-only", "key"}...)
- if err := spawnWithExpect(cmdArgs, "key"); err != nil {
- cx.t.Fatal(err)
- }
- if err := spawnWithExpects(cmdArgs, "val"); err == nil {
- cx.t.Fatalf("got value but passed --keys-only")
- }
- }
- func delTest(cx ctlCtx) {
- tests := []struct {
- puts []kv
- args []string
- deletedNum int
- }{
- { // delete all keys
- []kv{{"foo1", "bar"}, {"foo2", "bar"}, {"foo3", "bar"}},
- []string{"", "--prefix"},
- 3,
- },
- { // delete all keys
- []kv{{"foo1", "bar"}, {"foo2", "bar"}, {"foo3", "bar"}},
- []string{"", "--from-key"},
- 3,
- },
- {
- []kv{{"this", "value"}},
- []string{"that"},
- 0,
- },
- {
- []kv{{"sample", "value"}},
- []string{"sample"},
- 1,
- },
- {
- []kv{{"key1", "val1"}, {"key2", "val2"}, {"key3", "val3"}},
- []string{"key", "--prefix"},
- 3,
- },
- {
- []kv{{"zoo1", "bar"}, {"zoo2", "bar2"}, {"zoo3", "bar3"}},
- []string{"zoo1", "--from-key"},
- 3,
- },
- }
- for i, tt := range tests {
- for j := range tt.puts {
- if err := ctlV3Put(cx, tt.puts[j].key, tt.puts[j].val, ""); err != nil {
- cx.t.Fatalf("delTest #%d-%d: ctlV3Put error (%v)", i, j, err)
- }
- }
- if err := ctlV3Del(cx, tt.args, tt.deletedNum); err != nil {
- if cx.dialTimeout > 0 && !isGRPCTimedout(err) {
- cx.t.Fatalf("delTest #%d: ctlV3Del error (%v)", i, err)
- }
- }
- }
- }
- func ctlV3Put(cx ctlCtx, key, value, leaseID string, flags ...string) error {
- skipValue := false
- skipLease := false
- for _, f := range flags {
- if f == "--ignore-value" {
- skipValue = true
- }
- if f == "--ignore-lease" {
- skipLease = true
- }
- }
- cmdArgs := append(cx.PrefixArgs(), "put", key)
- if !skipValue {
- cmdArgs = append(cmdArgs, value)
- }
- if leaseID != "" && !skipLease {
- cmdArgs = append(cmdArgs, "--lease", leaseID)
- }
- if len(flags) != 0 {
- cmdArgs = append(cmdArgs, flags...)
- }
- return spawnWithExpect(cmdArgs, "OK")
- }
- type kv struct {
- key, val string
- }
- func ctlV3Get(cx ctlCtx, args []string, kvs ...kv) error {
- cmdArgs := append(cx.PrefixArgs(), "get")
- cmdArgs = append(cmdArgs, args...)
- if !cx.quorum {
- cmdArgs = append(cmdArgs, "--consistency", "s")
- }
- var lines []string
- for _, elem := range kvs {
- lines = append(lines, elem.key, elem.val)
- }
- return spawnWithExpects(cmdArgs, lines...)
- }
- func ctlV3Del(cx ctlCtx, args []string, num int) error {
- cmdArgs := append(cx.PrefixArgs(), "del")
- cmdArgs = append(cmdArgs, args...)
- return spawnWithExpects(cmdArgs, fmt.Sprintf("%d", num))
- }
|