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
|
--TEST--
Uninstantiatable classes are ignored when processing __pclass (enums)
--SKIPIF--
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
<?php skip_if_php_version('<', '8.1.0'); ?>
--FILE--
<?php
require_once __DIR__ . '/../utils/basic.inc';
enum MyEnum
{
case A;
}
enum MyBackedEnum: int
{
case A = 1;
}
/* Note: the following BSON data corresponds to what might be produced by enums
* implementing Persistable. Although that is now prohibited in the driver, it
* could have been produced by an earlier version. */
var_dump(toPHP(fromJSON(sprintf('{"x": {"__pclass": {"$binary": "%s", "$type": "80"}, "name": "A"}}', base64_encode(MyEnum::class)))));
var_dump(toPHP(fromJSON(sprintf('{"x": {"__pclass": {"$binary": "%s", "$type": "80"}, "name": "A", "value": 1}}', base64_encode(MyBackedEnum::class)))));
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
object(stdClass)#%d (%d) {
["x"]=>
object(stdClass)#%d (%d) {
["__pclass"]=>
object(MongoDB\BSON\Binary)#%d (%d) {
["data"]=>
string(6) "MyEnum"
["type"]=>
int(128)
}
["name"]=>
string(1) "A"
}
}
object(stdClass)#%d (%d) {
["x"]=>
object(stdClass)#%d (%d) {
["__pclass"]=>
object(MongoDB\BSON\Binary)#%d (%d) {
["data"]=>
string(12) "MyBackedEnum"
["type"]=>
int(128)
}
["name"]=>
string(1) "A"
["value"]=>
int(1)
}
}
===DONE===
|