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

The e2e tests can be flaky due to various tests mutating shared mutable fixtures, causing non-deterministic behavior depending on the test set, order, etc. For example, `configTLS` is mutated in at least two tests in such a way that the config is potentially invalidated for any subsequent test running in the same process (e.g. by setting the `enableV2` field). This particular example caused a substantial amount of confusion diagnosing the new test introduced for https://github.com/etcd-io/etcd/pull/12370. Independent tests should not share mutable state unless deliberately. This patch refactors the e2e test config fixtures to safeguard against these problems by replacing the package variables (which cannot easily be made immutable) with functions that return new instances.
220 lines
7.4 KiB
Go
220 lines
7.4 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 (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"reflect"
|
|
"strings"
|
|
"testing"
|
|
|
|
"go.etcd.io/etcd/api/v3/etcdserverpb"
|
|
)
|
|
|
|
func TestCtlV3MemberList(t *testing.T) { testCtl(t, memberListTest) }
|
|
func TestCtlV3MemberListWithHex(t *testing.T) { testCtl(t, memberListWithHexTest) }
|
|
func TestCtlV3MemberListNoTLS(t *testing.T) { testCtl(t, memberListTest, withCfg(*newConfigNoTLS())) }
|
|
func TestCtlV3MemberListClientTLS(t *testing.T) {
|
|
testCtl(t, memberListTest, withCfg(*newConfigClientTLS()))
|
|
}
|
|
func TestCtlV3MemberListClientAutoTLS(t *testing.T) {
|
|
testCtl(t, memberListTest, withCfg(*newConfigClientAutoTLS()))
|
|
}
|
|
func TestCtlV3MemberListPeerTLS(t *testing.T) {
|
|
testCtl(t, memberListTest, withCfg(*newConfigPeerTLS()))
|
|
}
|
|
func TestCtlV3MemberRemove(t *testing.T) {
|
|
testCtl(t, memberRemoveTest, withQuorum(), withNoStrictReconfig())
|
|
}
|
|
func TestCtlV3MemberRemoveNoTLS(t *testing.T) {
|
|
testCtl(t, memberRemoveTest, withQuorum(), withNoStrictReconfig(), withCfg(*newConfigNoTLS()))
|
|
}
|
|
func TestCtlV3MemberRemoveClientTLS(t *testing.T) {
|
|
testCtl(t, memberRemoveTest, withQuorum(), withNoStrictReconfig(), withCfg(*newConfigClientTLS()))
|
|
}
|
|
func TestCtlV3MemberRemoveClientAutoTLS(t *testing.T) {
|
|
testCtl(t, memberRemoveTest, withQuorum(), withNoStrictReconfig(), withCfg(
|
|
// default clusterSize is 1
|
|
etcdProcessClusterConfig{
|
|
clusterSize: 3,
|
|
isClientAutoTLS: true,
|
|
clientTLS: clientTLS,
|
|
initialToken: "new",
|
|
}))
|
|
}
|
|
func TestCtlV3MemberRemovePeerTLS(t *testing.T) {
|
|
testCtl(t, memberRemoveTest, withQuorum(), withNoStrictReconfig(), withCfg(*newConfigPeerTLS()))
|
|
}
|
|
func TestCtlV3MemberAdd(t *testing.T) { testCtl(t, memberAddTest) }
|
|
func TestCtlV3MemberAddNoTLS(t *testing.T) { testCtl(t, memberAddTest, withCfg(*newConfigNoTLS())) }
|
|
func TestCtlV3MemberAddClientTLS(t *testing.T) {
|
|
testCtl(t, memberAddTest, withCfg(*newConfigClientTLS()))
|
|
}
|
|
func TestCtlV3MemberAddClientAutoTLS(t *testing.T) {
|
|
testCtl(t, memberAddTest, withCfg(*newConfigClientAutoTLS()))
|
|
}
|
|
func TestCtlV3MemberAddPeerTLS(t *testing.T) { testCtl(t, memberAddTest, withCfg(*newConfigPeerTLS())) }
|
|
func TestCtlV3MemberAddForLearner(t *testing.T) { testCtl(t, memberAddForLearnerTest) }
|
|
func TestCtlV3MemberUpdate(t *testing.T) { testCtl(t, memberUpdateTest) }
|
|
func TestCtlV3MemberUpdateNoTLS(t *testing.T) {
|
|
testCtl(t, memberUpdateTest, withCfg(*newConfigNoTLS()))
|
|
}
|
|
func TestCtlV3MemberUpdateClientTLS(t *testing.T) {
|
|
testCtl(t, memberUpdateTest, withCfg(*newConfigClientTLS()))
|
|
}
|
|
func TestCtlV3MemberUpdateClientAutoTLS(t *testing.T) {
|
|
testCtl(t, memberUpdateTest, withCfg(*newConfigClientAutoTLS()))
|
|
}
|
|
func TestCtlV3MemberUpdatePeerTLS(t *testing.T) {
|
|
testCtl(t, memberUpdateTest, withCfg(*newConfigPeerTLS()))
|
|
}
|
|
|
|
func memberListTest(cx ctlCtx) {
|
|
if err := ctlV3MemberList(cx); err != nil {
|
|
cx.t.Fatalf("memberListTest ctlV3MemberList error (%v)", err)
|
|
}
|
|
}
|
|
|
|
func ctlV3MemberList(cx ctlCtx) error {
|
|
cmdArgs := append(cx.PrefixArgs(), "member", "list")
|
|
lines := make([]string, cx.cfg.clusterSize)
|
|
for i := range lines {
|
|
lines[i] = "started"
|
|
}
|
|
return spawnWithExpects(cmdArgs, lines...)
|
|
}
|
|
|
|
func getMemberList(cx ctlCtx) (etcdserverpb.MemberListResponse, error) {
|
|
cmdArgs := append(cx.PrefixArgs(), "--write-out", "json", "member", "list")
|
|
|
|
proc, err := spawnCmd(cmdArgs)
|
|
if err != nil {
|
|
return etcdserverpb.MemberListResponse{}, err
|
|
}
|
|
var txt string
|
|
txt, err = proc.Expect("members")
|
|
if err != nil {
|
|
return etcdserverpb.MemberListResponse{}, err
|
|
}
|
|
if err = proc.Close(); err != nil {
|
|
return etcdserverpb.MemberListResponse{}, err
|
|
}
|
|
|
|
resp := etcdserverpb.MemberListResponse{}
|
|
dec := json.NewDecoder(strings.NewReader(txt))
|
|
if err := dec.Decode(&resp); err == io.EOF {
|
|
return etcdserverpb.MemberListResponse{}, err
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
func memberListWithHexTest(cx ctlCtx) {
|
|
resp, err := getMemberList(cx)
|
|
if err != nil {
|
|
cx.t.Fatalf("getMemberList error (%v)", err)
|
|
}
|
|
|
|
cmdArgs := append(cx.PrefixArgs(), "--write-out", "json", "--hex", "member", "list")
|
|
|
|
proc, err := spawnCmd(cmdArgs)
|
|
if err != nil {
|
|
cx.t.Fatalf("memberListWithHexTest error (%v)", err)
|
|
}
|
|
var txt string
|
|
txt, err = proc.Expect("members")
|
|
if err != nil {
|
|
cx.t.Fatalf("memberListWithHexTest error (%v)", err)
|
|
}
|
|
if err = proc.Close(); err != nil {
|
|
cx.t.Fatalf("memberListWithHexTest error (%v)", err)
|
|
}
|
|
hexResp := etcdserverpb.MemberListResponse{}
|
|
dec := json.NewDecoder(strings.NewReader(txt))
|
|
if err := dec.Decode(&hexResp); err == io.EOF {
|
|
cx.t.Fatalf("memberListWithHexTest error (%v)", err)
|
|
}
|
|
num := len(resp.Members)
|
|
hexNum := len(hexResp.Members)
|
|
if num != hexNum {
|
|
cx.t.Fatalf("member number,expected %d,got %d", num, hexNum)
|
|
}
|
|
if num == 0 {
|
|
cx.t.Fatal("member number is 0")
|
|
}
|
|
for i := 0; i < num; i++ {
|
|
if resp.Members[i].Name != hexResp.Members[i].Name {
|
|
cx.t.Fatalf("member name,expected %v,got %v", resp.Members[i].Name, hexResp.Members[i].Name)
|
|
}
|
|
if !reflect.DeepEqual(resp.Members[i].PeerURLs, hexResp.Members[i].PeerURLs) {
|
|
cx.t.Fatalf("member peerURLs,expected %v,got %v", resp.Members[i].PeerURLs, hexResp.Members[i].PeerURLs)
|
|
}
|
|
if !reflect.DeepEqual(resp.Members[i].ClientURLs, hexResp.Members[i].ClientURLs) {
|
|
cx.t.Fatalf("member clientURLS,expected %v,got %v", resp.Members[i].ClientURLs, hexResp.Members[i].ClientURLs)
|
|
}
|
|
}
|
|
}
|
|
|
|
func memberRemoveTest(cx ctlCtx) {
|
|
ep, memIDToRemove, clusterID := cx.memberToRemove()
|
|
if err := ctlV3MemberRemove(cx, ep, memIDToRemove, clusterID); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func ctlV3MemberRemove(cx ctlCtx, ep, memberID, clusterID string) error {
|
|
cmdArgs := append(cx.prefixArgs([]string{ep}), "member", "remove", memberID)
|
|
return spawnWithExpect(cmdArgs, fmt.Sprintf("%s removed from cluster %s", memberID, clusterID))
|
|
}
|
|
|
|
func memberAddTest(cx ctlCtx) {
|
|
if err := ctlV3MemberAdd(cx, fmt.Sprintf("http://localhost:%d", etcdProcessBasePort+11), false); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func memberAddForLearnerTest(cx ctlCtx) {
|
|
if err := ctlV3MemberAdd(cx, fmt.Sprintf("http://localhost:%d", etcdProcessBasePort+11), true); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func ctlV3MemberAdd(cx ctlCtx, peerURL string, isLearner bool) error {
|
|
cmdArgs := append(cx.PrefixArgs(), "member", "add", "newmember", fmt.Sprintf("--peer-urls=%s", peerURL))
|
|
if isLearner {
|
|
cmdArgs = append(cmdArgs, "--learner")
|
|
}
|
|
return spawnWithExpect(cmdArgs, " added to cluster ")
|
|
}
|
|
|
|
func memberUpdateTest(cx ctlCtx) {
|
|
mr, err := getMemberList(cx)
|
|
if err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
|
|
peerURL := fmt.Sprintf("http://localhost:%d", etcdProcessBasePort+11)
|
|
memberID := fmt.Sprintf("%x", mr.Members[0].ID)
|
|
if err = ctlV3MemberUpdate(cx, memberID, peerURL); err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func ctlV3MemberUpdate(cx ctlCtx, memberID, peerURL string) error {
|
|
cmdArgs := append(cx.PrefixArgs(), "member", "update", memberID, fmt.Sprintf("--peer-urls=%s", peerURL))
|
|
return spawnWithExpect(cmdArgs, " updated in cluster ")
|
|
}
|