{ "description": "createSearchIndexes", "schemaVersion": "1.4", "createEntities": [ { "client": { "id": "client0", "useMultipleMongoses": false, "observeEvents": [ "commandStartedEvent" ] } }, { "database": { "id": "database0", "client": "client0", "databaseName": "database0" } }, { "collection": { "id": "collection0", "database": "database0", "collectionName": "collection0" } } ], "runOnRequirements": [ { "minServerVersion": "7.0.0", "topologies": [ "replicaset", "load-balanced", "sharded" ], "serverless": "forbid" } ], "tests": [ { "description": "empty index definition array", "operations": [ { "name": "createSearchIndexes", "object": "collection0", "arguments": { "models": [] }, "expectError": { "isError": true, "errorContains": "Atlas" } } ], "expectEvents": [ { "client": "client0", "events": [ { "commandStartedEvent": { "command": { "createSearchIndexes": "collection0", "indexes": [], "$db": "database0" } } } ] } ] }, { "description": "no name provided for an index definition", "operations": [ { "name": "createSearchIndexes", "object": "collection0", "arguments": { "models": [ { "definition": { "mappings": { "dynamic": true } } } ] }, "expectError": { "isError": true, "errorContains": "Atlas" } } ], "expectEvents": [ { "client": "client0", "events": [ { "commandStartedEvent": { "command": { "createSearchIndexes": "collection0", "indexes": [ { "definition": { "mappings": { "dynamic": true } } } ], "$db": "database0" } } } ] } ] }, { "description": "name provided for an index definition", "operations": [ { "name": "createSearchIndexes", "object": "collection0", "arguments": { "models": [ { "definition": { "mappings": { "dynamic": true } }, "name": "test index" } ] }, "expectError": { "isError": true, "errorContains": "Atlas" } } ], "expectEvents": [ { "client": "client0", "events": [ { "commandStartedEvent": { "command": { "createSearchIndexes": "collection0", "indexes": [ { "definition": { "mappings": { "dynamic": true } }, "name": "test index" } ], "$db": "database0" } } } ] } ] } ] }