Skip to content
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

test(DRIVERS-2468): add unified test for ok 1 #1367

Merged
merged 1 commit into from Jan 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,155 @@
{
"description": "writeConcernError",
"schemaVersion": "1.13",
"runOnRequirements": [
{
"minServerVersion": "4.1.0",
"topologies": [
"replicaset"
],
"serverless": "forbid"
}
],
"createEntities": [
{
"client": {
"id": "client",
"observeEvents": [
"commandStartedEvent",
"commandSucceededEvent",
"commandFailedEvent"
]
}
},
{
"database": {
"id": "database",
"client": "client",
"databaseName": "command-monitoring-tests"
}
},
{
"collection": {
"id": "collection",
"database": "database",
"collectionName": "test"
}
}
],
"initialData": [
{
"collectionName": "test",
"databaseName": "command-monitoring-tests",
"documents": [
{
"_id": 1,
"x": 11
}
]
}
],
"tests": [
{
"description": "A retryable write with write concern errors publishes success event",
"operations": [
{
"name": "failPoint",
"object": "testRunner",
"arguments": {
"client": "client",
"failPoint": {
"configureFailPoint": "failCommand",
"mode": {
"times": 1
},
"data": {
"failCommands": [
"insert"
],
"writeConcernError": {
"code": 91,
"errorLabels": [
"RetryableWriteError"
]
}
}
}
}
},
{
"name": "insertOne",
"object": "collection",
"arguments": {
"document": {
"_id": 2,
"x": 22
}
}
}
],
"expectEvents": [
{
"client": "client",
"events": [
{
"commandStartedEvent": {
"command": {
"insert": "test",
"documents": [
{
"_id": 2,
"x": 22
}
],
"ordered": true
},
"commandName": "insert",
"databaseName": "command-monitoring-tests"
}
},
{
"commandSucceededEvent": {
"reply": {
"ok": 1,
"n": 1,
"writeConcernError": {
"code": 91,
"errorLabels": [
"RetryableWriteError"
]
}
},
"commandName": "insert"
}
},
{
"commandStartedEvent": {
"command": {
"insert": "test",
"documents": [
{
"_id": 2,
"x": 22
}
],
"ordered": true
},
"commandName": "insert",
"databaseName": "command-monitoring-tests"
}
},
{
"commandSucceededEvent": {
"reply": {
"ok": 1,
"n": 1
},
"commandName": "insert"
}
}
]
}
]
}
]
}
@@ -0,0 +1,80 @@
description: "writeConcernError"
schemaVersion: "1.13"
runOnRequirements:
-
minServerVersion: 4.1.0
topologies:
- replicaset
serverless: "forbid"

createEntities:
- client:
id: &client client
observeEvents:
- commandStartedEvent
- commandSucceededEvent
- commandFailedEvent
- database:
id: &database database
client: *client
databaseName: &databaseName command-monitoring-tests
- collection:
id: &collection collection
database: *database
collectionName: &collectionName test

initialData:
- collectionName: *collectionName
databaseName: *databaseName
documents:
- { _id: 1, x: 11 }

tests:
- description: "A retryable write with write concern errors publishes success event"
operations:
- name: failPoint
object: testRunner
arguments:
client: *client
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: [ insert ]
writeConcernError:
code: 91 # ShutdownInProgress
errorLabels: [RetryableWriteError]
- name: insertOne
durran marked this conversation as resolved.
Show resolved Hide resolved
object: *collection
arguments:
document: { _id: 2, x: 22 }
expectEvents:
- client: *client
events:
- commandStartedEvent:
command:
insert: *collectionName
documents:
- { _id: 2, x: 22 }
ordered: true
commandName: insert
databaseName: *databaseName
- commandSucceededEvent:
durran marked this conversation as resolved.
Show resolved Hide resolved
reply:
ok: 1
n: 1
writeConcernError: { code: 91, errorLabels: [ "RetryableWriteError" ] }
commandName: insert
- commandStartedEvent:
command:
insert: *collectionName
documents:
- { _id: 2, x: 22 }
ordered: true
commandName: insert
databaseName: *databaseName
- commandSucceededEvent:
reply:
ok: 1
n: 1
commandName: insert