PHP Classes

File: vendor/mongodb/mongodb/tests/SpecTests/retryable-reads/changeStreams-db.watch.json

Recommend this page to a friend!
  Classes of walid laggoune   MongoDB Queue PHP Query Execute   vendor/mongodb/mongodb/tests/SpecTests/retryable-reads/changeStreams-db.watch.json   Download  
File: vendor/mongodb/mongodb/tests/SpecTests/retryable-reads/changeStreams-db.watch.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: MongoDB Queue PHP Query Execute
Query and execute multiple queries using MongoDB
Author: By
Last change:
Date: 4 years ago
Size: 4,104 bytes
 

Contents

Class file image Download
{ "runOn": [ { "minServerVersion": "4.0", "topology": [ "replicaset" ] }, { "minServerVersion": "4.1.7", "topology": [ "sharded" ] } ], "database_name": "retryable-reads-tests", "collection_name": "coll", "data": [ { "_id": 1, "x": 11 } ], "tests": [ { "description": "db.watch succeeds on first attempt", "operations": [ { "name": "watch", "object": "database" } ], "expectations": [ { "command_started_event": { "command": { "aggregate": 1, "cursor": {}, "pipeline": [ { "$changeStream": {} } ] }, "database_name": "retryable-reads-tests" } } ] }, { "description": "db.watch succeeds on second attempt", "failPoint": { "configureFailPoint": "failCommand", "mode": { "times": 1 }, "data": { "failCommands": [ "aggregate" ], "closeConnection": true } }, "operations": [ { "name": "watch", "object": "database" } ], "expectations": [ { "command_started_event": { "command": { "aggregate": 1, "cursor": {}, "pipeline": [ { "$changeStream": {} } ] }, "database_name": "retryable-reads-tests" } }, { "command_started_event": { "command": { "aggregate": 1, "cursor": {}, "pipeline": [ { "$changeStream": {} } ] }, "database_name": "retryable-reads-tests" } } ] }, { "description": "db.watch fails on first attempt", "clientOptions": { "retryReads": false }, "failPoint": { "configureFailPoint": "failCommand", "mode": { "times": 1 }, "data": { "failCommands": [ "aggregate" ], "closeConnection": true } }, "operations": [ { "name": "watch", "object": "database", "error": true } ], "expectations": [ { "command_started_event": { "command": { "aggregate": 1, "cursor": {}, "pipeline": [ { "$changeStream": {} } ] }, "database_name": "retryable-reads-tests" } } ] }, { "description": "db.watch fails on second attempt", "failPoint": { "configureFailPoint": "failCommand", "mode": { "times": 2 }, "data": { "failCommands": [ "aggregate" ], "closeConnection": true } }, "operations": [ { "name": "watch", "object": "database", "error": true } ], "expectations": [ { "command_started_event": { "command": { "aggregate": 1, "cursor": {}, "pipeline": [ { "$changeStream": {} } ] }, "database_name": "retryable-reads-tests" } }, { "command_started_event": { "command": { "aggregate": 1, "cursor": {}, "pipeline": [ { "$changeStream": {} } ] }, "database_name": "retryable-reads-tests" } } ] } ] }