bson/testdata/server-discovery-and-monitoring/unified/auth-network-timeout-error.yml
2025-03-17 20:58:26 +01:00

139 lines
3.8 KiB
YAML

---
description: auth-network-timeout-error
schemaVersion: "1.4"
runOnRequirements:
# failCommand appName requirements
- minServerVersion: "4.4"
auth: true
serverless: forbid
topologies: [ single, replicaset, sharded ]
createEntities:
- client:
id: &setupClient setupClient
useMultipleMongoses: false
initialData: &initialData
- collectionName: &collectionName auth-network-timeout-error
databaseName: &databaseName sdam-tests
documents:
- _id: 1
- _id: 2
tests:
- description: Reset server and pool after network timeout error during authentication
operations:
- name: failPoint
object: testRunner
arguments:
client: *setupClient
failPoint:
configureFailPoint: failCommand
mode:
times: 1
data:
failCommands:
- saslContinue
blockConnection: true
blockTimeMS: 500
appName: authNetworkTimeoutErrorTest
- name: createEntities
object: testRunner
arguments:
entities:
- client:
id: &client client
useMultipleMongoses: false
observeEvents:
- commandStartedEvent
- serverDescriptionChangedEvent
- poolClearedEvent
uriOptions:
retryWrites: false
appname: authNetworkTimeoutErrorTest
# Set a short connect/socket timeout to ensure the fail point causes the
# connection establishment to timeout.
connectTimeoutMS: 250
socketTimeoutMS: 250
- database:
id: &database database
client: *client
databaseName: *databaseName
- collection:
id: &collection collection
database: *database
collectionName: *collectionName
- name: insertMany
object: *collection
arguments:
documents:
- _id: 3
- _id: 4
expectError:
isError: true
- name: waitForEvent
object: testRunner
arguments:
client: *client
event:
serverDescriptionChangedEvent:
newDescription:
type: Unknown
count: 1
- name: waitForEvent
object: testRunner
arguments:
client: *client
event:
poolClearedEvent: {}
count: 1
# Perform another operation to ensure the node is rediscovered.
- name: insertMany
object: *collection
arguments:
documents:
- _id: 5
- _id: 6
# Assert the server was marked Unknown and pool was cleared exactly once.
- name: assertEventCount
object: testRunner
arguments:
client: *client
event:
serverDescriptionChangedEvent:
newDescription:
type: Unknown
count: 1
- name: assertEventCount
object: testRunner
arguments:
client: *client
event:
poolClearedEvent: {}
count: 1
expectEvents:
# Note: The first insert command is never attempted because connection
# checkout fails.
- client: *client
eventType: command
events:
- commandStartedEvent:
command:
insert: auth-network-timeout-error
documents:
- _id: 5
- _id: 6
commandName: insert
databaseName: *databaseName
outcome:
- collectionName: *collectionName
databaseName: *databaseName
documents:
- _id: 1
- _id: 2
- _id: 5
- _id: 6