tests: Add reproduce #13766 scenario

Signed-off-by: Marek Siarkowicz <siarkowicz@google.com>
dependabot/go_modules/go.uber.org/atomic-1.10.0
Marek Siarkowicz 2023-01-13 21:12:57 +01:00
parent 09b5663301
commit a0d12d316d
4 changed files with 41 additions and 18 deletions

View File

@ -10,17 +10,17 @@ jobs:
uses: ./.github/workflows/linearizability-template.yaml
with:
ref: main
count: 300
testTimeout: 170m
count: 100
testTimeout: 200m
test-35:
uses: ./.github/workflows/linearizability-template.yaml
with:
ref: release-3.5
count: 300
testTimeout: 170m
count: 100
testTimeout: 200m
test-34:
uses: ./.github/workflows/linearizability-template.yaml
with:
ref: release-3.4
count: 300
testTimeout: 170m
count: 100
testTimeout: 200m

View File

@ -15,7 +15,7 @@ on:
permissions: read-all
jobs:
test:
timeout-minutes: 180
timeout-minutes: 210
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0

View File

@ -6,5 +6,5 @@ jobs:
uses: ./.github/workflows/linearizability-template.yaml
with:
ref: ${{ github.ref }}
count: 60
count: 15
testTimeout: 30m

View File

@ -36,26 +36,40 @@ import (
)
const (
// minimalQPS is used to validate if enough traffic is send to make tests accurate.
minimalQPS = 100.0
// maximalQPS limits number of requests send to etcd to avoid linearizability analysis taking too long.
maximalQPS = 200.0
// waitBetweenFailpointTriggers
waitBetweenFailpointTriggers = time.Second
)
var (
DefaultTrafficConfig = trafficConfig{
minimalQPS: 100,
maximalQPS: 200,
clientCount: 8,
traffic: DefaultTraffic,
}
HighTrafficConfig = trafficConfig{
minimalQPS: 200,
maximalQPS: 1000,
clientCount: 12,
traffic: DefaultTraffic,
}
)
func TestLinearizability(t *testing.T) {
testRunner.BeforeTest(t)
tcs := []struct {
name string
failpoint Failpoint
config e2e.EtcdProcessClusterConfig
traffic *trafficConfig
}{
{
name: "ClusterOfSize1",
failpoint: RandomFailpoint,
traffic: &HighTrafficConfig,
config: *e2e.NewConfig(
e2e.WithClusterSize(1),
e2e.WithSnapshotCount(100),
e2e.WithPeerProxy(true),
e2e.WithGoFailEnabled(true),
e2e.WithCompactionBatchLimit(100), // required for compactBeforeCommitBatch and compactAfterCommitBatch failpoints
@ -64,7 +78,9 @@ func TestLinearizability(t *testing.T) {
{
name: "ClusterOfSize3",
failpoint: RandomFailpoint,
traffic: &HighTrafficConfig,
config: *e2e.NewConfig(
e2e.WithSnapshotCount(100),
e2e.WithPeerProxy(true),
e2e.WithGoFailEnabled(true),
e2e.WithCompactionBatchLimit(100), // required for compactBeforeCommitBatch and compactAfterCommitBatch failpoints
@ -86,8 +102,20 @@ func TestLinearizability(t *testing.T) {
e2e.WithGoFailEnabled(true),
),
},
{
name: "Issue13766",
failpoint: KillFailpoint,
traffic: &HighTrafficConfig,
config: *e2e.NewConfig(
e2e.WithSnapshotCount(100),
),
},
}
for _, tc := range tcs {
if tc.traffic == nil {
tc.traffic = &DefaultTrafficConfig
}
t.Run(tc.name, func(t *testing.T) {
ctx := context.Background()
clus, err := e2e.NewEtcdProcessCluster(ctx, t, e2e.WithConfig(&tc.config))
@ -100,12 +128,7 @@ func TestLinearizability(t *testing.T) {
count: 1,
retries: 3,
waitBetweenTriggers: waitBetweenFailpointTriggers,
}, trafficConfig{
minimalQPS: minimalQPS,
maximalQPS: maximalQPS,
clientCount: 8,
traffic: DefaultTraffic,
})
}, *tc.traffic)
longestHistory, remainingEvents := pickLongestHistory(events)
validateEventsMatch(t, longestHistory, remainingEvents)
operations = patchOperationBasedOnWatchEvents(operations, longestHistory)