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 95 96 97 98 99
|
--TEST--
Retryable writes: unsupported operations do not include transaction IDs
--SKIPIF--
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
<?php skip_if_not_libmongoc_crypto(); ?>
<?php skip_if_not_replica_set_or_sharded_cluster_with_replica_set(); ?>
<?php skip_if_not_clean(); ?>
--FILE--
<?php
require_once __DIR__ . "/../utils/basic.inc";
class TransactionIdObserver implements MongoDB\Driver\Monitoring\CommandSubscriber
{
public function commandStarted(MongoDB\Driver\Monitoring\CommandStartedEvent $event): void
{
$command = $event->getCommand();
$hasTransactionId = isset($command->lsid) && isset($command->txnNumber);
printf("%s command includes transaction ID: %s\n", $event->getCommandName(), $hasTransactionId ? 'yes' : 'no');
}
public function commandSucceeded(MongoDB\Driver\Monitoring\CommandSucceededEvent $event): void
{
}
public function commandFailed(MongoDB\Driver\Monitoring\CommandFailedEvent $event): void
{
}
}
$observer = new TransactionIdObserver;
MongoDB\Driver\Monitoring\addSubscriber($observer);
$manager = create_test_manager();
echo "Testing deleteMany\n";
$bulk = new MongoDB\Driver\BulkWrite;
$bulk->delete(['x' => 1], ['limit' => 0]);
$manager->executeBulkWrite(NS, $bulk);
echo "\nTesting updateMany\n";
$bulk = new MongoDB\Driver\BulkWrite;
$bulk->update(['x' => 1], ['$inc' => ['x' => 1]], ['multi' => true]);
$manager->executeBulkWrite(NS, $bulk);
echo "\nTesting multi-statement bulk write with one unsupported operation (ordered=true)\n";
$bulk = new MongoDB\Driver\BulkWrite(['ordered' => true]);
$bulk->delete(['x' => 1], ['limit' => 1]);
$bulk->insert(['x' => 1]);
$bulk->update(['x' => 1], ['$inc' => ['x' => 1]]);
$bulk->update(['x' => 1], ['x' => 2]);
$bulk->update(['x' => 1], ['$inc' => ['x' => 1]], ['multi' => true]);
$manager->executeBulkWrite(NS, $bulk);
echo "\nTesting multi-statement bulk write with one unsupported operation (ordered=false)\n";
$bulk = new MongoDB\Driver\BulkWrite(['ordered' => false]);
$bulk->delete(['x' => 1], ['limit' => 1]);
$bulk->insert(['x' => 1]);
$bulk->update(['x' => 1], ['$inc' => ['x' => 1]]);
$bulk->update(['x' => 1], ['x' => 2]);
$bulk->update(['x' => 1], ['$inc' => ['x' => 1]], ['multi' => true]);
$manager->executeBulkWrite(NS, $bulk);
echo "\nTesting aggregate\n";
$command = new MongoDB\Driver\Command([
'aggregate' => COLLECTION_NAME,
'pipeline' => [
['$match' => ['x' => 1]],
['$out' => COLLECTION_NAME . '.out'],
],
'cursor' => new stdClass,
]);
$manager->executeReadWriteCommand(DATABASE_NAME, $command);
MongoDB\Driver\Monitoring\removeSubscriber($observer);
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
Testing deleteMany
delete command includes transaction ID: no
Testing updateMany
update command includes transaction ID: no
Testing multi-statement bulk write with one unsupported operation (ordered=true)
delete command includes transaction ID: yes
insert command includes transaction ID: yes
update command includes transaction ID: no
Testing multi-statement bulk write with one unsupported operation (ordered=false)
delete command includes transaction ID: yes
insert command includes transaction ID: yes
update command includes transaction ID: no
Testing aggregate
aggregate command includes transaction ID: no
===DONE===
|