summaryrefslogtreecommitdiff
path: root/jstests/mmap_v1/capped8.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/mmap_v1/capped8.js')
-rw-r--r--jstests/mmap_v1/capped8.js61
1 files changed, 32 insertions, 29 deletions
diff --git a/jstests/mmap_v1/capped8.js b/jstests/mmap_v1/capped8.js
index 81c261ef985..68b3deb0b2a 100644
--- a/jstests/mmap_v1/capped8.js
+++ b/jstests/mmap_v1/capped8.js
@@ -4,17 +4,20 @@ Random.setRandomSeed();
t = db.jstests_capped8;
-function debug( x ) {
-// printjson( x );
-}
+function debug(x) {
+ // printjson( x );
+}
/** Generate an object with a string field of specified length */
-function obj( size, x ) {
- return {X:x, a:new Array( size + 1 ).toString()};
+function obj(size, x) {
+ return {
+ X: x,
+ a: new Array(size + 1).toString()
+ };
}
-function withinTwo( a, b ) {
- assert( Math.abs( a - b ) <= 2, "not within one: " + a + ", " + b );
+function withinTwo(a, b) {
+ assert(Math.abs(a - b) <= 2, "not within one: " + a + ", " + b);
}
var X = 0;
@@ -23,16 +26,16 @@ var X = 0;
* Insert enough documents of the given size spec that the collection will
* contain only documents having this size spec.
*/
-function insertManyRollingOver( objsize ) {
+function insertManyRollingOver(objsize) {
// Add some variability, as the precise number can trigger different cases.
X++;
n = 250 + Random.randInt(10);
assert(t.count() == 0 || t.findOne().X != X);
- for( i = 0; i < n; ++i ) {
- t.save( obj( objsize, X ) );
- debug( t.count() );
+ for (i = 0; i < n; ++i) {
+ t.save(obj(objsize, X));
+ debug(t.count());
}
if (t.findOne().X != X) {
@@ -48,62 +51,62 @@ function insertManyRollingOver( objsize ) {
* Insert some documents in such a way that there may be an empty extent, then
* truncate the capped collection.
*/
-function insertAndTruncate( first ) {
+function insertAndTruncate(first) {
myInitialCount = t.count();
// Insert enough documents to make the capped allocation loop over.
- insertManyRollingOver( 150 );
+ insertManyRollingOver(150);
myFiftyCount = t.count();
// Insert documents that are too big to fit in the smaller extents.
- insertManyRollingOver( 3000 );
+ insertManyRollingOver(3000);
myTwokCount = t.count();
- if ( first ) {
+ if (first) {
initialCount = myInitialCount;
fiftyCount = myFiftyCount;
twokCount = myTwokCount;
// Sanity checks for collection count
- assert( fiftyCount > initialCount );
- assert( fiftyCount > twokCount );
+ assert(fiftyCount > initialCount);
+ assert(fiftyCount > twokCount);
} else {
// Check that we are able to insert roughly the same number of documents
// after truncating. The exact values are slightly variable as a result
// of the capped allocation algorithm and where the remaining entry is.
- withinTwo( initialCount, myInitialCount );
- withinTwo( fiftyCount, myFiftyCount );
- withinTwo( twokCount, myTwokCount );
+ withinTwo(initialCount, myInitialCount);
+ withinTwo(fiftyCount, myFiftyCount);
+ withinTwo(twokCount, myTwokCount);
}
count = t.count();
// Check that we can truncate the collection successfully.
- assert.commandWorked( db.runCommand( { captrunc:"jstests_capped8", n:count - 1, inc:false } ) );
- assert.eq( 1, t.count() );
+ assert.commandWorked(db.runCommand({captrunc: "jstests_capped8", n: count - 1, inc: false}));
+ assert.eq(1, t.count());
}
/** Test truncating and subsequent inserts */
function testTruncate() {
- insertAndTruncate( true );
- insertAndTruncate( false );
- insertAndTruncate( false );
+ insertAndTruncate(true);
+ insertAndTruncate(false);
+ insertAndTruncate(false);
}
var pass = 1;
print("pass " + pass++);
t.drop();
-db._dbCommand( { create:"jstests_capped8", capped: true, $nExtents: [ 10000, 10000, 4000 ] } );
+db._dbCommand({create: "jstests_capped8", capped: true, $nExtents: [10000, 10000, 4000]});
testTruncate();
print("pass " + pass++);
t.drop();
-db._dbCommand( { create:"jstests_capped8", capped: true, $nExtents: [ 10000, 1000, 4000 ] } );
+db._dbCommand({create: "jstests_capped8", capped: true, $nExtents: [10000, 1000, 4000]});
testTruncate();
print("pass " + pass++);
t.drop();
-db._dbCommand( { create:"jstests_capped8", capped: true, $nExtents: [ 10000, 4000 ] } );
+db._dbCommand({create: "jstests_capped8", capped: true, $nExtents: [10000, 4000]});
testTruncate();
print("pass " + pass++);
t.drop();
-db._dbCommand( { create:"jstests_capped8", capped: true, $nExtents: [ 10000 ] } );
+db._dbCommand({create: "jstests_capped8", capped: true, $nExtents: [10000]});
testTruncate();
t.drop();