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

Signed-off-by: Marek Siarkowicz <siarkowicz@google.com> Co-authored-by: James Blair <mail@jamesblair.net> Co-authored-by: chao <chaochn@amazon.com>
89 lines
2.8 KiB
Go
89 lines
2.8 KiB
Go
// Copyright 2023 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 failpoint
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"go.etcd.io/etcd/tests/v3/framework/e2e"
|
|
"go.etcd.io/etcd/tests/v3/robustness/client"
|
|
"go.etcd.io/etcd/tests/v3/robustness/identity"
|
|
"go.etcd.io/etcd/tests/v3/robustness/report"
|
|
)
|
|
|
|
type trigger interface {
|
|
Trigger(ctx context.Context, t *testing.T, member e2e.EtcdProcess, clus *e2e.EtcdProcessCluster, baseTime time.Time, ids identity.Provider) ([]report.ClientReport, error)
|
|
AvailabilityChecker
|
|
}
|
|
|
|
type triggerDefrag struct{}
|
|
|
|
func (t triggerDefrag) Trigger(ctx context.Context, _ *testing.T, member e2e.EtcdProcess, clus *e2e.EtcdProcessCluster, baseTime time.Time, ids identity.Provider) ([]report.ClientReport, error) {
|
|
cc, err := client.NewRecordingClient(member.EndpointsGRPC(), ids, baseTime)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed creating client: %w", err)
|
|
}
|
|
defer cc.Close()
|
|
_, err = cc.Defragment(ctx)
|
|
if err != nil && !strings.Contains(err.Error(), "error reading from server: EOF") {
|
|
return nil, err
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
func (t triggerDefrag) Available(e2e.EtcdProcessClusterConfig, e2e.EtcdProcess) bool {
|
|
return true
|
|
}
|
|
|
|
type triggerCompact struct {
|
|
multiBatchCompaction bool
|
|
}
|
|
|
|
func (t triggerCompact) Trigger(ctx context.Context, _ *testing.T, member e2e.EtcdProcess, clus *e2e.EtcdProcessCluster, baseTime time.Time, ids identity.Provider) ([]report.ClientReport, error) {
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second)
|
|
defer cancel()
|
|
cc, err := client.NewRecordingClient(member.EndpointsGRPC(), ids, baseTime)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed creating client: %w", err)
|
|
}
|
|
defer cc.Close()
|
|
|
|
var rev int64
|
|
for {
|
|
_, rev, err = cc.Get(ctx, "/", 0)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get revision: %w", err)
|
|
}
|
|
|
|
if !t.multiBatchCompaction || rev > int64(clus.Cfg.ServerConfig.ExperimentalCompactionBatchLimit) {
|
|
break
|
|
}
|
|
time.Sleep(50 * time.Millisecond)
|
|
}
|
|
_, err = cc.Compact(ctx, rev)
|
|
if err != nil && !strings.Contains(err.Error(), "error reading from server: EOF") {
|
|
return nil, err
|
|
}
|
|
return []report.ClientReport{cc.Report()}, nil
|
|
}
|
|
|
|
func (t triggerCompact) Available(e2e.EtcdProcessClusterConfig, e2e.EtcdProcess) bool {
|
|
return true
|
|
}
|