mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-31 13:22:16 +02:00
28 lines
706 B
PHP
28 lines
706 B
PHP
--TEST--
|
|
MongoDB\Driver\WriteConcernError::getCode()
|
|
--SKIPIF--
|
|
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
|
|
<?php NEEDS('REPLICASET_30'); CLEANUP(REPLICASET_30); ?>
|
|
--FILE--
|
|
<?php
|
|
require_once __DIR__ . "/../utils/basic.inc";
|
|
|
|
$manager = new MongoDB\Driver\Manager(REPLICASET_30);
|
|
|
|
$bulk = new MongoDB\Driver\BulkWrite;
|
|
$bulk->insert(['x' => 1]);
|
|
|
|
try {
|
|
/* We assume that the replica set does not have 12 nodes */
|
|
$manager->executeBulkWrite(NS, $bulk, new MongoDB\Driver\WriteConcern(12));
|
|
} catch(MongoDB\Driver\Exception\BulkWriteException $e) {
|
|
var_dump($e->getWriteResult()->getWriteConcernError()->getCode());
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECT--
|
|
int(100)
|
|
===DONE===
|