Files
mongo-php-driver/tests/bson/bson-enum_error-006.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

27 lines
553 B
PHP

--TEST--
Non-backed enums cannot be serialized
--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;
}
echo throws(function() {
fromPHP(['x' => MyEnum::A]);
}, MongoDB\Driver\Exception\UnexpectedValueException::class), "\n";
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
OK: Got MongoDB\Driver\Exception\UnexpectedValueException
Non-backed enum MyEnum cannot be serialized for field path "x"
===DONE===