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 /
cursorid /
Delete
Unzip
Name
Size
Permission
Date
Action
cursorid-001.phpt
1.04
KB
-rw-r--r--
2025-04-09 02:56
cursorid-002.phpt
1.62
KB
-rw-r--r--
2025-04-09 02:56
cursorid-debug-001.phpt
404
B
-rw-r--r--
2025-04-09 02:56
cursorid-debug-002.phpt
489
B
-rw-r--r--
2025-04-09 02:56
cursorid-debug-003.phpt
481
B
-rw-r--r--
2025-04-09 02:56
cursorid-serialization-002.phpt
1014
B
-rw-r--r--
2025-04-09 02:56
cursorid-serialization_error-001.phpt
487
B
-rw-r--r--
2025-04-09 02:56
cursorid-serialization_error-002.phpt
487
B
-rw-r--r--
2025-04-09 02:56
cursorid-set_state-001.phpt
335
B
-rw-r--r--
2025-04-09 02:56
cursorid-set_state_error-001.phpt
465
B
-rw-r--r--
2025-04-09 02:56
cursorid-tostring-001.phpt
289
B
-rw-r--r--
2025-04-09 02:56
cursorid-var_export-001.phpt
428
B
-rw-r--r--
2025-04-09 02:56
cursorid_error-001.phpt
255
B
-rw-r--r--
2025-04-09 02:56
Save
Rename
--TEST-- MongoDB\Driver\CursorId BSON serialization for killCursors command --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(); // Select a specific server for future operations to avoid mongos switching in sharded clusters $server = $manager->selectServer(new \MongoDB\Driver\ReadPreference('primary')); $bulk = new MongoDB\Driver\BulkWrite(); $bulk->insert(['_id' => 1]); $bulk->insert(['_id' => 2]); $bulk->insert(['_id' => 3]); $server->executeBulkWrite(NS, $bulk); $cursor = $server->executeQuery(NS, new MongoDB\Driver\Query([], ['batchSize' => 2])); $cursorId = $cursor->getId(); $command = new MongoDB\Driver\Command([ 'killCursors' => COLLECTION_NAME, 'cursors' => [ $cursorId ], ]); /* Since the killCursors command result includes cursor IDs as 64-bit integers, * unserializing the result document requires a 64-bit platform. */ $result = $server->executeCommand(DATABASE_NAME, $command)->toArray()[0]; printf("Killed %d cursor(s)\n", count($result->cursorsKilled)); printf("Killed expected cursor: %s\n", (string) $cursorId === (string) $result->cursorsKilled[0] ? 'yes' : 'no'); ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- Deprecated: MongoDB\Driver\Cursor::getId(): The method "MongoDB\Driver\Cursor::getId" will no longer return a "MongoDB\Driver\CursorId" instance in the future. Pass "true" as argument to change to the new behavior and receive a "MongoDB\BSON\Int64" instance instead. in %s Killed 1 cursor(s) Killed expected cursor: yes ===DONE===