bson/testdata/command-monitoring/logging/no-handshake-messages.json
2025-03-17 20:58:26 +01:00

95 lines
2.3 KiB
JSON

{
"description": "no-handshake-command-logs",
"schemaVersion": "1.13",
"tests": [
{
"description": "Handshake commands should not generate log messages",
"operations": [
{
"name": "createEntities",
"object": "testRunner",
"arguments": {
"entities": [
{
"client": {
"id": "client",
"observeLogMessages": {
"command": "debug"
},
"observeEvents": [
"connectionCreatedEvent",
"connectionReadyEvent"
]
}
},
{
"database": {
"id": "database",
"client": "client",
"databaseName": "logging-tests"
}
}
]
}
},
{
"name": "runCommand",
"object": "database",
"arguments": {
"command": {
"ping": 1
},
"commandName": "ping"
}
},
{
"name": "waitForEvent",
"object": "testRunner",
"arguments": {
"client": "client",
"event": {
"connectionCreatedEvent": {}
},
"count": 1
}
},
{
"name": "waitForEvent",
"object": "testRunner",
"arguments": {
"client": "client",
"event": {
"connectionReadyEvent": {}
},
"count": 1
}
}
],
"expectLogMessages": [
{
"client": "client",
"messages": [
{
"level": "debug",
"component": "command",
"data": {
"message": "Command started",
"databaseName": "logging-tests",
"commandName": "ping"
}
},
{
"level": "debug",
"component": "command",
"data": {
"message": "Command succeeded",
"commandName": "ping"
}
}
]
}
]
}
]
}