📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-07-12 04:44:54
📂
/ (Root)
/
opt
/
alt
/
tests
/
alt-php80-pecl-mongodb_1.18.1-1.el8
/
tests
📍 /opt/alt/tests/alt-php80-pecl-mongodb_1.18.1-1.el8/tests
🔄 Refresh
✏️
Editing: manager-ctor-disableClientPersistence-009.phpt
Read Only
--TEST-- MongoDB\Driver\Manager with disableClientPersistence=true referenced by CommandSucceededEvent --SKIPIF-- <?php require __DIR__ . "/../utils/basic-skipif.inc"; ?> <?php skip_if_not_live(); ?> --FILE-- <?php require_once __DIR__ . "/../utils/basic.inc"; class MySubscriber implements MongoDB\Driver\Monitoring\CommandSubscriber { private $events = []; public function commandStarted(MongoDB\Driver\Monitoring\CommandStartedEvent $event): void { } public function commandSucceeded(MongoDB\Driver\Monitoring\CommandSucceededEvent $event): void { printf("Command succeeded: %s\n", $event->getCommandName()); $this->events[] = $event; } public function commandFailed(MongoDB\Driver\Monitoring\CommandFailedEvent $event): void { } } $subscriber = new MySubscriber; ini_set('mongodb.debug', 'stderr'); $manager = create_test_manager(URI, [], ['disableClientPersistence' => true]); ini_set('mongodb.debug', ''); MongoDB\Driver\Monitoring\addSubscriber($subscriber); $command = new MongoDB\Driver\Command(['ping' => 1]); $manager->executeCommand(DATABASE_NAME, $command); /* Remove the subscriber to ensure that the extension does not hold an internal * reference to it. This guarantees that the event object (and final Manager * reference) will be freed when the subscriber is later unset. */ MongoDB\Driver\Monitoring\removeSubscriber($subscriber); echo "Unsetting manager\n"; ini_set('mongodb.debug', 'stderr'); unset($manager); ini_set('mongodb.debug', ''); echo "Unsetting subscriber\n"; ini_set('mongodb.debug', 'stderr'); unset($subscriber); ini_set('mongodb.debug', ''); ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- %A [%s] PHONGO: DEBUG > Created client with hash: %s [%s] PHONGO: DEBUG > Stored non-persistent client Command succeeded: ping Unsetting manager Unsetting subscriber%A [%s] PHONGO: DEBUG > Destroying non-persistent client for Manager%A ===DONE===
💾 Save Changes
❌ Cancel