bson/testdata/index-management/dropSearchIndex.yml
2025-03-17 20:58:26 +01:00

44 lines
1.3 KiB
YAML

description: "dropSearchIndex"
schemaVersion: "1.4"
createEntities:
- client:
id: &client0 client0
useMultipleMongoses: false
observeEvents:
- commandStartedEvent
- database:
id: &database0 database0
client: *client0
databaseName: *database0
- collection:
id: &collection0 collection0
database: *database0
collectionName: *collection0
runOnRequirements:
- minServerVersion: "7.0.0"
topologies: [ replicaset, load-balanced, sharded ]
serverless: forbid
tests:
- description: "sends the correct command"
operations:
- name: dropSearchIndex
object: *collection0
arguments:
name: &indexName 'test index'
expectError:
# This test always errors in a non-Atlas environment. The test functions as a unit test by asserting
# that the driver constructs and sends the correct command.
# The expected error message was changed in SERVER-83003. Check for the substring "Atlas" shared by both error messages.
isError: true
errorContains: Atlas
expectEvents:
- client: *client0
events:
- commandStartedEvent:
command:
dropSearchIndex: *collection0
name: *indexName
$db: *database0