-
Notifications
You must be signed in to change notification settings - Fork 1.8k
fix(NODE-3144): pool clear event ordering and retryability tests #3407
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
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
a85149e
fix: pool clear event ordering
dariakp 27986a4
refactor: remove todo
dariakp dd44dc6
test: add retryable write pool clear prose test
dariakp 3551eee
test: add retryable reads prose test
dariakp bea645a
test: update topology requirements
dariakp efea215
test: standardize retryable writes prose tests
dariakp 25110c5
test: loadbalanced topology not applicable to retryable reads pool cl…
dariakp a79a156
test: correct failpoint min server version
dariakp 0aee9e2
test: clean up before logic
dariakp 310f87d
test: clean up assertions
dariakp a0434d4
test: fix array initialization
dariakp bdf3cd7
test: fix expected event name
dariakp 52d9447
test: fix property access
dariakp 746adfa
test: ensure single mongos
dariakp 10f4293
test: correctly wrap options
dariakp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
140 changes: 140 additions & 0 deletions
140
test/integration/retryable-reads/retryable_reads.spec.prose.test.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
/* eslint-disable @typescript-eslint/no-non-null-assertion */ | ||
import { expect } from 'chai'; | ||
|
||
import { Collection, MongoClient } from '../../../src'; | ||
|
||
describe('Retryable Reads Spec Prose', () => { | ||
let client: MongoClient, failPointName; | ||
|
||
afterEach(async () => { | ||
try { | ||
if (failPointName) { | ||
await client.db('admin').command({ configureFailPoint: failPointName, mode: 'off' }); | ||
} | ||
} finally { | ||
failPointName = undefined; | ||
await client?.close(); | ||
} | ||
}); | ||
|
||
describe('PoolClearedError Retryability Test', () => { | ||
// This test will be used to ensure drivers properly retry after encountering PoolClearedErrors. | ||
// It MUST be implemented by any driver that implements the CMAP specification. | ||
// This test requires MongoDB 4.2.9+ for blockConnection support in the failpoint. | ||
|
||
let cmapEvents: Array<{ name: string; event: Record<string, any> }>; | ||
let commandStartedEvents: Array<Record<string, any>>; | ||
let testCollection: Collection; | ||
beforeEach(async function () { | ||
// 1. Create a client with maxPoolSize=1 and retryReads=true. | ||
client = this.configuration.newClient( | ||
this.configuration.url({ | ||
useMultipleMongoses: false // If testing against a sharded deployment, be sure to connect to only a single mongos. | ||
}), | ||
{ maxPoolSize: 1, retryReads: true, monitorCommands: true } | ||
); | ||
|
||
console.log(client.options); | ||
|
||
testCollection = client.db('retryable-reads-prose').collection('pool-clear-retry'); | ||
await testCollection.drop().catch(() => null); | ||
await testCollection.insertMany([{ test: 1 }, { test: 2 }]); | ||
|
||
// 2. Enable the following failpoint: | ||
// NOTE: "9. Disable the failpoint" is done in afterEach | ||
failPointName = 'failCommand'; | ||
const failPoint = await client.db('admin').command({ | ||
configureFailPoint: failPointName, | ||
mode: { times: 1 }, | ||
data: { | ||
failCommands: ['find'], | ||
errorCode: 91, | ||
blockConnection: true, | ||
blockTimeMS: 1000 | ||
} | ||
}); | ||
|
||
expect(failPoint).to.have.property('ok', 1); | ||
|
||
cmapEvents = []; | ||
commandStartedEvents = []; | ||
for (const observedEvent of [ | ||
'connectionCheckOutStarted', | ||
'connectionCheckedOut', | ||
'connectionCheckOutFailed', | ||
'connectionPoolCleared' | ||
]) { | ||
client.on(observedEvent, ev => { | ||
cmapEvents.push({ name: observedEvent, event: ev }); | ||
}); | ||
} | ||
|
||
client.on('commandStarted', ev => { | ||
commandStartedEvents.push(ev); | ||
}); | ||
}); | ||
|
||
it('should emit events in the expected sequence', { | ||
metadata: { requires: { mongodb: '>=4.2.9', topology: '!load-balanced' } }, | ||
test: async function () { | ||
// 3. Start two threads and attempt to perform a findOne simultaneously on both. | ||
const results = await Promise.all([ | ||
testCollection.findOne({ test: 1 }), | ||
testCollection.findOne({ test: 2 }) | ||
]); | ||
|
||
client.removeAllListeners(); | ||
// 4. Verify that both findOne attempts succeed. | ||
expect(results[0]).to.have.property('test', 1); | ||
expect(results[1]).to.have.property('test', 2); | ||
|
||
// NOTE: For the subsequent checks, we rely on the exact sequence of ALL events | ||
// for ease of readability; however, only the relative order matters for | ||
// the purposes of this test, so if this ever becomes an issue, the test | ||
// can be refactored to assert on relative index values instead | ||
|
||
// 5. Via CMAP monitoring, assert that the first check out succeeds. | ||
durran marked this conversation as resolved.
Show resolved
Hide resolved
|
||
expect(cmapEvents.shift()).to.have.property( | ||
'name', | ||
'connectionCheckOutStarted', | ||
'expected 1) checkout 1 to start' | ||
); | ||
expect(cmapEvents.shift()).to.have.property( | ||
'name', | ||
'connectionCheckOutStarted', | ||
'expected 2) checkout 2 to start' | ||
); | ||
expect(cmapEvents.shift()).to.have.property( | ||
'name', | ||
'connectionCheckedOut', | ||
'expected 3) first checkout to succeed' | ||
); | ||
|
||
// 6. Via CMAP monitoring, assert that a PoolClearedEvent is then emitted. | ||
expect(cmapEvents.shift()).to.have.property( | ||
'name', | ||
'connectionPoolCleared', | ||
'expected 4) pool to clear' | ||
); | ||
|
||
// 7. Via CMAP monitoring, assert that the second check out then fails due to a connection error. | ||
const nextEvent = cmapEvents.shift(); | ||
expect(nextEvent).to.have.property( | ||
'name', | ||
'connectionCheckOutFailed', | ||
'expected 5) checkout 2 to fail' | ||
); | ||
expect(nextEvent!.event).to.have.property('reason', 'connectionError'); | ||
|
||
// 8. Via Command Monitoring, assert that exactly three find CommandStartedEvents were observed in total. | ||
const observedFindCommandStartedEvents = commandStartedEvents.filter( | ||
({ commandName }) => commandName === 'find' | ||
); | ||
expect(observedFindCommandStartedEvents).to.have.lengthOf( | ||
3, | ||
'expected 3 find command started events' | ||
); | ||
} | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.