Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
tests /
mongodb /
tests /
exception /
Delete
Unzip
Name
Size
Permission
Date
Action
bulkwriteexception-getwriteresult-001.phpt
1.18
KB
-rw-r--r--
2025-04-09 02:56
bulkwriteexception-haserrorlabel-001.phpt
562
B
-rw-r--r--
2025-04-09 02:56
bulkwriteexception-haserrorlabel-002.phpt
1.19
KB
-rw-r--r--
2025-04-09 02:56
bulkwriteexception-haserrorlabel_error-001.phpt
531
B
-rw-r--r--
2025-04-09 02:56
commandexception-getresultdocument-001.phpt
548
B
-rw-r--r--
2025-04-09 02:56
commandexception-haserrorlabel-001.phpt
558
B
-rw-r--r--
2025-04-09 02:56
commandexception-haserrorlabel_error-001.phpt
527
B
-rw-r--r--
2025-04-09 02:56
exception-001.phpt
331
B
-rw-r--r--
2025-04-09 02:56
runtimeexception-haserrorlabel-001.phpt
558
B
-rw-r--r--
2025-04-09 02:56
runtimeexception-haserrorlabel_error-001.phpt
527
B
-rw-r--r--
2025-04-09 02:56
Save
Rename
--TEST-- MongoDB\Driver\Exception\BulkWriteException::hasErrorLabel() with writeConcernError --SKIPIF-- <?php require __DIR__ . "/../utils/basic-skipif.inc"; ?> <?php skip_if_not_live(); ?> <?php skip_if_no_failcommand_failpoint(); ?> <?php skip_if_not_clean(); ?> --FILE-- <?php require_once __DIR__ . "/../utils/basic.inc"; // Disable retryWrites since we want to check for a RetryableWriteError error label $manager = create_test_manager(URI, ['retryWrites' => false]); // Select a specific server for future operations to avoid mongos switching in sharded clusters $server = $manager->selectServer(new \MongoDB\Driver\ReadPreference('primary')); configureTargetedFailPoint($server, 'failCommand', [ 'times' => 1 ], [ 'failCommands' => ['insert'], 'writeConcernError' => [ 'code' => 91, 'errmsg' => 'Replication is being shut down', 'errorLabels' => ['RetryableWriteError'], ], ]); $bulk = new MongoDB\Driver\BulkWrite; $bulk->insert(['x' => 1]); try { $server->executeBulkWrite(NS, $bulk); } catch (MongoDB\Driver\Exception\BulkWriteException $e) { var_dump($e->hasErrorLabel('RetryableWriteError')); } ?> ===DONE=== <?php exit(0); ?> --EXPECT-- bool(true) ===DONE===