mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-26 01:42:10 +01:00
* Add missing macros for declaring arguments * Add macros to define disabled constructor and __wakeup * Define arginfo via stubs for BSON classes * Declare tentative return types in interfaces * Add correct return type for __set_state methods * Generate class entries for BSON classes * Declare Binary class constants in stub file * Use stubs in exception classes * Add stubs for monitoring classes * Fix wrong JsonSerializable class in BSON stubs * Disable declaration-after-statement This is necessary to let the generated arginfo files compile * Use stubs for driver classes * Fix deprecation messages in tests * Add missing macro * Fix tests relying on value injection * Parse parameters in disabled constructor/wakup function * Add note about arginfo files to contribution docs * Add GitHub action to check generated arginfo files * PHPC-2115: Use DateTimeInterface in UTCDateTime constructor signature * Don't install mongodb extension in GitHub actions workflows * Change indentation in stub files * Use individual #if conditions for each stub method * Make disabled constructor/wakeup methods static * Fix bulkWrite parameter name * Use %d to match property count in tests * Ensure all classes with disabled serialisation declare __wakeup
127 lines
2.4 KiB
PHP
127 lines
2.4 KiB
PHP
--TEST--
|
|
MongoDB\Driver\BulkWrite::insert() returns "_id" of inserted document
|
|
--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";
|
|
|
|
class MySerializableId implements MongoDB\BSON\Serializable
|
|
{
|
|
public $id;
|
|
|
|
public function __construct($id)
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
|
|
#[\ReturnTypeWillChange]
|
|
public function bsonSerialize()
|
|
{
|
|
return ['id' => $this->id];
|
|
}
|
|
}
|
|
|
|
class MyPersistableId extends MySerializableId implements MongoDB\BSON\Persistable
|
|
{
|
|
public function bsonUnserialize(array $data): void
|
|
{
|
|
$this->id = $data['id'];
|
|
}
|
|
}
|
|
|
|
$documents = [
|
|
['x' => 1],
|
|
['_id' => new MongoDB\BSON\ObjectId('590b72d606e9660190656a55')],
|
|
['_id' => ['foo' => 1]],
|
|
['_id' => new MySerializableId('foo')],
|
|
['_id' => new MyPersistableId('bar')],
|
|
];
|
|
|
|
$manager = create_test_manager();
|
|
|
|
$bulk = new MongoDB\Driver\BulkWrite();
|
|
|
|
foreach ($documents as $document) {
|
|
var_dump($bulk->insert($document));
|
|
}
|
|
|
|
$result = $manager->executeBulkWrite(NS, $bulk);
|
|
printf("Inserted %d document(s)\n", $result->getInsertedCount());
|
|
|
|
$cursor = $manager->executeQuery(NS, new MongoDB\Driver\Query([]));
|
|
var_dump($cursor->toArray());
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
object(MongoDB\BSON\ObjectId)#%d (%d) {
|
|
["oid"]=>
|
|
string(24) "%x"
|
|
}
|
|
object(MongoDB\BSON\ObjectId)#%d (%d) {
|
|
["oid"]=>
|
|
string(24) "590b72d606e9660190656a55"
|
|
}
|
|
object(stdClass)#%d (%d) {
|
|
["foo"]=>
|
|
int(1)
|
|
}
|
|
object(stdClass)#%d (%d) {
|
|
["id"]=>
|
|
string(3) "foo"
|
|
}
|
|
object(MyPersistableId)#%d (%d) {
|
|
["id"]=>
|
|
string(3) "bar"
|
|
}
|
|
Inserted 5 document(s)
|
|
array(5) {
|
|
[0]=>
|
|
object(stdClass)#%d (%d) {
|
|
["_id"]=>
|
|
object(MongoDB\BSON\ObjectId)#%d (%d) {
|
|
["oid"]=>
|
|
string(24) "%x"
|
|
}
|
|
["x"]=>
|
|
int(1)
|
|
}
|
|
[1]=>
|
|
object(stdClass)#%d (%d) {
|
|
["_id"]=>
|
|
object(MongoDB\BSON\ObjectId)#%d (%d) {
|
|
["oid"]=>
|
|
string(24) "590b72d606e9660190656a55"
|
|
}
|
|
}
|
|
[2]=>
|
|
object(stdClass)#%d (%d) {
|
|
["_id"]=>
|
|
object(stdClass)#%d (%d) {
|
|
["foo"]=>
|
|
int(1)
|
|
}
|
|
}
|
|
[3]=>
|
|
object(stdClass)#%d (%d) {
|
|
["_id"]=>
|
|
object(stdClass)#%d (%d) {
|
|
["id"]=>
|
|
string(3) "foo"
|
|
}
|
|
}
|
|
[4]=>
|
|
object(stdClass)#%d (%d) {
|
|
["_id"]=>
|
|
object(MyPersistableId)#%d (%d) {
|
|
["id"]=>
|
|
string(3) "bar"
|
|
}
|
|
}
|
|
}
|
|
===DONE===
|