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
|
--TEST--
Test for PHP-537: Support for server-side configrable document and message size
--SKIPIF--
<?php $needs = "2.4.0"; ?>
<?php require_once "tests/utils/standalone.inc";?>
--FILE--
<?php
require_once "tests/utils/server.inc";
$nfo = MongoShellServer::getStandaloneInfo();
$m = new MongoClient($nfo);
$c = $m->phpunit->test;
echo "This document should be just too large: ";
$d = array();
$d['content'] = str_repeat('x', 16 * 1024 * 1024);
try {
$c->insert($d);
} catch (Exception $e) {
echo $e->getMessage(), "\n";
}
echo "This document should just fit: ";
$d = array();
$d['content'] = str_repeat('x', 16 * 1024 * 1024 - 36);
try {
$c->insert($d);
echo "it fit!\n";
} catch (Exception $e) {
echo $e->getMessage(), "\n";
}
echo "Batch insert with 4 documents: ";
try {
$c->batchInsert(array($d, $d, $d, $d));
echo "it fit!\n";
} catch (Exception $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECTF--
This document should be just too large: document fragment is too large: 16777252, max: 16777216
This document should just fit: it fit!
Batch insert with 4 documents: current batch size is too large: 50331681, max: 48000000
|