Skip to content

Commit

Permalink
stellar#5412: triaging producer test for caller ctx cancel to be cons…
Browse files Browse the repository at this point in the history
…istent on ci runs
  • Loading branch information
sreuland committed Oct 8, 2024
1 parent 9d06613 commit dd0f2e9
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions ingest/cdp/producer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,11 +196,6 @@ func TestBSBProducerCallerCancelsCtx(t *testing.T) {
BufferedStorageConfig: DefaultBufferedStorageBackendConfig(1),
}

// prevent the ledgerbuffer from being eagerly async loaded initially up to
// buffer-size ledgers and the requested test range, forces new load attempt
// during GetLedger which is when ctx is checked, test asks for 3 ledger range
// since 2 ledgers are by default eagerly loaded.
pubConfig.BufferedStorageConfig.BufferSize = 1
pubConfig.BufferedStorageConfig.NumWorkers = 1

// the buffering runs async, test needs to stub datastore methods for potential invocation,
Expand All @@ -212,7 +207,11 @@ func TestBSBProducerCallerCancelsCtx(t *testing.T) {
FilesPerPartition: 1,
})

mockDataStore.On("GetFile", mock.Anything, "FFFFFFFD--2.xdr.zstd").Return(makeSingleLCMBatch(2), nil)
// artifically stall the ledgerbuffer worker so nothing new arriving on ledgerqueue
// context cancellation can be detected
mockDataStore.On("GetFile", mock.Anything, "FFFFFFFD--2.xdr.zstd").
WaitUntil(time.After(time.Second*1)).
Return(makeSingleLCMBatch(2), nil)
mockDataStore.On("GetFile", mock.Anything, "FFFFFFFC--3.xdr.zstd").Return(makeSingleLCMBatch(3), nil)

appCallback := func(lcm xdr.LedgerCloseMeta) error {
Expand All @@ -225,7 +224,7 @@ func TestBSBProducerCallerCancelsCtx(t *testing.T) {
return mockDataStore, nil
}
assert.ErrorIs(t,
ApplyLedgerMetadata(ledgerbackend.BoundedRange(uint32(2), uint32(4)), pubConfig, ctx, appCallback),
ApplyLedgerMetadata(ledgerbackend.BoundedRange(uint32(2), uint32(3)), pubConfig, ctx, appCallback),
context.Canceled)
}

Expand Down

0 comments on commit dd0f2e9

Please sign in to comment.