mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #13823 from nic-chen/tests/ctl-alarm
tests: Migrate alarm tests to common framework
This commit is contained in:
commit
4787e71921
103
tests/common/alarm_test.go
Normal file
103
tests/common/alarm_test.go
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
// Copyright 2022 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 common
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
clientv3 "go.etcd.io/etcd/client/v3"
|
||||||
|
"go.etcd.io/etcd/tests/v3/framework/config"
|
||||||
|
"go.etcd.io/etcd/tests/v3/framework/testutils"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestAlarm(t *testing.T) {
|
||||||
|
testRunner.BeforeTest(t)
|
||||||
|
clus := testRunner.NewCluster(t, config.ClusterConfig{ClusterSize: 1, QuotaBackendBytes: int64(13 * os.Getpagesize())})
|
||||||
|
defer clus.Close()
|
||||||
|
testutils.ExecuteWithTimeout(t, 10*time.Second, func() {
|
||||||
|
// test small put still works
|
||||||
|
smallbuf := strings.Repeat("a", 64)
|
||||||
|
if err := clus.Client().Put("1st_test", smallbuf, config.PutOptions{}); err != nil {
|
||||||
|
t.Fatalf("alarmTest: put kv error (%v)", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// write some chunks to fill up the database
|
||||||
|
buf := strings.Repeat("b", os.Getpagesize())
|
||||||
|
for {
|
||||||
|
if err := clus.Client().Put("2nd_test", buf, config.PutOptions{}); err != nil {
|
||||||
|
if !strings.Contains(err.Error(), "etcdserver: mvcc: database space exceeded") {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// quota alarm should now be on
|
||||||
|
alarmResp, err := clus.Client().AlarmList()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("alarmTest: Alarm error (%v)", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// check that Put is rejected when alarm is on
|
||||||
|
if err := clus.Client().Put("3rd_test", smallbuf, config.PutOptions{}); err != nil {
|
||||||
|
if !strings.Contains(err.Error(), "etcdserver: mvcc: database space exceeded") {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// get latest revision to compact
|
||||||
|
sresp, err := clus.Client().Status()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("get endpoint status error: %v", err)
|
||||||
|
}
|
||||||
|
var rvs int64
|
||||||
|
for _, resp := range sresp {
|
||||||
|
if resp != nil && resp.Header != nil {
|
||||||
|
rvs = resp.Header.Revision
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// make some space
|
||||||
|
_, err = clus.Client().Compact(rvs, config.CompactOption{Physical: true, Timeout: 10 * time.Second})
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("alarmTest: Compact error (%v)", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = clus.Client().Defragment(config.DefragOption{Timeout: 10 * time.Second}); err != nil {
|
||||||
|
t.Fatalf("alarmTest: defrag error (%v)", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// turn off alarm
|
||||||
|
for _, alarm := range alarmResp.Alarms {
|
||||||
|
alarmMember := &clientv3.AlarmMember{
|
||||||
|
MemberID: alarm.MemberID,
|
||||||
|
Alarm: alarm.Alarm,
|
||||||
|
}
|
||||||
|
_, err = clus.Client().AlarmDisarm(alarmMember)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("alarmTest: Alarm error (%v)", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// put one more key below quota
|
||||||
|
if err := clus.Client().Put("4th_test", smallbuf, config.PutOptions{}); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
@ -1,106 +0,0 @@
|
|||||||
// 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"
|
|
||||||
"os"
|
|
||||||
"strings"
|
|
||||||
"testing"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
clientv3 "go.etcd.io/etcd/client/v3"
|
|
||||||
"go.etcd.io/etcd/tests/v3/framework/e2e"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestCtlV3Alarm(t *testing.T) {
|
|
||||||
// The boltdb minimum working set is six pages.
|
|
||||||
testCtl(t, alarmTest, withQuota(int64(13*os.Getpagesize())))
|
|
||||||
}
|
|
||||||
|
|
||||||
func alarmTest(cx ctlCtx) {
|
|
||||||
// test small put still works
|
|
||||||
smallbuf := strings.Repeat("a", 64)
|
|
||||||
if err := ctlV3Put(cx, "1st_test", smallbuf, ""); err != nil {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// write some chunks to fill up the database
|
|
||||||
buf := strings.Repeat("b", os.Getpagesize())
|
|
||||||
for {
|
|
||||||
if err := ctlV3Put(cx, "2nd_test", buf, ""); err != nil {
|
|
||||||
if !strings.Contains(err.Error(), "etcdserver: mvcc: database space exceeded") {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// quota alarm should now be on
|
|
||||||
if err := ctlV3Alarm(cx, "list", "alarm:NOSPACE"); err != nil {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// '/health' handler should return 'false'
|
|
||||||
if err := e2e.CURLGet(cx.epc, e2e.CURLReq{Endpoint: "/health", Expected: `{"health":"false","reason":"ALARM NOSPACE"}`}); err != nil {
|
|
||||||
cx.t.Fatalf("failed get with curl (%v)", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// check that Put is rejected when alarm is on
|
|
||||||
if err := ctlV3Put(cx, "3rd_test", smallbuf, ""); err != nil {
|
|
||||||
if !strings.Contains(err.Error(), "etcdserver: mvcc: database space exceeded") {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
eps := cx.epc.EndpointsV3()
|
|
||||||
|
|
||||||
// get latest revision to compact
|
|
||||||
cli, err := clientv3.New(clientv3.Config{
|
|
||||||
Endpoints: eps,
|
|
||||||
DialTimeout: 3 * time.Second,
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
defer cli.Close()
|
|
||||||
sresp, err := cli.Status(context.TODO(), eps[0])
|
|
||||||
if err != nil {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// make some space
|
|
||||||
if err := ctlV3Compact(cx, sresp.Header.Revision, true); err != nil {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
if err := ctlV3OnlineDefrag(cx); err != nil {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// turn off alarm
|
|
||||||
if err := ctlV3Alarm(cx, "disarm", "alarm:NOSPACE"); err != nil {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// put one more key below quota
|
|
||||||
if err := ctlV3Put(cx, "4th_test", smallbuf, ""); err != nil {
|
|
||||||
cx.t.Fatal(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func ctlV3Alarm(cx ctlCtx, cmd string, as ...string) error {
|
|
||||||
cmdArgs := append(cx.PrefixArgs(), "alarm", cmd)
|
|
||||||
return e2e.SpawnWithExpects(cmdArgs, cx.envMap, as...)
|
|
||||||
}
|
|
@ -181,10 +181,6 @@ func withQuota(b int64) ctlOption {
|
|||||||
return func(cx *ctlCtx) { cx.quotaBackendBytes = b }
|
return func(cx *ctlCtx) { cx.quotaBackendBytes = b }
|
||||||
}
|
}
|
||||||
|
|
||||||
func withCompactPhysical() ctlOption {
|
|
||||||
return func(cx *ctlCtx) { cx.compactPhysical = true }
|
|
||||||
}
|
|
||||||
|
|
||||||
func withInitialCorruptCheck() ctlOption {
|
func withInitialCorruptCheck() ctlOption {
|
||||||
return func(cx *ctlCtx) { cx.initialCorruptCheck = true }
|
return func(cx *ctlCtx) { cx.initialCorruptCheck = true }
|
||||||
}
|
}
|
||||||
|
@ -23,7 +23,8 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type ClusterConfig struct {
|
type ClusterConfig struct {
|
||||||
ClusterSize int
|
ClusterSize int
|
||||||
PeerTLS TLSConfig
|
PeerTLS TLSConfig
|
||||||
ClientTLS TLSConfig
|
ClientTLS TLSConfig
|
||||||
|
QuotaBackendBytes int64
|
||||||
}
|
}
|
||||||
|
@ -40,8 +40,9 @@ func (e e2eRunner) BeforeTest(t testing.TB) {
|
|||||||
|
|
||||||
func (e e2eRunner) NewCluster(t testing.TB, cfg config.ClusterConfig) Cluster {
|
func (e e2eRunner) NewCluster(t testing.TB, cfg config.ClusterConfig) Cluster {
|
||||||
e2eConfig := e2e.EtcdProcessClusterConfig{
|
e2eConfig := e2e.EtcdProcessClusterConfig{
|
||||||
InitialToken: "new",
|
InitialToken: "new",
|
||||||
ClusterSize: cfg.ClusterSize,
|
ClusterSize: cfg.ClusterSize,
|
||||||
|
QuotaBackendBytes: cfg.QuotaBackendBytes,
|
||||||
}
|
}
|
||||||
switch cfg.ClientTLS {
|
switch cfg.ClientTLS {
|
||||||
case config.NoTLS:
|
case config.NoTLS:
|
||||||
|
@ -343,3 +343,35 @@ func (ctl *EtcdctlV3) LeaseRevoke(id clientv3.LeaseID) (*clientv3.LeaseRevokeRes
|
|||||||
err = json.Unmarshal([]byte(line), &resp)
|
err = json.Unmarshal([]byte(line), &resp)
|
||||||
return &resp, err
|
return &resp, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (ctl *EtcdctlV3) AlarmList() (*clientv3.AlarmResponse, error) {
|
||||||
|
args := ctl.cmdArgs()
|
||||||
|
args = append(args, "alarm", "list", "-w", "json")
|
||||||
|
ep, err := SpawnCmd(args, nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
var resp clientv3.AlarmResponse
|
||||||
|
line, err := ep.Expect("alarm")
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
err = json.Unmarshal([]byte(line), &resp)
|
||||||
|
return &resp, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ctl *EtcdctlV3) AlarmDisarm(_ *clientv3.AlarmMember) (*clientv3.AlarmResponse, error) {
|
||||||
|
args := ctl.cmdArgs()
|
||||||
|
args = append(args, "alarm", "disarm", "-w", "json")
|
||||||
|
ep, err := SpawnCmd(args, nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
var resp clientv3.AlarmResponse
|
||||||
|
line, err := ep.Expect("alarm")
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
err = json.Unmarshal([]byte(line), &resp)
|
||||||
|
return &resp, err
|
||||||
|
}
|
||||||
|
@ -45,6 +45,7 @@ func (e integrationRunner) NewCluster(t testing.TB, cfg config.ClusterConfig) Cl
|
|||||||
var integrationCfg integration.ClusterConfig
|
var integrationCfg integration.ClusterConfig
|
||||||
integrationCfg.Size = cfg.ClusterSize
|
integrationCfg.Size = cfg.ClusterSize
|
||||||
integrationCfg.ClientTLS, err = tlsInfo(t, cfg.ClientTLS)
|
integrationCfg.ClientTLS, err = tlsInfo(t, cfg.ClientTLS)
|
||||||
|
integrationCfg.QuotaBackendBytes = cfg.QuotaBackendBytes
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("ClientTLS: %s", err)
|
t.Fatalf("ClientTLS: %s", err)
|
||||||
}
|
}
|
||||||
@ -163,6 +164,14 @@ func (c integrationClient) Compact(rev int64, o config.CompactOption) (*clientv3
|
|||||||
return c.Client.Compact(ctx, rev, clientOpts...)
|
return c.Client.Compact(ctx, rev, clientOpts...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c integrationClient) AlarmList() (*clientv3.AlarmResponse, error) {
|
||||||
|
return c.Client.AlarmList(context.Background())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c integrationClient) AlarmDisarm(alarmMember *clientv3.AlarmMember) (*clientv3.AlarmResponse, error) {
|
||||||
|
return c.Client.AlarmDisarm(context.Background(), alarmMember)
|
||||||
|
}
|
||||||
|
|
||||||
func (c integrationClient) Status() ([]*clientv3.StatusResponse, error) {
|
func (c integrationClient) Status() ([]*clientv3.StatusResponse, error) {
|
||||||
endpoints := c.Client.Endpoints()
|
endpoints := c.Client.Endpoints()
|
||||||
var resp []*clientv3.StatusResponse
|
var resp []*clientv3.StatusResponse
|
||||||
|
@ -41,6 +41,8 @@ type Client interface {
|
|||||||
HashKV(rev int64) ([]*clientv3.HashKVResponse, error)
|
HashKV(rev int64) ([]*clientv3.HashKVResponse, error)
|
||||||
Health() error
|
Health() error
|
||||||
Defragment(opts config.DefragOption) error
|
Defragment(opts config.DefragOption) error
|
||||||
|
AlarmList() (*clientv3.AlarmResponse, error)
|
||||||
|
AlarmDisarm(alarmMember *clientv3.AlarmMember) (*clientv3.AlarmResponse, error)
|
||||||
Grant(ttl int64) (*clientv3.LeaseGrantResponse, error)
|
Grant(ttl int64) (*clientv3.LeaseGrantResponse, error)
|
||||||
TimeToLive(id clientv3.LeaseID, opts config.LeaseOption) (*clientv3.LeaseTimeToLiveResponse, error)
|
TimeToLive(id clientv3.LeaseID, opts config.LeaseOption) (*clientv3.LeaseTimeToLiveResponse, error)
|
||||||
LeaseList() (*clientv3.LeaseLeasesResponse, error)
|
LeaseList() (*clientv3.LeaseLeasesResponse, error)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user