mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-28 02:53:21 +02:00
6887226d34
* Add missing macros for declaring arguments * Add macros to define disabled constructor and __wakeup * Define arginfo via stubs for BSON classes * Declare tentative return types in interfaces * Add correct return type for __set_state methods * Generate class entries for BSON classes * Declare Binary class constants in stub file * Use stubs in exception classes * Add stubs for monitoring classes * Fix wrong JsonSerializable class in BSON stubs * Disable declaration-after-statement This is necessary to let the generated arginfo files compile * Use stubs for driver classes * Fix deprecation messages in tests * Add missing macro * Fix tests relying on value injection * Parse parameters in disabled constructor/wakup function * Add note about arginfo files to contribution docs * Add GitHub action to check generated arginfo files * PHPC-2115: Use DateTimeInterface in UTCDateTime constructor signature * Don't install mongodb extension in GitHub actions workflows * Change indentation in stub files * Use individual #if conditions for each stub method * Make disabled constructor/wakeup methods static * Fix bulkWrite parameter name * Use %d to match property count in tests * Ensure all classes with disabled serialisation declare __wakeup
52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
--TEST--
|
|
MongoDB\BSON\fromPHP(): Serializable with circular references
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once __DIR__ . '/../utils/basic.inc';
|
|
|
|
class MyRecursiveSerializable implements MongoDB\BSON\Serializable
|
|
{
|
|
public $child = 1;
|
|
|
|
#[\ReturnTypeWillChange]
|
|
public function bsonSerialize()
|
|
{
|
|
return $this;
|
|
}
|
|
}
|
|
|
|
class MyIndirectlyRecursiveSerializable extends MyRecursiveSerializable
|
|
{
|
|
#[\ReturnTypeWillChange]
|
|
public function bsonSerialize()
|
|
{
|
|
return ['parent' => $this];
|
|
}
|
|
}
|
|
|
|
echo "\nTesting Serializable with direct circular reference\n";
|
|
|
|
echo throws(function() {
|
|
fromPHP(new MyRecursiveSerializable);
|
|
}, 'MongoDB\Driver\Exception\UnexpectedValueException'), "\n";
|
|
|
|
echo "\nTesting Serializable with indirect circular reference\n";
|
|
|
|
echo throws(function() {
|
|
fromPHP(new MyIndirectlyRecursiveSerializable);
|
|
}, 'MongoDB\Driver\Exception\UnexpectedValueException'), "\n";
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECT--
|
|
Testing Serializable with direct circular reference
|
|
OK: Got MongoDB\Driver\Exception\UnexpectedValueException
|
|
Expected MyRecursiveSerializable::bsonSerialize() to return an array or stdClass, MyRecursiveSerializable given
|
|
|
|
Testing Serializable with indirect circular reference
|
|
OK: Got MongoDB\Driver\Exception\UnexpectedValueException
|
|
Detected recursion for field path "parent.parent"
|
|
===DONE===
|