mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-25 17:32:28 +01:00
* Add __serialize and __unserialize methods to Serializable classes These methods will be used on PHP 7.4+ when available. Implementing them is required to suppress a deprecation notice on PHP 8.1+. This commit also renames is_debug parameter for get_properties_hash utility functions (and related macros) to more accurately reflect its purpose of allocating a new HashTable instead of using an internal props table. * Explicitly handle serialize output in php_phongo_cursorid_get_properties_hash * Explicitly handle serialize output in php_phongo_writeconcern_get_properties_hash * Note maxStalenessSeconds handling in php_phongo_readpreference_get_properties_hash * CursorId should always serialize id as string
29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
--TEST--
|
|
MongoDB\Driver\ReadPreference unserialization errors (Serializable interface)
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once __DIR__ . '/../utils/basic.inc';
|
|
|
|
/* Note: this file does not exhaustively test all code paths in
|
|
* php_phongo_readpreference_init_from_hash since those are already covered by
|
|
* tests for ReadPreference::__set_state() */
|
|
|
|
echo throws(function() {
|
|
unserialize('C:29:"MongoDB\Driver\ReadPreference":31:{a:1:{s:4:"mode";s:7:"invalid";}}');
|
|
}, 'MongoDB\Driver\Exception\InvalidArgumentException'), "\n";
|
|
|
|
echo throws(function() {
|
|
unserialize('C:29:"MongoDB\Driver\ReadPreference":21:{a:1:{s:4:"mode";i:0;}}');
|
|
}, 'MongoDB\Driver\Exception\InvalidArgumentException'), "\n";
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECT--
|
|
OK: Got MongoDB\Driver\Exception\InvalidArgumentException
|
|
MongoDB\Driver\ReadPreference initialization requires specific values for "mode" string field
|
|
OK: Got MongoDB\Driver\Exception\InvalidArgumentException
|
|
MongoDB\Driver\ReadPreference initialization requires "mode" field to be string
|
|
===DONE===
|