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.
93 lines
2.6 KiB
Go
93 lines
2.6 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 (
|
|
"context"
|
|
"fmt"
|
|
"net/url"
|
|
"testing"
|
|
"time"
|
|
|
|
"go.etcd.io/etcd/client/v3"
|
|
)
|
|
|
|
func TestCtlV3EndpointHealth(t *testing.T) { testCtl(t, endpointHealthTest, withQuorum()) }
|
|
func TestCtlV3EndpointStatus(t *testing.T) { testCtl(t, endpointStatusTest, withQuorum()) }
|
|
func TestCtlV3EndpointHashKV(t *testing.T) { testCtl(t, endpointHashKVTest, withQuorum()) }
|
|
|
|
func endpointHealthTest(cx ctlCtx) {
|
|
if err := ctlV3EndpointHealth(cx); err != nil {
|
|
cx.t.Fatalf("endpointStatusTest ctlV3EndpointHealth error (%v)", err)
|
|
}
|
|
}
|
|
|
|
func ctlV3EndpointHealth(cx ctlCtx) error {
|
|
cmdArgs := append(cx.PrefixArgs(), "endpoint", "health")
|
|
lines := make([]string, cx.epc.cfg.clusterSize)
|
|
for i := range lines {
|
|
lines[i] = "is healthy"
|
|
}
|
|
return spawnWithExpects(cmdArgs, cx.envMap, lines...)
|
|
}
|
|
|
|
func endpointStatusTest(cx ctlCtx) {
|
|
if err := ctlV3EndpointStatus(cx); err != nil {
|
|
cx.t.Fatalf("endpointStatusTest ctlV3EndpointStatus error (%v)", err)
|
|
}
|
|
}
|
|
|
|
func ctlV3EndpointStatus(cx ctlCtx) error {
|
|
cmdArgs := append(cx.PrefixArgs(), "endpoint", "status")
|
|
var eps []string
|
|
for _, ep := range cx.epc.EndpointsV3() {
|
|
u, _ := url.Parse(ep)
|
|
eps = append(eps, u.Host)
|
|
}
|
|
return spawnWithExpects(cmdArgs, cx.envMap, eps...)
|
|
}
|
|
|
|
func endpointHashKVTest(cx ctlCtx) {
|
|
if err := ctlV3EndpointHashKV(cx); err != nil {
|
|
cx.t.Fatalf("endpointHashKVTest ctlV3EndpointHashKV error (%v)", err)
|
|
}
|
|
}
|
|
|
|
func ctlV3EndpointHashKV(cx ctlCtx) error {
|
|
eps := cx.epc.EndpointsV3()
|
|
|
|
// get latest hash to compare
|
|
cli, err := clientv3.New(clientv3.Config{
|
|
Endpoints: eps,
|
|
DialTimeout: 3 * time.Second,
|
|
})
|
|
if err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
defer cli.Close()
|
|
hresp, err := cli.HashKV(context.TODO(), eps[0], 0)
|
|
if err != nil {
|
|
cx.t.Fatal(err)
|
|
}
|
|
|
|
cmdArgs := append(cx.PrefixArgs(), "endpoint", "hashkv")
|
|
var ss []string
|
|
for _, ep := range cx.epc.EndpointsV3() {
|
|
u, _ := url.Parse(ep)
|
|
ss = append(ss, fmt.Sprintf("%s, %d", u.Host, hresp.Hash))
|
|
}
|
|
return spawnWithExpects(cmdArgs, cx.envMap, ss...)
|
|
}
|