Files
mongo-php-driver/tests/bson/bson-binary-serialization_error-003.phpt
Jeremy Mikola bd10948415 PHPC-1849: Handle deprecation of Serializable in PHP 8.1 (#1246)
* 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
2021-08-31 22:13:11 -04:00

37 lines
1.4 KiB
PHP

--TEST--
MongoDB\BSON\Binary unserialization requires 16-byte data length for UUID types (Serializable interface)
--FILE--
<?php
require_once __DIR__ . '/../utils/basic.inc';
echo throws(function() {
unserialize('C:19:"MongoDB\BSON\Binary":55:{a:2:{s:4:"data";s:15:"0123456789abcde";s:4:"type";i:3;}}');
}, 'MongoDB\Driver\Exception\InvalidArgumentException'), "\n";
echo throws(function() {
unserialize('C:19:"MongoDB\BSON\Binary":57:{a:2:{s:4:"data";s:17:"0123456789abcdefg";s:4:"type";i:3;}}');
}, 'MongoDB\Driver\Exception\InvalidArgumentException'), "\n";
echo throws(function() {
unserialize('C:19:"MongoDB\BSON\Binary":55:{a:2:{s:4:"data";s:15:"0123456789abcde";s:4:"type";i:4;}}');
}, 'MongoDB\Driver\Exception\InvalidArgumentException'), "\n";
echo throws(function() {
unserialize('C:19:"MongoDB\BSON\Binary":57:{a:2:{s:4:"data";s:17:"0123456789abcdefg";s:4:"type";i:4;}}');
}, 'MongoDB\Driver\Exception\InvalidArgumentException'), "\n";
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
OK: Got MongoDB\Driver\Exception\InvalidArgumentException
Expected UUID length to be 16 bytes, 15 given
OK: Got MongoDB\Driver\Exception\InvalidArgumentException
Expected UUID length to be 16 bytes, 17 given
OK: Got MongoDB\Driver\Exception\InvalidArgumentException
Expected UUID length to be 16 bytes, 15 given
OK: Got MongoDB\Driver\Exception\InvalidArgumentException
Expected UUID length to be 16 bytes, 17 given
===DONE===