mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-23 16:38:08 +02:00
fe9fb63267
Existing tests for single write methods were ported to executeBulkWrite() tests.
54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
--TEST--
|
|
MongoDB\Driver\Manager::executeBulkWrite() update one document with no upsert
|
|
--SKIPIF--
|
|
<?php require __DIR__ . "/../utils/basic-skipif.inc"; CLEANUP(STANDALONE) ?>
|
|
--FILE--
|
|
<?php
|
|
require_once __DIR__ . "/../utils/basic.inc";
|
|
|
|
$manager = new MongoDB\Driver\Manager(STANDALONE);
|
|
|
|
// load fixtures for test
|
|
$bulk = new MongoDB\Driver\BulkWrite();
|
|
$bulk->insert(array('_id' => 1, 'x' => 1));
|
|
$manager->executeBulkWrite(NS, $bulk);
|
|
|
|
$bulk = new MongoDB\Driver\BulkWrite();
|
|
$bulk->update(
|
|
array('_id' => 1),
|
|
array('$set' => array('x' => 2)),
|
|
array('multi' => false, 'upsert' => false)
|
|
);
|
|
$result = $manager->executeBulkWrite(NS, $bulk);
|
|
|
|
echo "\n===> WriteResult\n";
|
|
printWriteResult($result);
|
|
|
|
echo "\n===> Collection\n";
|
|
$cursor = $manager->executeQuery(NS, new MongoDB\Driver\Query(array()));
|
|
var_dump(iterator_to_array($cursor));
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
===> WriteResult
|
|
server: %s:%d
|
|
insertedCount: 0
|
|
matchedCount: 1
|
|
modifiedCount: 1
|
|
upsertedCount: 0
|
|
deletedCount: 0
|
|
|
|
===> Collection
|
|
array(1) {
|
|
[0]=>
|
|
object(stdClass)#%d (2) {
|
|
["_id"]=>
|
|
int(1)
|
|
["x"]=>
|
|
int(2)
|
|
}
|
|
}
|
|
===DONE===
|