1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
--TEST--
Test for PHP-233: support keep_going (continueOnError) flag
--SKIPIF--
<?php require_once "tests/utils/standalone.inc"; ?>
--FILE--
<?php
require_once "tests/utils/server.inc";
$db = new MongoDB(new_mongo_standalone(), "phpunit");
$object = $db->selectCollection('c');
$object->drop();
$doc1 = array(
'_id' => new MongoId('4cb4ab6d7addf98506010001'),
'id' => 1,
'desc' => "ONE",
);
$doc2 = array(
'_id' => new MongoId('4cb4ab6d7addf98506010002'),
'id' => 2,
'desc' => "TWO",
);
$doc3 = array(
'_id' => new MongoId('4cb4ab6d7addf98506010002'),
'id' => 3,
'desc' => "THREE",
);
$doc4 = array(
'_id' => new MongoId('4cb4ab6d7addf98506010004'),
'id' => 4,
'desc' => "FOUR",
);
try {
$object->batchInsert(array($doc1, $doc2, $doc3, $doc4), array('continueOnError' => true));
} catch (MongoException $e) {
echo $e->getCode(), "\n";
echo $e->getMessage(), "\n";
}
$c = $object->find();
foreach ($c as $item) {
var_dump($item);
}
?>
--EXPECTF--
11000
%s:%d:%S E11000 duplicate key error index: %s.c.$_id_%Sdup key: { : ObjectId('4cb4ab6d7addf98506010002') }
array(3) {
["_id"]=>
object(MongoId)#%d (1) {
["$id"]=>
string(24) "4cb4ab6d7addf98506010001"
}
["id"]=>
int(1)
["desc"]=>
string(3) "ONE"
}
array(3) {
["_id"]=>
object(MongoId)#%d (1) {
["$id"]=>
string(24) "4cb4ab6d7addf98506010002"
}
["id"]=>
int(2)
["desc"]=>
string(3) "TWO"
}
array(3) {
["_id"]=>
object(MongoId)#%d (1) {
["$id"]=>
string(24) "4cb4ab6d7addf98506010004"
}
["id"]=>
int(4)
["desc"]=>
string(4) "FOUR"
}
|