Files
mongo-php-driver/tests/writeConcern/writeconcern-debug-003.phpt
Jeremy Mikola 366dcbe7d2 PHPC-1411: Prefer integer types for wtimeout when possible
For serialization, 64-bit wtimeout values will always be encoded as strings for portability. Debug output and bsonSerialize() can always use integers on 64-bit platforms and can fall back to strings and Int64 objects on 32-bit platforms, respectively.
2019-12-19 06:51:06 +01:00

98 lines
2.2 KiB
PHP

--TEST--
MongoDB\Driver\WriteConcern debug output
--FILE--
<?php
$tests = [
new MongoDB\Driver\WriteConcern(-3), // MONGOC_WRITE_CONCERN_W_MAJORITY
new MongoDB\Driver\WriteConcern(-2), // MONGOC_WRITE_CONCERN_W_DEFAULT
new MongoDB\Driver\WriteConcern(-1),
new MongoDB\Driver\WriteConcern(0),
new MongoDB\Driver\WriteConcern(1),
new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY),
new MongoDB\Driver\WriteConcern('tag'),
new MongoDB\Driver\WriteConcern(1, 0),
new MongoDB\Driver\WriteConcern(1, 0, false),
new MongoDB\Driver\WriteConcern(1, 1000),
new MongoDB\Driver\WriteConcern(1, 1000, true),
new MongoDB\Driver\WriteConcern(-2, 0, true),
// Note: wtimeout is only applicable for w > 1
new MongoDB\Driver\WriteConcern(-2, 1000),
// 64-bit wtimeout may be reported as integer or string
MongoDB\Driver\WriteConcern::__set_state(['w' => 2, 'wtimeout' => '2147483648']),
];
foreach ($tests as $test) {
var_dump($test);
}
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
string(8) "majority"
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
int(-1)
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
int(0)
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
int(1)
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
string(8) "majority"
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
string(3) "tag"
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
int(1)
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
int(1)
["j"]=>
bool(false)
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
int(1)
["wtimeout"]=>
int(1000)
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
int(1)
["j"]=>
bool(true)
["wtimeout"]=>
int(1000)
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["j"]=>
bool(true)
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["wtimeout"]=>
int(1000)
}
object(MongoDB\Driver\WriteConcern)#%d (%d) {
["w"]=>
int(2)
["wtimeout"]=>
%rint\(2147483648\)|string\(10\) "2147483648"%r
}
===DONE===