Skip to content

Commit

Permalink
Merge 8566bc9 into 7a1ff0e
Browse files Browse the repository at this point in the history
  • Loading branch information
QuangTung97 committed Apr 8, 2024
2 parents 7a1ff0e + 8566bc9 commit 6d60c2f
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 3 deletions.
10 changes: 7 additions & 3 deletions curator/fake_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -517,13 +517,17 @@ func (s *FakeZookeeper) Retry(clientID FakeClientID) {
getActionWithType[RetryInput](s, clientID, "Retry")

state := s.States[clientID]

state.ConnErr = false
for _, fn := range state.PendingEvents {
fn()
}
pendingEvents := state.PendingEvents
state.PendingEvents = nil

runner := s.Sessions[clientID]
runner.Retry()

for _, fn := range pendingEvents {
fn()
}
}

type fakeClient struct {
Expand Down
59 changes: 59 additions & 0 deletions curator/fake_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1326,3 +1326,62 @@ func TestFakeClient_Should_Not_Recv_Watch_After_Expired_For_ChildrenW(t *testing
"children-resp",
}, c.steps)
}

func TestFakeClient_Retry_Happens_Before_Watch_Handlers(t *testing.T) {
c := newFakeClientTest()

callback := func(client Client) {
client.Create("/worker", nil, zk.FlagEphemeral, func(resp zk.CreateResponse, err error) {
})
}

var getFunc func(sess *Session)
getFunc = func(sess *Session) {
sess.Run(func(client Client) {
c.addStep("get-req")
client.Get("/hello", func(resp zk.GetResponse, err error) {
c.addStep("get-resp")
if stderrors.Is(err, zk.ErrConnectionClosed) {
sess.AddRetry(getFunc)
return
}
if err != nil {
panic(err)
}
})
})
}

NewFakeClientFactory(c.store, client2).Start(New(func(sess *Session) {
sess.Run(func(client Client) {
client.ChildrenW("/", func(resp zk.ChildrenResponse, err error) {
c.addStep("children-resp")
}, func(ev zk.Event) {
c.addStep("children-watch")
})
})

getFunc(sess)
}))

c.startCuratorClient1(func(sess *Session) {
sess.Run(callback)
})

c.store.Begin(client1)
c.store.Begin(client2)

c.store.ChildrenApply(client2)
c.store.ConnError(client2)

c.store.CreateApply(client1)
c.store.Retry(client2)

assert.Equal(t, []string{
"get-req",
"children-resp",
"get-resp",
"get-req",
"children-watch",
}, c.steps)
}

0 comments on commit 6d60c2f

Please sign in to comment.