Files
mongo-php-driver/tests/standalone/bug0655.phpt
Jeremy Mikola 0e45605fa2 PHPC-1937: Manager::selectServer() defaults to primary read preference (#1267)
* Use .invalid TLD for invalid host in tests

See: https://datatracker.ietf.org/doc/html/rfc2606

* PHPC-1937: Manager::selectServer() defaults to primary read preference
2021-10-26 13:07:21 -04:00

32 lines
1.1 KiB
PHP

--TEST--
PHPC-655: Use case insensitive parsing for Manager connectTimeoutMS array option
--FILE--
<?php
require_once __DIR__ . "/../utils/basic.inc";
$command = new MongoDB\Driver\Command(['ping' => 1]);
// Invalid host cannot be resolved
$manager = create_test_manager('mongodb://example.invalid:27017', ['connectTimeoutMS' => 1]);
echo throws(function() use ($manager, $command) {
$manager->executeCommand(DATABASE_NAME, $command);
}, 'MongoDB\Driver\Exception\ConnectionTimeoutException'), "\n";
// Valid host refuses connection
$manager = create_test_manager('mongodb://localhost:54321', ['CONNECTTIMEOUTMS' => 1]);
echo throws(function() use ($manager, $command) {
$manager->executeCommand(DATABASE_NAME, $command);
}, 'MongoDB\Driver\Exception\ConnectionTimeoutException'), "\n";
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
OK: Got MongoDB\Driver\Exception\ConnectionTimeoutException
No suitable servers found (`serverSelectionTryOnce` set): %s
OK: Got MongoDB\Driver\Exception\ConnectionTimeoutException
No suitable servers found (`serverSelectionTryOnce` set): %s
===DONE===