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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
--TEST--
Test for PHP-1155: Don't swap timeout in php_mongo_io_stream_read() unnecessarily
--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"; } ?>
--FILE--
<?php
require_once "tests/utils/server.inc";
printLogs(MongoLog::CON, MongoLog::FINE, "/timeout/");
/* Since connectTimeoutMS defaults to 60000 (60 seconds) and socketTimeoutMS is
* applied as the default stream timeout, we should expect timeout swaps for
* each operation during the connection step.
*/
$host = MongoShellServer::getStandaloneInfo();
$mc = new MongoClient($host, array('socketTimeoutMS' => -1));
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);
/* Negative values block indefinitely and should be considered equivalent, so do
* not expect any timeout swaps for the following queries.
*/
echo "\nExecuting find() with MongoCursor::timeout(): -2\n";
$cursor = $collection->find();
$cursor->timeout(-2);
iterator_to_array($cursor);
/* Using -3 here, as -2 happens to be the static property's intializer value,
* which we use for change tracking.
*/
echo "\nExecuting find() with MongoCursor::\$timeout: -3\n";
MongoCursor::$timeout = -3;
$cursor = $collection->find();
iterator_to_array($cursor);
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
Connecting to tcp://%s:%d (%s:%d;-;.;%d) with connection timeout: 60.000000
Setting stream timeout to -1.000000
Setting the stream timeout to 60.000000
Now setting stream timeout back to -1.000000
Setting the stream timeout to 60.000000
Now setting stream timeout back to -1.000000
Setting the stream timeout to 60.000000
Now setting stream timeout back to -1.000000
Setting the stream timeout to 60.000000
Now setting stream timeout back to -1.000000
Setting the stream timeout to 60.000000
Now setting stream timeout back to -1.000000
Setting the stream timeout to 60.000000
Now setting stream timeout back to -1.000000
Connected
Dropping collection
Initializing cursor timeout to -1 (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 -1 (from connection options)
No timeout changes for %s:%d;-;.;%d
No timeout changes for %s:%d;-;.;%d
Executing find() with MongoCursor::timeout(): -2
Initializing cursor timeout to -1 (from connection options)
No timeout changes for %s:%d;-;.;%d
No timeout changes for %s:%d;-;.;%d
Executing find() with MongoCursor::$timeout: -3
%s: The 'MongoCursor::$timeout' static property is deprecated, please call MongoCursor->timeout() instead in %s on line %d
Initializing cursor timeout to -3 (from deprecated static property)
No timeout changes for %s:%d;-;.;%d
No timeout changes for %s:%d;-;.;%d
===DONE===
|