Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Disable robustness test detection of #18089 to allow detecting other issues #18453

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions tests/robustness/model/replay.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,14 @@ func NewReplay(persistedRequests []EtcdRequest) *EtcdReplay {
state = newState
}
return &EtcdReplay{
Requests: persistedRequests,
revisionToEtcdState: revisionToEtcdState,
events: events,
Events: events,
}
}

type EtcdReplay struct {
Requests []EtcdRequest
revisionToEtcdState []EtcdState
events []PersistedEvent
Events []PersistedEvent
}

func (r *EtcdReplay) StateForRevision(revision int64) (EtcdState, error) {
Expand All @@ -56,7 +54,7 @@ func (r *EtcdReplay) StateForRevision(revision int64) (EtcdState, error) {
}

func (r *EtcdReplay) EventsForWatch(watch WatchRequest) (events []PersistedEvent) {
for _, e := range r.events {
for _, e := range r.Events {
if e.Revision < watch.Revision || !e.Match(watch) {
continue
}
Expand Down
37 changes: 0 additions & 37 deletions tests/robustness/validate/validate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1331,34 +1331,6 @@ func TestValidateWatch(t *testing.T) {
putRequest("c", "3"),
},
},
{
name: "Reliable - issue #18089 - pass",
reports: []report.ClientReport{
{
Watch: []model.WatchOperation{
{
Request: model.WatchRequest{
WithPrefix: true,
Revision: 3,
},
Responses: []model.WatchResponse{
{
Events: []model.WatchEvent{
putWatchEvent("b", "2", 4, true),
},
},
},
},
},
},
},
persistedRequests: []model.EtcdRequest{
putRequest("a", "1"),
deleteRequest("a"),
putRequest("b", "2"),
compactRequest(3),
},
},
{
name: "Resumable - watch revision from middle event - pass",
reports: []report.ClientReport{
Expand Down Expand Up @@ -1987,12 +1959,3 @@ func deleteRequest(key string) model.EtcdRequest {
Defragment: nil,
}
}

func compactRequest(revision int64) model.EtcdRequest {
return model.EtcdRequest{
Type: model.Compact,
Compact: &model.CompactRequest{
Revision: revision,
},
}
}
59 changes: 6 additions & 53 deletions tests/robustness/validate/watch.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,6 @@ func validateReliable(lg *zap.Logger, replay *model.EtcdReplay, report report.Cl
gotEvents = append(gotEvents, event.PersistedEvent)
}
}
// TODO(https://github.com/etcd-io/etcd/issues/18089): Remove when bug is fixed
detected, newWantEvents := checkIssue18089(lg, report.ClientID, wantEvents, gotEvents, replay)
if detected {
wantEvents = newWantEvents
}
if diff := cmp.Diff(wantEvents, gotEvents, cmpopts.IgnoreFields(model.PersistedEvent{}, "IsCreate")); diff != "" {
lg.Error("Broke watch guarantee", zap.String("guarantee", "reliable"), zap.Int("client", report.ClientID), zap.String("diff", diff))
err = errBrokeReliable
Expand All @@ -223,22 +218,18 @@ func validateResumable(lg *zap.Logger, replay *model.EtcdReplay, report report.C
if watch.Request.Revision == 0 {
continue
}
wantEvents := replay.EventsForWatch(watch.Request)
events := replay.EventsForWatch(watch.Request)
index := 0
for index < len(wantEvents) && (wantEvents[index].Revision < watch.Request.Revision || !wantEvents[index].Match(watch.Request)) {
for index < len(events) && (events[index].Revision < watch.Request.Revision || !events[index].Match(watch.Request)) {
index++
}
if index == len(wantEvents) {
if index == len(events) {
continue
}
gotFirstEvent := firstWatchEvent(watch)
firstEvent := firstWatchEvent(watch)
// If watch is resumable, first event it gets should the first event that happened after the requested revision.
if gotFirstEvent != nil && wantEvents[index] != gotFirstEvent.PersistedEvent {
// TODO(https://github.com/etcd-io/etcd/issues/18089): Remove when bug is fixed
if detected, _ := checkIssue18089(lg, report.ClientID, wantEvents, []model.PersistedEvent{gotFirstEvent.PersistedEvent}, replay); detected {
continue
}
lg.Error("Broke watch guarantee", zap.String("guarantee", "resumable"), zap.Int("client", report.ClientID), zap.Any("request", watch.Request), zap.Any("got-event", *gotFirstEvent), zap.Any("want-event", wantEvents[index]))
if firstEvent != nil && events[index] != firstEvent.PersistedEvent {
lg.Error("Broke watch guarantee", zap.String("guarantee", "resumable"), zap.Int("client", report.ClientID), zap.Any("request", watch.Request), zap.Any("got-event", *firstEvent), zap.Any("want-event", events[index]))
err = errBrokeResumable
}
}
Expand Down Expand Up @@ -341,41 +332,3 @@ func firstWatchEvent(op model.WatchOperation) *model.WatchEvent {
}
return nil
}

func checkIssue18089(lg *zap.Logger, clientID int, want, got []model.PersistedEvent, replay *model.EtcdReplay) (bool, []model.PersistedEvent) {
type keyRevision struct {
Key string
Revision int64
}
gotKeyRevision := map[keyRevision]struct{}{}
for _, event := range got {
gotKeyRevision[keyRevision{
Key: event.Key,
Revision: event.Revision,
}] = struct{}{}
}
newWant := []model.PersistedEvent{}
issueDetected := false
for _, event := range want {
_, found := gotKeyRevision[keyRevision{
Key: event.Key,
Revision: event.Revision,
}]
if !found && event.Type == model.DeleteOperation && matchingCompaction(event.Revision, replay) {
issueDetected = true
lg.Info("Detected issue 18089 still present, missing delete watch event for a compacted revision", zap.Int("client", clientID), zap.Any("missing-event", event))
continue
}
newWant = append(newWant, event)
}
return issueDetected, newWant
}

func matchingCompaction(revision int64, replay *model.EtcdReplay) bool {
for _, req := range replay.Requests {
if req.Type == model.Compact && req.Compact.Revision == revision {
return true
}
}
return false
}
Loading