mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-25 17:32:28 +01:00
45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
--TEST--
|
|
MongoDB\Driver\Server::executeBulkWrite() with legacy write concern (replica set primary)
|
|
--SKIPIF--
|
|
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
|
|
<?php skip_if_not_replica_set(); ?>
|
|
<?php skip_if_not_enough_data_nodes(2); ?>
|
|
<?php skip_if_not_clean(); ?>
|
|
--FILE--
|
|
<?php
|
|
require_once __DIR__ . "/../utils/basic.inc";
|
|
|
|
$manager = create_test_manager();
|
|
$server = $manager->selectServer(new MongoDB\Driver\ReadPreference(MongoDB\Driver\ReadPreference::RP_PRIMARY));
|
|
|
|
$writeConcerns = [0, 1, 2, MongoDB\Driver\WriteConcern::MAJORITY];
|
|
|
|
foreach ($writeConcerns as $wc) {
|
|
$bulk = new MongoDB\Driver\BulkWrite();
|
|
$bulk->insert(['wc' => $wc]);
|
|
|
|
$options = [
|
|
'writeConcern' => new MongoDB\Driver\WriteConcern($wc),
|
|
];
|
|
|
|
$result = $server->executeBulkWrite(NS, $bulk, $options);
|
|
var_dump($result->isAcknowledged());
|
|
var_dump($result->getInsertedCount());
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
bool(false)
|
|
|
|
Deprecated: MongoDB\Driver\WriteResult::getInsertedCount(): Calling MongoDB\Driver\WriteResult::getInsertedCount() for an unacknowledged write is deprecated and will throw an exception in ext-mongodb 2.0 in %s
|
|
NULL
|
|
bool(true)
|
|
int(1)
|
|
bool(true)
|
|
int(1)
|
|
bool(true)
|
|
int(1)
|
|
===DONE===
|