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

I manually print out the command outputs when the issue was reproduced, and checked they are matching when compared as Go string literals (UTF-8), but not when compared with regex. Fixes https://github.com/coreos/etcd/issues/4480.
246 lines
7.5 KiB
Go
246 lines
7.5 KiB
Go
// 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 e2e
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/coreos/etcd/pkg/fileutil"
|
|
"github.com/coreos/etcd/pkg/testutil"
|
|
)
|
|
|
|
func TestCtlV2Set(t *testing.T) { testCtlV2Set(t, &defaultConfig, false) }
|
|
func TestCtlV2SetClientTLS(t *testing.T) { testCtlV2Set(t, &defaultConfigClientTLS, false) }
|
|
func TestCtlV2SetPeerTLS(t *testing.T) { testCtlV2Set(t, &defaultConfigPeerTLS, false) }
|
|
func TestCtlV2SetTLS(t *testing.T) { testCtlV2Set(t, &defaultConfigTLS, false) }
|
|
func testCtlV2Set(t *testing.T, cfg *etcdProcessClusterConfig, noSync bool) {
|
|
defer testutil.AfterTest(t)
|
|
|
|
if fileutil.Exist("../bin/etcdctl") == false {
|
|
t.Fatalf("could not find etcdctl binary")
|
|
}
|
|
|
|
epc, errC := newEtcdProcessCluster(cfg)
|
|
if errC != nil {
|
|
t.Fatalf("could not start etcd process cluster (%v)", errC)
|
|
}
|
|
defer func() {
|
|
if errC := epc.Close(); errC != nil {
|
|
t.Fatalf("error closing etcd processes (%v)", errC)
|
|
}
|
|
}()
|
|
|
|
key, value := "foo", "bar"
|
|
|
|
if err := etcdctlSet(epc, key, value, noSync); err != nil {
|
|
t.Fatalf("failed set (%v)", err)
|
|
}
|
|
|
|
if err := etcdctlGet(epc, key, value, noSync); err != nil {
|
|
t.Fatalf("failed get (%v)", err)
|
|
}
|
|
}
|
|
|
|
func TestCtlV2Mk(t *testing.T) { testCtlV2Mk(t, &defaultConfig, false) }
|
|
func TestCtlV2MkTLS(t *testing.T) { testCtlV2Mk(t, &defaultConfigTLS, false) }
|
|
func testCtlV2Mk(t *testing.T, cfg *etcdProcessClusterConfig, noSync bool) {
|
|
defer testutil.AfterTest(t)
|
|
|
|
if fileutil.Exist("../bin/etcdctl") == false {
|
|
t.Fatalf("could not find etcdctl binary")
|
|
}
|
|
|
|
epc, errC := newEtcdProcessCluster(cfg)
|
|
if errC != nil {
|
|
t.Fatalf("could not start etcd process cluster (%v)", errC)
|
|
}
|
|
defer func() {
|
|
if errC := epc.Close(); errC != nil {
|
|
t.Fatalf("error closing etcd processes (%v)", errC)
|
|
}
|
|
}()
|
|
|
|
key, value := "foo", "bar"
|
|
|
|
if err := etcdctlMk(epc, key, value, true, noSync); err != nil {
|
|
t.Fatalf("failed mk (%v)", err)
|
|
}
|
|
if err := etcdctlMk(epc, key, value, false, noSync); err != nil {
|
|
t.Fatalf("failed mk (%v)", err)
|
|
}
|
|
|
|
if err := etcdctlGet(epc, key, value, noSync); err != nil {
|
|
t.Fatalf("failed get (%v)", err)
|
|
}
|
|
}
|
|
|
|
func TestCtlV2Rm(t *testing.T) { testCtlV2Rm(t, &defaultConfig, false) }
|
|
func TestCtlV2RmTLS(t *testing.T) { testCtlV2Rm(t, &defaultConfigTLS, false) }
|
|
func testCtlV2Rm(t *testing.T, cfg *etcdProcessClusterConfig, noSync bool) {
|
|
defer testutil.AfterTest(t)
|
|
|
|
if fileutil.Exist("../bin/etcdctl") == false {
|
|
t.Fatalf("could not find etcdctl binary")
|
|
}
|
|
|
|
epc, errC := newEtcdProcessCluster(cfg)
|
|
if errC != nil {
|
|
t.Fatalf("could not start etcd process cluster (%v)", errC)
|
|
}
|
|
defer func() {
|
|
if errC := epc.Close(); errC != nil {
|
|
t.Fatalf("error closing etcd processes (%v)", errC)
|
|
}
|
|
}()
|
|
|
|
key, value := "foo", "bar"
|
|
|
|
if err := etcdctlSet(epc, key, value, noSync); err != nil {
|
|
t.Fatalf("failed set (%v)", err)
|
|
}
|
|
|
|
if err := etcdctlRm(epc, key, value, true, noSync); err != nil {
|
|
t.Fatalf("failed rm (%v)", err)
|
|
}
|
|
if err := etcdctlRm(epc, key, value, false, noSync); err != nil {
|
|
t.Fatalf("failed rm (%v)", err)
|
|
}
|
|
}
|
|
|
|
func TestCtlV2Ls(t *testing.T) { testCtlV2Ls(t, &defaultConfig, false) }
|
|
func TestCtlV2LsTLS(t *testing.T) { testCtlV2Ls(t, &defaultConfigTLS, false) }
|
|
func testCtlV2Ls(t *testing.T, cfg *etcdProcessClusterConfig, noSync bool) {
|
|
defer testutil.AfterTest(t)
|
|
|
|
if fileutil.Exist("../bin/etcdctl") == false {
|
|
t.Fatalf("could not find etcdctl binary")
|
|
}
|
|
|
|
epc, errC := newEtcdProcessCluster(cfg)
|
|
if errC != nil {
|
|
t.Fatalf("could not start etcd process cluster (%v)", errC)
|
|
}
|
|
defer func() {
|
|
if errC := epc.Close(); errC != nil {
|
|
t.Fatalf("error closing etcd processes (%v)", errC)
|
|
}
|
|
}()
|
|
|
|
key, value := "foo", "bar"
|
|
|
|
if err := etcdctlSet(epc, key, value, noSync); err != nil {
|
|
t.Fatalf("failed set (%v)", err)
|
|
}
|
|
|
|
if err := etcdctlLs(epc, key, noSync); err != nil {
|
|
t.Fatalf("failed ls (%v)", err)
|
|
}
|
|
}
|
|
|
|
func TestCtlV2Watch(t *testing.T) { testCtlV2Watch(t, &defaultConfig, false) }
|
|
func TestCtlV2WatchTLS(t *testing.T) { testCtlV2Watch(t, &defaultConfigTLS, false) }
|
|
func TestCtlV2WatchWithProxy(t *testing.T) { testCtlV2Watch(t, &defaultConfigWithProxy, false) }
|
|
func TestCtlV2WatchWithProxyNoSync(t *testing.T) { testCtlV2Watch(t, &defaultConfigWithProxy, true) }
|
|
func testCtlV2Watch(t *testing.T, cfg *etcdProcessClusterConfig, noSync bool) {
|
|
defer testutil.AfterTest(t)
|
|
|
|
if fileutil.Exist("../bin/etcdctl") == false {
|
|
t.Fatalf("could not find etcdctl binary")
|
|
}
|
|
|
|
epc, errC := newEtcdProcessCluster(cfg)
|
|
if errC != nil {
|
|
t.Fatalf("could not start etcd process cluster (%v)", errC)
|
|
}
|
|
defer func() {
|
|
if errC := epc.Close(); errC != nil {
|
|
t.Fatalf("error closing etcd processes (%v)", errC)
|
|
}
|
|
}()
|
|
|
|
key, value := "foo", "bar"
|
|
errc := etcdctlWatch(epc, key, value, noSync)
|
|
if err := etcdctlSet(epc, key, value, noSync); err != nil {
|
|
t.Fatalf("failed set (%v)", err)
|
|
}
|
|
|
|
select {
|
|
case err := <-errc:
|
|
if err != nil {
|
|
t.Fatalf("failed watch (%v)", err)
|
|
}
|
|
case <-time.After(5 * time.Second):
|
|
t.Fatalf("watch timed out")
|
|
}
|
|
}
|
|
|
|
func etcdctlPrefixArgs(clus *etcdProcessCluster, noSync bool) []string {
|
|
endpoint := ""
|
|
if proxies := clus.proxies(); len(proxies) != 0 {
|
|
endpoint = proxies[0].cfg.acurl.String()
|
|
} else if backends := clus.backends(); len(backends) != 0 {
|
|
endpoint = backends[0].cfg.acurl.String()
|
|
}
|
|
cmdArgs := []string{"../bin/etcdctl", "--endpoint", endpoint}
|
|
if noSync {
|
|
cmdArgs = append(cmdArgs, "--no-sync")
|
|
}
|
|
if clus.cfg.isClientTLS {
|
|
cmdArgs = append(cmdArgs, "--ca-file", caPath, "--cert-file", certPath, "--key-file", privateKeyPath)
|
|
}
|
|
return cmdArgs
|
|
}
|
|
|
|
func etcdctlSet(clus *etcdProcessCluster, key, value string, noSync bool) error {
|
|
cmdArgs := append(etcdctlPrefixArgs(clus, noSync), "set", key, value)
|
|
return spawnWithExpect(cmdArgs, value)
|
|
}
|
|
|
|
func etcdctlMk(clus *etcdProcessCluster, key, value string, first, noSync bool) error {
|
|
cmdArgs := append(etcdctlPrefixArgs(clus, noSync), "mk", key, value)
|
|
if first {
|
|
return spawnWithExpectedString(cmdArgs, value)
|
|
}
|
|
return spawnWithExpectedString(cmdArgs, "Error: 105: Key already exists")
|
|
}
|
|
|
|
func etcdctlGet(clus *etcdProcessCluster, key, value string, noSync bool) error {
|
|
cmdArgs := append(etcdctlPrefixArgs(clus, noSync), "get", key)
|
|
return spawnWithExpectedString(cmdArgs, value)
|
|
}
|
|
|
|
func etcdctlRm(clus *etcdProcessCluster, key, value string, first, noSync bool) error {
|
|
cmdArgs := append(etcdctlPrefixArgs(clus, noSync), "rm", key)
|
|
if first {
|
|
return spawnWithExpectedString(cmdArgs, "PrevNode.Value: "+value)
|
|
}
|
|
return spawnWithExpect(cmdArgs, "Error: 100: Key not found")
|
|
}
|
|
|
|
func etcdctlLs(clus *etcdProcessCluster, key string, noSync bool) error {
|
|
cmdArgs := append(etcdctlPrefixArgs(clus, noSync), "ls")
|
|
return spawnWithExpect(cmdArgs, key)
|
|
}
|
|
|
|
func etcdctlWatch(clus *etcdProcessCluster, key, value string, noSync bool) <-chan error {
|
|
cmdArgs := append(etcdctlPrefixArgs(clus, noSync), "watch", "--after-index 1", key)
|
|
errc := make(chan error, 1)
|
|
go func() {
|
|
errc <- spawnWithExpect(cmdArgs, value)
|
|
}()
|
|
return errc
|
|
}
|