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
|
--TEST--
Test for PHP-511: Setting slaveOkay on MongoDB doesn't get passed properly to MongoCollection
--SKIPIF--
<?php require_once "tests/utils/replicaset.inc"; ?>
<?php if (!version_compare(phpversion(), "5.3", '>=')) echo "skip >= PHP 5.3 needed\n"; ?>
--INI--
error_reporting=E_ALL & ~E_DEPRECATED
--FILE--
<?php
$mentions = array();
require_once "tests/utils/server.inc";
$m = mongo();
$db = $m->selectDB(dbname());
MongoLog::setModule( MongoLog::RS );
MongoLog::setLevel( MongoLog::FINE );
MongoLog::setCallback( function($a, $b, $message) { if (preg_match('/connection: type: ([A-Z]+),/', $message, $m )) { @$GLOBALS['mentions'][$m[1]]++; }; } );
$db->setSlaveOkay(true);
$mentions = array();
// Normal find (on a secondary)
$ret = $db->safe->find(array("doc" => 1));
iterator_to_array($ret);
var_dump($mentions); $mentions = array();
// Force primary for command
$db->safe->drop();
var_dump($mentions); $mentions = array();
// Normal find (on a secondary)
$ret = $db->safe->find(array("doc" => 1));
iterator_to_array($ret);
var_dump($mentions); $mentions = array();
var_dump($db->getSlaveOkay());
$db->setSlaveOkay(false);
// Normal find (on a primary)
$ret = $db->safe->find(array("doc" => 1));
iterator_to_array($ret);
var_dump($mentions); $mentions = array();
?>
--EXPECTF--
array(2) {
["PRIMARY"]=>
int(5)
["SECONDARY"]=>
int(15)
}
array(1) {
["PRIMARY"]=>
int(5)
}
array(2) {
["PRIMARY"]=>
int(5)
["SECONDARY"]=>
int(15)
}
bool(true)
array(1) {
["PRIMARY"]=>
int(5)
}
|