mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

prefixArgs uses os.Setenv in e2e tests instead envMap. This creates overwrites in some test cases and have an impact on test quality and isolation between tests. This PR uses ctlcontext envMap in each tests with high priority and merges os environment variables with low priority.
386 lines
12 KiB
Go
386 lines
12 KiB
Go
// 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"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestCtlV3Put(t *testing.T) { testCtl(t, putTest, withDialTimeout(7*time.Second)) }
|
|
func TestCtlV3PutNoTLS(t *testing.T) { testCtl(t, putTest, withCfg(*newConfigNoTLS())) }
|
|
func TestCtlV3PutClientTLS(t *testing.T) { testCtl(t, putTest, withCfg(*newConfigClientTLS())) }
|
|
func TestCtlV3PutClientAutoTLS(t *testing.T) { testCtl(t, putTest, withCfg(*newConfigClientAutoTLS())) }
|
|
func TestCtlV3PutPeerTLS(t *testing.T) { testCtl(t, putTest, withCfg(*newConfigPeerTLS())) }
|
|
func TestCtlV3PutTimeout(t *testing.T) { testCtl(t, putTest, withDialTimeout(0)) }
|
|
func TestCtlV3PutClientTLSFlagByEnv(t *testing.T) {
|
|
testCtl(t, putTest, withCfg(*newConfigClientTLS()), 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(*newConfigNoTLS())) }
|
|
func TestCtlV3GetClientTLS(t *testing.T) { testCtl(t, getTest, withCfg(*newConfigClientTLS())) }
|
|
func TestCtlV3GetClientAutoTLS(t *testing.T) { testCtl(t, getTest, withCfg(*newConfigClientAutoTLS())) }
|
|
func TestCtlV3GetPeerTLS(t *testing.T) { testCtl(t, getTest, withCfg(*newConfigPeerTLS())) }
|
|
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 TestCtlV3GetCountOnly(t *testing.T) { testCtl(t, getCountOnlyTest) }
|
|
|
|
func TestCtlV3Del(t *testing.T) { testCtl(t, delTest) }
|
|
func TestCtlV3DelNoTLS(t *testing.T) { testCtl(t, delTest, withCfg(*newConfigNoTLS())) }
|
|
func TestCtlV3DelClientTLS(t *testing.T) { testCtl(t, delTest, withCfg(*newConfigClientTLS())) }
|
|
func TestCtlV3DelPeerTLS(t *testing.T) { testCtl(t, delTest, withCfg(*newConfigPeerTLS())) }
|
|
func TestCtlV3DelTimeout(t *testing.T) { testCtl(t, delTest, withDialTimeout(0)) }
|
|
|
|
func TestCtlV3GetRevokedCRL(t *testing.T) {
|
|
cfg := etcdProcessClusterConfig{
|
|
clusterSize: 1,
|
|
initialToken: "new",
|
|
clientTLS: clientTLS,
|
|
isClientCRL: true,
|
|
clientCertAuthEnabled: true,
|
|
}
|
|
testCtl(t, testGetRevokedCRL, withCfg(cfg))
|
|
}
|
|
|
|
func testGetRevokedCRL(cx ctlCtx) {
|
|
// test reject
|
|
if err := ctlV3Put(cx, "k", "v", ""); err == nil || !strings.Contains(err.Error(), "Error:") {
|
|
cx.t.Fatalf("expected reset connection on put, got %v", err)
|
|
}
|
|
// test accept
|
|
cx.epc.cfg.isClientCRL = false
|
|
if err := ctlV3Put(cx, "k", "v", ""); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
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 := spawnWithExpectWithEnv(cmdArgs, cx.envMap, 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 := spawnWithExpectWithEnv(cmdArgs, cx.envMap, "key"); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
if err := spawnWithExpects(cmdArgs, cx.envMap, "val"); err == nil {
|
|
cx.t.Fatalf("got value but passed --keys-only")
|
|
}
|
|
}
|
|
|
|
func getCountOnlyTest(cx ctlCtx) {
|
|
cmdArgs := append(cx.PrefixArgs(), []string{"get", "--count-only", "key", "--prefix", "--write-out=fields"}...)
|
|
if err := spawnWithExpects(cmdArgs, cx.envMap, "\"Count\" : 0"); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
if err := ctlV3Put(cx, "key", "val", ""); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
cmdArgs = append(cx.PrefixArgs(), []string{"get", "--count-only", "key", "--prefix", "--write-out=fields"}...)
|
|
if err := spawnWithExpects(cmdArgs, cx.envMap, "\"Count\" : 1"); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
if err := ctlV3Put(cx, "key1", "val", ""); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
if err := ctlV3Put(cx, "key1", "val", ""); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
cmdArgs = append(cx.PrefixArgs(), []string{"get", "--count-only", "key", "--prefix", "--write-out=fields"}...)
|
|
if err := spawnWithExpects(cmdArgs, cx.envMap, "\"Count\" : 2"); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
if err := ctlV3Put(cx, "key2", "val", ""); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
cmdArgs = append(cx.PrefixArgs(), []string{"get", "--count-only", "key", "--prefix", "--write-out=fields"}...)
|
|
if err := spawnWithExpects(cmdArgs, cx.envMap, "\"Count\" : 3"); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
expected := []string{
|
|
"\"Count\" : 3",
|
|
}
|
|
cmdArgs = append(cx.PrefixArgs(), []string{"get", "--count-only", "key3", "--prefix", "--write-out=fields"}...)
|
|
if err := spawnWithExpects(cmdArgs, cx.envMap, expected...); err == nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
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 spawnWithExpectWithEnv(cmdArgs, cx.envMap, "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, cx.envMap, lines...)
|
|
}
|
|
|
|
// ctlV3GetWithErr runs "get" command expecting no output but error
|
|
func ctlV3GetWithErr(cx ctlCtx, args []string, errs []string) error {
|
|
cmdArgs := append(cx.PrefixArgs(), "get")
|
|
cmdArgs = append(cmdArgs, args...)
|
|
if !cx.quorum {
|
|
cmdArgs = append(cmdArgs, "--consistency", "s")
|
|
}
|
|
return spawnWithExpects(cmdArgs, cx.envMap, errs...)
|
|
}
|
|
|
|
func ctlV3Del(cx ctlCtx, args []string, num int) error {
|
|
cmdArgs := append(cx.PrefixArgs(), "del")
|
|
cmdArgs = append(cmdArgs, args...)
|
|
return spawnWithExpects(cmdArgs, cx.envMap, fmt.Sprintf("%d", num))
|
|
}
|