diff --git a/source/connection-monitoring-and-pooling/tests/cmap-format/pool-clear-interrupt-immediately.json b/source/connection-monitoring-and-pooling/tests/cmap-format/pool-clear-interrupt-immediately.json deleted file mode 100644 index 54e2566ede..0000000000 --- a/source/connection-monitoring-and-pooling/tests/cmap-format/pool-clear-interrupt-immediately.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "version": 1, - "style": "unit", - "description": "Connections MUST be interrupted as soon as possible (interruptInUseConnections=true)", - "poolOptions": { - "backgroundThreadIntervalMS": 10000 - }, - "operations": [ - { - "name": "ready" - }, - { - "name": "checkOut" - }, - { - "name": "checkOut", - "label": "conn" - }, - { - "name": "clear", - "interruptInUseConnections": true - }, - { - "name": "waitForEvent", - "event": "ConnectionPoolCleared", - "count": 1, - "timeout": 1000 - }, - { - "name": "waitForEvent", - "event": "ConnectionClosed", - "count": 2, - "timeout": 1000 - }, - { - "name": "close" - } - ], - "events": [ - { - "type": "ConnectionCheckedOut", - "connectionId": 1, - "address": 42 - }, - { - "type": "ConnectionCheckedOut", - "connectionId": 2, - "address": 42 - }, - { - "type": "ConnectionPoolCleared", - "interruptInUseConnections": true - }, - { - "type": "ConnectionClosed", - "reason": "stale", - "address": 42 - }, - { - "type": "ConnectionClosed", - "reason": "stale", - "address": 42 - }, - { - "type": "ConnectionPoolClosed", - "address": 42 - } - ], - "ignore": [ - "ConnectionCreated", - "ConnectionPoolReady", - "ConnectionReady", - "ConnectionCheckOutStarted", - "ConnectionPoolCreated", - "ConnectionCheckedIn" - ] -} diff --git a/source/connection-monitoring-and-pooling/tests/cmap-format/pool-clear-interrupt-immediately.yml b/source/connection-monitoring-and-pooling/tests/cmap-format/pool-clear-interrupt-immediately.yml deleted file mode 100644 index 67d9739aa9..0000000000 --- a/source/connection-monitoring-and-pooling/tests/cmap-format/pool-clear-interrupt-immediately.yml +++ /dev/null @@ -1,46 +0,0 @@ -version: 1 -style: unit -description: Connections MUST be interrupted as soon as possible (interruptInUseConnections=true) -poolOptions: - # ensure it's not involved by default - backgroundThreadIntervalMS: 10000 -operations: - - name: ready - - name: checkOut - - name: checkOut - label: conn - - name: clear - interruptInUseConnections: true - - name: waitForEvent - event: ConnectionPoolCleared - count: 1 - timeout: 1000 - - name: waitForEvent - event: ConnectionClosed - count: 2 - timeout: 1000 - - name: close -events: - - type: ConnectionCheckedOut - connectionId: 1 - address: 42 - - type: ConnectionCheckedOut - connectionId: 2 - address: 42 - - type: ConnectionPoolCleared - interruptInUseConnections: true - - type: ConnectionClosed - reason: stale - address: 42 - - type: ConnectionClosed - reason: stale - address: 42 - - type: ConnectionPoolClosed - address: 42 -ignore: - - ConnectionCreated - - ConnectionPoolReady - - ConnectionReady - - ConnectionCheckOutStarted - - ConnectionPoolCreated - - ConnectionCheckedIn