Files
mongo-php-driver/tests/cursor/cursor-toArray-002.phpt
Jeremy Mikola fe9fb63267 PHPC-465: Remove Manager's single write methods
Existing tests for single write methods were ported to executeBulkWrite() tests.
2015-10-21 19:32:42 -04:00

39 lines
940 B
PHP

--TEST--
MongoDB\Driver\Cursor::toArray() respects type map
--SKIPIF--
<?php require __DIR__ . "/../utils/basic-skipif.inc"; CLEANUP(STANDALONE) ?>
--FILE--
<?php
use MongoDB\BSON as BSON;
require_once __DIR__ . "/../utils/basic.inc";
class MyArrayObject extends ArrayObject implements BSON\Unserializable
{
function bsonUnserialize(array $data)
{
parent::__construct($data);
}
}
$manager = new MongoDB\Driver\Manager(STANDALONE);
$bulk = new MongoDB\Driver\BulkWrite();
$bulk->insert(array('_id' => 1, 'x' => array(1, 2, 3)));
$bulk->insert(array('_id' => 2, 'x' => array(4, 5, 6)));
$manager->executeBulkWrite(NS, $bulk);
$cursor = $manager->executeQuery(NS, new MongoDB\Driver\Query(array('x' => 1)));
$cursor->setTypeMap(array("array" => "MyArrayObject"));
$documents = $cursor->toArray();
var_dump($documents[0]->x instanceof MyArrayObject);
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
bool(true)
===DONE===