Files
mongo-php-driver/tests/bson/bson-enum_error-005.phpt
Jeremy Mikola 594cad9a30 PHPC-2083: Revise BSON handling of enum classes
Revert previous enum instantiation behavior and PersistableEnum trait from de5f1e5a93

Backed enums will be encoded as their case value. Non-backed cannot be encoded and no enums can be encoded at the root level.

Prohibit enums from implementing Persistable and Unserializable.
2022-11-10 20:21:36 +08:00

38 lines
822 B
PHP

--TEST--
Enums cannot be serialized as a root element
--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;
}
echo throws(function() {
fromPHP(MyEnum::A);
}, MongoDB\Driver\Exception\UnexpectedValueException::class), "\n";
echo throws(function() {
fromPHP(MyBackedEnum::A);
}, MongoDB\Driver\Exception\UnexpectedValueException::class), "\n";
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
OK: Got MongoDB\Driver\Exception\UnexpectedValueException
Enum MyEnum cannot be serialized as a root element
OK: Got MongoDB\Driver\Exception\UnexpectedValueException
Enum MyBackedEnum cannot be serialized as a root element
===DONE===