bson/testdata/unified-test-format/valid-pass/expectedEventsForClient-ignoreExtraEvents.json
2025-03-17 20:58:26 +01:00

152 lines
3.1 KiB
JSON

{
"description": "expectedEventsForClient-ignoreExtraEvents",
"schemaVersion": "1.7",
"createEntities": [
{
"client": {
"id": "client0",
"useMultipleMongoses": true,
"observeEvents": [
"commandStartedEvent"
]
}
},
{
"database": {
"id": "database0",
"client": "client0",
"databaseName": "database0Name"
}
},
{
"collection": {
"id": "collection0",
"database": "database0",
"collectionName": "coll0"
}
}
],
"initialData": [
{
"collectionName": "coll0",
"databaseName": "database0Name",
"documents": []
}
],
"tests": [
{
"description": "ignoreExtraEvents can be set to false",
"operations": [
{
"name": "insertOne",
"object": "collection0",
"arguments": {
"document": {
"_id": 1
}
}
}
],
"expectEvents": [
{
"client": "client0",
"ignoreExtraEvents": false,
"events": [
{
"commandStartedEvent": {
"command": {
"insert": "coll0",
"documents": [
{
"_id": 1
}
]
},
"commandName": "insert"
}
}
]
}
]
},
{
"description": "ignoreExtraEvents can be set to true",
"operations": [
{
"name": "insertOne",
"object": "collection0",
"arguments": {
"document": {
"_id": 2
}
}
},
{
"name": "insertOne",
"object": "collection0",
"arguments": {
"document": {
"_id": 3
}
}
}
],
"expectEvents": [
{
"client": "client0",
"ignoreExtraEvents": true,
"events": [
{
"commandStartedEvent": {
"command": {
"insert": "coll0",
"documents": [
{
"_id": 2
}
]
},
"commandName": "insert"
}
}
]
}
]
},
{
"description": "ignoreExtraEvents defaults to false if unset",
"operations": [
{
"name": "insertOne",
"object": "collection0",
"arguments": {
"document": {
"_id": 4
}
}
}
],
"expectEvents": [
{
"client": "client0",
"events": [
{
"commandStartedEvent": {
"command": {
"insert": "coll0",
"documents": [
{
"_id": 4
}
]
},
"commandName": "insert"
}
}
]
}
]
}
]
}