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 87 88 89 90 91 92 93 94 95 96 97 98
|
--TEST--
PHPC-939: BSON classes should not assign public properties after var_dump()
--FILE--
<?php
$tests = [
[ new MongoDB\BSON\Binary('foo', MongoDB\BSON\Binary::TYPE_GENERIC), ['data', 'type'] ],
[ new MongoDB\BSON\Decimal128('3.14'), ['dec'] ],
[ new MongoDB\BSON\Javascript('function foo() { return bar; }', ['bar' => 42]), ['code', 'scope'] ],
[ new MongoDB\BSON\MaxKey, [] ],
[ new MongoDB\BSON\MinKey, [] ],
[ new MongoDB\BSON\ObjectId, ['oid'] ],
[ new MongoDB\BSON\Regex('foo', 'i'), ['pattern', 'flags'] ],
[ new MongoDB\BSON\Timestamp(1234, 5678), ['increment', 'timestamp'] ],
[ new MongoDB\BSON\UTCDateTime, ['milliseconds'] ],
];
foreach ($tests as $test) {
list($object, $properties) = $test;
var_dump($object);
foreach ($properties as $property) {
printf("%s::$%s exists: %s\n", get_class($object), $property, property_exists($object, $property) ? 'yes' : 'no');
}
echo "\n";
}
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
object(MongoDB\BSON\Binary)#%d (%d) {
["data"]=>
string(3) "foo"
["type"]=>
int(0)
}
MongoDB\BSON\Binary::$data exists: no
MongoDB\BSON\Binary::$type exists: no
object(MongoDB\BSON\Decimal128)#%d (%d) {
["dec"]=>
string(4) "3.14"
}
MongoDB\BSON\Decimal128::$dec exists: no
object(MongoDB\BSON\Javascript)#%d (%d) {
["code"]=>
string(30) "function foo() { return bar; }"
["scope"]=>
object(stdClass)#%d (%d) {
["bar"]=>
int(42)
}
}
MongoDB\BSON\Javascript::$code exists: no
MongoDB\BSON\Javascript::$scope exists: no
object(MongoDB\BSON\MaxKey)#%d (%d) {
}
object(MongoDB\BSON\MinKey)#%d (%d) {
}
object(MongoDB\BSON\ObjectId)#%d (%d) {
["oid"]=>
string(24) "%x"
}
MongoDB\BSON\ObjectId::$oid exists: no
object(MongoDB\BSON\Regex)#%d (%d) {
["pattern"]=>
string(3) "foo"
["flags"]=>
string(1) "i"
}
MongoDB\BSON\Regex::$pattern exists: no
MongoDB\BSON\Regex::$flags exists: no
object(MongoDB\BSON\Timestamp)#%d (%d) {
["increment"]=>
string(4) "1234"
["timestamp"]=>
string(4) "5678"
}
MongoDB\BSON\Timestamp::$increment exists: no
MongoDB\BSON\Timestamp::$timestamp exists: no
object(MongoDB\BSON\UTCDateTime)#%d (%d) {
["milliseconds"]=>
string(%d) "%d"
}
MongoDB\BSON\UTCDateTime::$milliseconds exists: no
===DONE===
|