mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-25 17:32:28 +01:00
* Remove pre-3.6 server versions from Evergreen matrix * Remove skipped tests for pre-3.6 servers * Remove old mongo-orchestration configs and Evergreen tasks * Remove flaky replica set tests These tests assume a particular replica set member is always the primary, so tag assertions may fail if a different member is elected. The server-getTags-002.phpt test has more flexible assertions for replica set tags, so we can safely remove these tests.
84 lines
1.7 KiB
PHP
84 lines
1.7 KiB
PHP
--TEST--
|
|
MongoDB\Driver\BulkWrite::update() with arrayFilters option
|
|
--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";
|
|
|
|
$manager = create_test_manager();
|
|
|
|
$bulk = new MongoDB\Driver\BulkWrite();
|
|
|
|
$bulk->insert([ '_id' => 1, 'grades' => [ 95, 92, 90 ] ]);
|
|
$bulk->insert([ '_id' => 2, 'grades' => [ 98, 100, 102 ] ]);
|
|
$bulk->insert([ '_id' => 3, 'grades' => [ 95, 110, 100 ] ]);
|
|
|
|
$manager->executeBulkWrite(DATABASE_NAME . '.' . COLLECTION_NAME, $bulk);
|
|
|
|
$updateBulk = new MongoDB\Driver\BulkWrite();
|
|
|
|
$query = ['grades' => ['$gte' => 100]];
|
|
$update = [ '$set' => [ 'grades.$[element]' => 100 ] ];
|
|
$options = [
|
|
'arrayFilters' => [ [ 'element' => [ '$gte' => 100 ] ] ],
|
|
'multi' => true
|
|
];
|
|
|
|
$updateBulk->update($query, $update, $options);
|
|
$manager->executeBulkWrite(DATABASE_NAME . '.' . COLLECTION_NAME, $updateBulk);
|
|
|
|
$cursor = $manager->executeQuery( DATABASE_NAME . '.' . COLLECTION_NAME, new \MongoDB\Driver\Query([]));
|
|
var_dump($cursor->toArray());
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
array(%d) {
|
|
[0]=>
|
|
object(stdClass)#%d (%d) {
|
|
["_id"]=>
|
|
int(1)
|
|
["grades"]=>
|
|
array(%d) {
|
|
[0]=>
|
|
int(95)
|
|
[1]=>
|
|
int(92)
|
|
[2]=>
|
|
int(90)
|
|
}
|
|
}
|
|
[1]=>
|
|
object(stdClass)#%d (%d) {
|
|
["_id"]=>
|
|
int(2)
|
|
["grades"]=>
|
|
array(%d) {
|
|
[0]=>
|
|
int(98)
|
|
[1]=>
|
|
int(100)
|
|
[2]=>
|
|
int(100)
|
|
}
|
|
}
|
|
[2]=>
|
|
object(stdClass)#%d (%d) {
|
|
["_id"]=>
|
|
int(3)
|
|
["grades"]=>
|
|
array(%d) {
|
|
[0]=>
|
|
int(95)
|
|
[1]=>
|
|
int(100)
|
|
[2]=>
|
|
int(100)
|
|
}
|
|
}
|
|
}
|
|
===DONE===
|