mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-24 08:52:14 +01:00
* PHPC-2219: Prohibit serializing PackedArray as root documents This adds logic to php_phongo_zval_to_bson_internal() to prohibit serializing PackedArray instances as a root document. Since this function is also used in specific cases to encode a BSON array, a PHONGO_BSON_ALLOW_ROOT_ARRAY flag is introduced to relax the restriction. * Check if existing field_path element must be freed before overwriting * Remove function name from Javascript code strings
40 lines
1.4 KiB
PHP
40 lines
1.4 KiB
PHP
--TEST--
|
|
MongoDB\Driver\ClientEncryption::rewrapManyDataKey() prohibits PackedArray for document values
|
|
--SKIPIF--
|
|
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
|
|
<?php skip_if_not_libmongocrypt(); ?>
|
|
<?php skip_if_not_live(); ?>
|
|
<?php skip_if_not_clean(CSFLE_KEY_VAULT_DATABASE_NAME, CSFLE_KEY_VAULT_COLLECTION_NAME);
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once __DIR__ . "/../utils/basic.inc";
|
|
|
|
$manager = create_test_manager();
|
|
|
|
$clientEncryption = $manager->createClientEncryption([
|
|
'keyVaultNamespace' => CSFLE_KEY_VAULT_NS,
|
|
'kmsProviders' => ['local' => ['key' => new MongoDB\BSON\Binary(CSFLE_LOCAL_KEY, 0)]],
|
|
]);
|
|
|
|
echo throws(function() use ($clientEncryption) {
|
|
$clientEncryption->rewrapManyDataKey(MongoDB\BSON\PackedArray::fromPHP([]));
|
|
}, MongoDB\Driver\Exception\UnexpectedValueException::class), "\n";
|
|
|
|
echo throws(function() use ($clientEncryption) {
|
|
$clientEncryption->rewrapManyDataKey([], [
|
|
'provider' => 'local',
|
|
'masterKey' => MongoDB\BSON\PackedArray::fromPHP([]),
|
|
]);
|
|
}, MongoDB\Driver\Exception\UnexpectedValueException::class), "\n";
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECT--
|
|
OK: Got MongoDB\Driver\Exception\UnexpectedValueException
|
|
MongoDB\BSON\PackedArray cannot be serialized as a root document
|
|
OK: Got MongoDB\Driver\Exception\UnexpectedValueException
|
|
MongoDB\BSON\PackedArray cannot be serialized as a root document
|
|
===DONE===
|