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--
Test for MongoLog
--SKIPIF--
<?php $needs = "2.5.5" ?>
<?php if (MONGO_STREAMS) { echo "skip This test requires streams support disabled"; } ?>
<?php require_once "tests/utils/standalone.inc"; ?>
--FILE--
<?php
require_once "tests/utils/server.inc";
function error_handler($code, $message)
{
echo $message, "\n";
}
set_error_handler('error_handler');
MongoLog::setModule(MongoLog::ALL);
MongoLog::setLevel(MongoLog::ALL);
$dsn = MongoShellServer::getStandaloneInfo();
$m = new Mongo("mongodb://$dsn");
MongoLog::setModule(0);
MongoLog::setLevel(0);
?>
--EXPECTF--
%s(): The Mongo class is deprecated, please use the MongoClient class
PARSE INFO: Parsing mongodb://%s:%d
PARSE INFO: - Found node: %s:%d
PARSE INFO: - Connection type: STANDALONE
CON INFO: mongo_get_read_write_connection: finding a STANDALONE connection
CON INFO: connection_create: creating new connection for %s:%d
CON INFO: ismaster: start
CON FINE: send_packet: read from header: 36
CON FINE: send_packet: data_size: %d
CON FINE: ismaster: setting minWireVersion to 0
CON FINE: ismaster: setting maxWireVersion to 2
CON FINE: ismaster: setting maxBsonObjectSize to 16777216
CON FINE: ismaster: setting maxMessageSizeBytes to 48000000
CON FINE: ismaster: setting maxWriteBatchSize to 1000
CON INFO: ismaster: set name: (null), ismaster: 1, secondary: 0, is_arbiter: 0
CON INFO: ismaster: last ran at %d
CON INFO: get_server_version: start
CON FINE: send_packet: read from header: 36
CON FINE: send_packet: data_size: %d
CON INFO: get_server_version: server version: %s
CON INFO: is_ping: pinging %s:%d;-;.;%d
CON FINE: send_packet: read from header: 36
CON FINE: send_packet: data_size: 17
CON INFO: is_ping: last pinged at %d; time: %dms
CON FINE: ismaster: skipping: last ran at %d, now: %d, time left: %d
REPLSET FINE: finding candidate servers
REPLSET FINE: - all servers
REPLSET FINE: - collect any
REPLSET FINE: filter_connections: adding connections:
REPLSET FINE: - connection: type: STANDALONE, socket: %d, ping: %d, hash: %s:%d;-;.;%d
REPLSET FINE: filter_connections: done
REPLSET FINE: limiting by seeded/discovered servers
REPLSET FINE: - connection: type: STANDALONE, socket: %d, ping: %d, hash: %s:%d;-;.;%d
REPLSET FINE: limiting by seeded/discovered servers: done
REPLSET FINE: limiting by credentials
REPLSET FINE: - connection: type: STANDALONE, socket: %d, ping: %d, hash: %s:%d;-;.;%d
REPLSET FINE: limiting by credentials: done
REPLSET FINE: sorting servers by priority and ping time
REPLSET FINE: - connection: type: STANDALONE, socket: %d, ping: %d, hash: %s:%d;-;.;%d
REPLSET FINE: sorting servers: done
REPLSET FINE: selecting near servers
REPLSET FINE: selecting near servers: nearest is %dms
REPLSET FINE: - connection: type: STANDALONE, socket: %d, ping: %d, hash: %s:%d;-;.;%d
REPLSET FINE: selecting near server: done
REPLSET INFO: pick server: random element 0
REPLSET INFO: - connection: type: STANDALONE, socket: %d, ping: %d, hash: %s:%d;-;.;%d
|