1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
--TEST--
Test for PHP-1156: Zero values for timeouts should use default_socket_timeout (streams)
--SKIPIF--
<?php require_once "tests/utils/standalone.inc" ?>
<?php if (!version_compare(phpversion(), "5.3", '>=')) echo "skip >= PHP 5.3 needed\n"; ?>
<?php if (!MONGO_STREAMS) { echo "skip This test requires streams support"; } ?>
--INI--
default_socket_timeout=20
--FILE--
<?php
require_once "tests/utils/server.inc";
printLogs(MongoLog::CON, MongoLog::FINE, "/timeout/");
/* The absence of timeout swaps for connection operations is evidence that
* default_socket_timeout is used when connectTimeoutMS is zero.
*/
$host = MongoShellServer::getStandaloneInfo();
$mc = new MongoClient($host, array('connectTimeoutMS' => 0, 'socketTimeoutMS' => 0));
echo "Connected\n";
echo "\nDropping collection\n";
$collection = $mc->selectCollection(dbname(), collname(__FILE__));
$collection->drop();
echo "\nExecuting find() with default timeout\n";
$cursor = $collection->find();
iterator_to_array($cursor);
// Timeout swaps will infer that default_socket_timeout is used by default
echo "\nExecuting find() with MongoCursor::timeout(): 4321\n";
$cursor = $collection->find();
$cursor->timeout(4321);
iterator_to_array($cursor);
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
Connecting to tcp://%s:%d (%s:%d;-;.;%d) without connection timeout (default_socket_timeout will be used)
No timeout changes for %s:%d;-;.;%d
No timeout changes for %s:%d;-;.;%d
No timeout changes for %s:%d;-;.;%d
No timeout changes for %s:%d;-;.;%d
No timeout changes for %s:%d;-;.;%d
No timeout changes for %s:%d;-;.;%d
Connected
Dropping collection
Initializing cursor timeout to 0 (from connection options)
No timeout changes for %s:%d;-;.;%d
No timeout changes for %s:%d;-;.;%d
Executing find() with default timeout
Initializing cursor timeout to 0 (from connection options)
No timeout changes for %s:%d;-;.;%d
No timeout changes for %s:%d;-;.;%d
Executing find() with MongoCursor::timeout(): 4321
Initializing cursor timeout to 0 (from connection options)
Setting the stream timeout to 4.321000
Stream timeout will be reverted to default_socket_timeout (20)
Now setting stream timeout back to 20.000000
Setting the stream timeout to 4.321000
Stream timeout will be reverted to default_socket_timeout (20)
Now setting stream timeout back to 20.000000
===DONE===
|