1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
--TEST--
MongoDB\BSON\toPHP(): Type map class must be both instantiatable and Unserializable
--FILE--
<?php
require_once __DIR__ . '/../utils/tools.php';
abstract class MyAbstractDocument implements MongoDB\BSON\Unserializable
{
}
class MyDocument
{
}
$bson = fromJSON('{ "list" : [ 1, 2, 3 ], "map" : { "foo" : "bar" } }');
$types = array('array', 'document', 'root');
$classNames = array(
'MissingClass',
'MyAbstractDocument',
'MyDocument',
'MongoDB\BSON\Unserializable'
);
foreach ($types as $type) {
foreach ($classNames as $className) {
printf("Test typeMap: { \"%s\" : \"%s\" }\n", $type, $className);
try {
var_dump(toPHP($bson, array($type => $className)));
} catch (MongoDB\Driver\Exception\InvalidArgumentException $e) {
echo $e->getMessage(), "\n";
}
echo "\n";
}
}
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
Test typeMap: { "array" : "MissingClass" }
Class MissingClass does not exist
Test typeMap: { "array" : "MyAbstractDocument" }
Class MyAbstractDocument is not instantiatable
Test typeMap: { "array" : "MyDocument" }
Class MyDocument does not implement MongoDB\BSON\Unserializable
Test typeMap: { "array" : "MongoDB\BSON\Unserializable" }
Class MongoDB\BSON\Unserializable is not instantiatable
Test typeMap: { "document" : "MissingClass" }
Class MissingClass does not exist
Test typeMap: { "document" : "MyAbstractDocument" }
Class MyAbstractDocument is not instantiatable
Test typeMap: { "document" : "MyDocument" }
Class MyDocument does not implement MongoDB\BSON\Unserializable
Test typeMap: { "document" : "MongoDB\BSON\Unserializable" }
Class MongoDB\BSON\Unserializable is not instantiatable
Test typeMap: { "root" : "MissingClass" }
Class MissingClass does not exist
Test typeMap: { "root" : "MyAbstractDocument" }
Class MyAbstractDocument is not instantiatable
Test typeMap: { "root" : "MyDocument" }
Class MyDocument does not implement MongoDB\BSON\Unserializable
Test typeMap: { "root" : "MongoDB\BSON\Unserializable" }
Class MongoDB\BSON\Unserializable is not instantiatable
===DONE===
|