mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-23 08:28:01 +02:00
fe9fb63267
Existing tests for single write methods were ported to executeBulkWrite() tests.
47 lines
979 B
PHP
47 lines
979 B
PHP
--TEST--
|
|
MongoDB\Driver\Cursor command result iteration through IteratorIterator
|
|
--SKIPIF--
|
|
<?php require __DIR__ . "/../utils/basic-skipif.inc"; CLEANUP(STANDALONE) ?>
|
|
--FILE--
|
|
<?php
|
|
require_once __DIR__ . "/../utils/basic.inc";
|
|
|
|
$manager = new MongoDB\Driver\Manager(STANDALONE);
|
|
|
|
$bulk = new MongoDB\Driver\BulkWrite();
|
|
$bulk->insert(array('_id' => 1, 'x' => 1));
|
|
$bulk->insert(array('_id' => 2, 'x' => 1));
|
|
$manager->executeBulkWrite(NS, $bulk);
|
|
|
|
$command = new MongoDB\Driver\Command(array(
|
|
'aggregate' => COLLECTION_NAME,
|
|
'pipeline' => array(
|
|
array('$match' => array('x' => 1)),
|
|
),
|
|
'cursor' => new stdClass,
|
|
));
|
|
|
|
$cursor = $manager->executeCommand(DATABASE_NAME, $command);
|
|
|
|
foreach (new IteratorIterator($cursor) as $document) {
|
|
var_dump($document);
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
object(stdClass)#%d (2) {
|
|
["_id"]=>
|
|
int(1)
|
|
["x"]=>
|
|
int(1)
|
|
}
|
|
object(stdClass)#%d (2) {
|
|
["_id"]=>
|
|
int(2)
|
|
["x"]=>
|
|
int(1)
|
|
}
|
|
===DONE===
|