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
|
--TEST--
MongoCollection::find() MongoConnectionException no candidates due to RP
--SKIPIF--
<?php require_once "tests/utils/replicaset-failover.inc" ?>
--INI--
mongo.is_master_interval=1
--FILE--
<?php
require_once 'tests/utils/server.inc';
$server = new MongoShellServer();
$rs = $server->getReplicaSetConfig();
$mc = new MongoClient($rs['dsn'], array('replicaSet' => $rs['rsname']));
$c = $mc->selectCollection(dbname(), 'mongocollection-find_error-001');
$c->drop();
echo "DEBUG: "; // Print out some debug info so we can understand what is happening
for($i=1; $i<10; $i++) {
try {
echo "Attempt#$i: ";
$c->insert(array('x' => 1), array('w' => 'majority', 'wTimeoutMS' => 1000));
echo "OK!\n";
break;
} catch(Exception $e) {
printf(" FAILED: (%s) ", trim($e->getMessage()));
sleep(1);
}
}
// Disable secondaries so query has no candidates
$server->setMaintenanceForSecondaries(true);
sleep(3);
try {
$c->setReadPreference(MongoClient::RP_SECONDARY);
$document = $c->findOne(array('x' => 1), array('_id' => 0));
var_dump($document);
} catch (MongoConnectionException $e) {
var_dump($e->getMessage(), $e->getCode());
}
echo "Enabling secondaries\n";
// Enable secondaries so query can succeed
$server->setMaintenanceForSecondaries(false);
sleep(3);
echo "Secondaries up\n";
try {
$c->setReadPreference(MongoClient::RP_SECONDARY);
$document = $c->findOne(array('x' => 1), array('_id' => 0));
var_dump($document);
} catch (MongoConnectionException $e) {
var_dump($e->getMessage(), $e->getCode());
}
?>
DONE
--CLEAN--
<?php /* This puts us in a state of negative "other tasks" which mongod pre 2.5 doesn't like require_once "tests/utils/fix-secondaries.inc";*/ ?>
--EXPECTF--
DEBUG: %s
string(26) "No candidate servers found"
int(71)
Enabling secondaries
Secondaries up
array(1) {
["x"]=>
int(1)
}
DONE
|