mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-25 17:32:28 +01:00
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.
27 lines
553 B
PHP
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===
|