@@ -190,44 +190,6 @@ func TestBSBProducerFnGetLedgerError(t *testing.T) {
190
190
mockDataStore .AssertExpectations (t )
191
191
}
192
192
193
- func TestBSBProducerCallerCancelsCtx (t * testing.T ) {
194
- ctx , cancel := context .WithCancel (context .Background ())
195
- pubConfig := PublisherConfig {
196
- DataStoreConfig : datastore.DataStoreConfig {},
197
- BufferedStorageConfig : DefaultBufferedStorageBackendConfig (1 ),
198
- }
199
-
200
- pubConfig .BufferedStorageConfig .NumWorkers = 1
201
-
202
- // the buffering runs async, test needs to stub datastore methods for potential invocation,
203
- // but is race, since test also cancels the backend context which started the buffer,
204
- // so, not deterministic, no assert on these.
205
- mockDataStore := new (datastore.MockDataStore )
206
- mockDataStore .On ("GetSchema" ).Return (datastore.DataStoreSchema {
207
- LedgersPerFile : 1 ,
208
- FilesPerPartition : 1 ,
209
- })
210
-
211
- mockDataStore .On ("GetFile" , mock .Anything , "FFFFFFFD--2.xdr.zstd" ).
212
- Return (makeSingleLCMBatch (2 ), nil )
213
- // this second attempt needs to be mocked, ledger buffer queues this 'next' sequence task automatically
214
- // in getFromLedgerQueue after it receives "FFFFFFFD--2.xdr.zstd", the ctx is not checked then or in
215
- // the async worker routine that receives the task.
216
- mockDataStore .On ("GetFile" , mock .Anything , "FFFFFFFC--3.xdr.zstd" ).Return (makeSingleLCMBatch (3 ), nil )
217
-
218
- appCallback := func (lcm xdr.LedgerCloseMeta ) error {
219
- cancel ()
220
- return nil
221
- }
222
-
223
- datastoreFactory = func (_ context.Context , _ datastore.DataStoreConfig ) (datastore.DataStore , error ) {
224
- return mockDataStore , nil
225
- }
226
- assert .ErrorIs (t ,
227
- ApplyLedgerMetadata (ledgerbackend .BoundedRange (uint32 (2 ), uint32 (3 )), pubConfig , ctx , appCallback ),
228
- context .Canceled )
229
- }
230
-
231
193
func TestBSBProducerFnCallbackError (t * testing.T ) {
232
194
ctx := context .Background ()
233
195
pubConfig := PublisherConfig {
0 commit comments