bson/testdata/retryable-writes/unified/client-bulkWrite-clientErrors.yml
2025-03-17 20:58:26 +01:00

174 lines
5.2 KiB
YAML

description: "client bulkWrite retryable writes with client errors"
schemaVersion: "1.21"
runOnRequirements:
- minServerVersion: "8.0"
topologies:
- replicaset
- sharded
- load-balanced
serverless: forbid
createEntities:
- client:
id: &client0 client0
observeEvents: [ commandStartedEvent ]
useMultipleMongoses: false
- database:
id: &database0 database0
client: *client0
databaseName: &database0Name retryable-writes-tests
- collection:
id: &collection0 collection0
database: *database0
collectionName: &collection0Name coll0
initialData:
- collectionName: *collection0Name
databaseName: *database0Name
documents:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
_yamlAnchors:
namespace: &namespace "retryable-writes-tests.coll0"
tests:
- description: "client bulkWrite with one network error succeeds after retry"
operations:
- object: testRunner
name: failPoint
arguments:
client: *client0
failPoint:
configureFailPoint: failCommand
mode:
times: 1
data:
failCommands: [ bulkWrite ]
closeConnection: true
- object: *client0
name: clientBulkWrite
arguments:
models:
- insertOne:
namespace: *namespace
document: { _id: 4, x: 44 }
verboseResults: true
expectResult:
insertedCount: 1
upsertedCount: 0
matchedCount: 0
modifiedCount: 0
deletedCount: 0
insertResults:
0:
insertedId: 4
updateResults: {}
deleteResults: {}
expectEvents:
- client: *client0
events:
- commandStartedEvent:
commandName: bulkWrite
databaseName: admin
command:
bulkWrite: 1
errorsOnly: false
ordered: true
ops:
- insert: 0
document: { _id: 4, x: 44 }
nsInfo:
- ns: *namespace
# An implicit session is included with the transaction number:
lsid: { "$$exists": true }
txnNumber: { "$$exists": true }
- commandStartedEvent:
commandName: bulkWrite
databaseName: admin
command:
bulkWrite: 1
errorsOnly: false
ordered: true
ops:
- insert: 0
document: { _id: 4, x: 44 }
nsInfo:
- ns: *namespace
# An implicit session is included with the transaction number:
lsid: { "$$exists": true }
txnNumber: { "$$exists": true }
outcome:
- collectionName: *collection0Name
databaseName: *database0Name
documents:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
- { _id: 4, x: 44 }
- description: "client bulkWrite with two network errors fails after retry"
operations:
- object: testRunner
name: failPoint
arguments:
client: *client0
failPoint:
configureFailPoint: failCommand
mode:
times: 2
data:
failCommands: [ bulkWrite ]
closeConnection: true
- object: *client0
name: clientBulkWrite
arguments:
models:
- insertOne:
namespace: *namespace
document: { _id: 4, x: 44 }
verboseResults: true
expectError:
isClientError: true
errorLabelsContain: ["RetryableWriteError"] # Error label added by driver.
expectEvents:
- client: *client0
events:
- commandStartedEvent:
commandName: bulkWrite
databaseName: admin
command:
bulkWrite: 1
errorsOnly: false
ordered: true
ops:
- insert: 0
document: { _id: 4, x: 44 }
nsInfo:
- ns: *namespace
# An implicit session is included with the transaction number:
lsid: { "$$exists": true }
txnNumber: { "$$exists": true }
- commandStartedEvent:
commandName: bulkWrite
databaseName: admin
command:
bulkWrite: 1
errorsOnly: false
ordered: true
ops:
- insert: 0
document: { _id: 4, x: 44 }
nsInfo:
- ns: *namespace
# An implicit session is included with the transaction number:
lsid: { "$$exists": true }
txnNumber: { "$$exists": true }
outcome:
- collectionName: *collection0Name
databaseName: *database0Name
documents:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }