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 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
--TEST--
MongoDB\Driver\Manager::executeBulkWrite() insert one document (with embedded)
--SKIPIF--
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
<?php skip_if_not_live(); ?>
<?php skip_if_not_clean(); ?>
--FILE--
<?php
require_once __DIR__ . "/../utils/basic.inc";
require_once __DIR__ . "/../utils/classes.inc";
$manager = create_test_manager();
$hannes = new Person("Hannes", 42);
$sunnyvale = new Address(94086, "USA");
$kopavogur = new Address(200, "Iceland");
$hannes->addAddress($sunnyvale);
$hannes->addAddress($kopavogur);
$mikola = new Person("Jeremy", 21);
$michigan = new Address(48169, "USA");
$hannes->addFriend($mikola);
$bulk = new MongoDB\Driver\BulkWrite();
$bulk->insert($hannes);
$result = $manager->executeBulkWrite(NS, $bulk);
echo "\n===> WriteResult\n";
printWriteResult($result);
echo "\n===> Collection\n";
$cursor = $manager->executeQuery(NS, new MongoDB\Driver\Query(array()));
foreach($cursor as $object) {
var_dump($object);
}
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
===> WriteResult
server: %s:%d
insertedCount: 1
matchedCount: 0
modifiedCount: 0
upsertedCount: 0
deletedCount: 0
===> Collection
object(Person)#%d (5) {
["name":protected]=>
string(6) "Hannes"
["age":protected]=>
int(42)
["addresses":protected]=>
array(2) {
[0]=>
object(Address)#%d (2) {
["zip":protected]=>
int(94086)
["country":protected]=>
string(3) "USA"
}
[1]=>
object(Address)#%d (2) {
["zip":protected]=>
int(200)
["country":protected]=>
string(7) "Iceland"
}
}
["friends":protected]=>
array(1) {
[0]=>
object(Person)#%d (5) {
["name":protected]=>
string(6) "Jeremy"
["age":protected]=>
int(21)
["addresses":protected]=>
array(0) {
}
["friends":protected]=>
array(0) {
}
["secret":protected]=>
string(4) "none"
}
}
["secret":protected]=>
string(4) "none"
}
===DONE===
|