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 /
writeError /
Delete
Unzip
Name
Size
Permission
Date
Action
writeerror-debug-001.phpt
859
B
-rw-r--r--
2025-04-09 02:56
writeerror-getCode-001.phpt
639
B
-rw-r--r--
2025-04-09 02:56
writeerror-getIndex-001.phpt
637
B
-rw-r--r--
2025-04-09 02:56
writeerror-getInfo-001.phpt
713
B
-rw-r--r--
2025-04-09 02:56
writeerror-getInfo-002.phpt
2.17
KB
-rw-r--r--
2025-04-09 02:56
writeerror-getMessage-001.phpt
746
B
-rw-r--r--
2025-04-09 02:56
writeerror_error-001.phpt
265
B
-rw-r--r--
2025-04-09 02:56
Save
Rename
--TEST-- MongoDB\Driver\WriteError::getInfo() exposes writeError.errInfo --DESCRIPTION-- CRUD spec prose test #2 https://github.com/mongodb/specifications/blob/master/source/crud/tests/README.rst#writeerror-details-exposes-writeerrors-errinfo --SKIPIF-- <?php require __DIR__ . "/../utils/basic-skipif.inc"; ?> <?php skip_if_server_version('<', '5.0'); ?> <?php skip_if_not_clean(); ?> --FILE-- <?php require_once __DIR__ . "/../utils/basic.inc"; class Test implements MongoDB\Driver\Monitoring\CommandSubscriber { private $errInfo; public function execute() { $manager = create_test_manager(); $manager->executeCommand(DATABASE_NAME, new MongoDB\Driver\Command([ 'create' => COLLECTION_NAME, 'validator' => ['x' => ['$type' => 'string']], ])); $bulk = new MongoDB\Driver\BulkWrite; $bulk->insert(['x' => 1]); MongoDB\Driver\Monitoring\addSubscriber($this); try { $manager->executeBulkWrite(NS, $bulk); } catch (MongoDB\Driver\Exception\BulkWriteException $e) { $writeError = $e->getWriteResult()->getWriteErrors()[0]; var_dump($writeError->getCode()); // DocumentValidationFailure(121) /* Note: we intentionally do not assert the contents of errInfo * since its structure could change between server versions. */ var_dump($writeError->getInfo() instanceof stdClass); var_dump($this->errInfo instanceof stdClass); var_dump($writeError->getInfo() == $this->errInfo); } MongoDB\Driver\Monitoring\removeSubscriber($this); } public function commandStarted(MongoDB\Driver\Monitoring\CommandStartedEvent $event): void { } public function commandSucceeded(MongoDB\Driver\Monitoring\CommandSucceededEvent $event): void { if ($event->getCommandName() === 'insert') { $this->errInfo = $event->getReply()->writeErrors[0]->errInfo ?? null; } } public function commandFailed(MongoDB\Driver\Monitoring\CommandFailedEvent $event): void { } } (new Test)->execute(); ?> ===DONE=== --EXPECTF-- int(121) bool(true) bool(true) bool(true) ===DONE===