diff options
Diffstat (limited to 'jstests/repl/master1.js')
-rw-r--r-- | jstests/repl/master1.js | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/jstests/repl/master1.js b/jstests/repl/master1.js index 1da0f29b9d4..85f116fb242 100644 --- a/jstests/repl/master1.js +++ b/jstests/repl/master1.js @@ -9,49 +9,49 @@ var baseName = "jstests_repl_master1test"; oplog = function() { - return m.getDB( "local" ).oplog.$main; + return m.getDB("local").oplog.$main; }; lastop = function() { - return oplog().find().sort( {$natural:-1} ).next(); + return oplog().find().sort({$natural: -1}).next(); }; am = function() { - return m.getDB( baseName ).a; + return m.getDB(baseName).a; }; -rt = new ReplTest( baseName ); +rt = new ReplTest(baseName); -m = rt.start( true ); +m = rt.start(true); -am().save( {} ); -assert.eq( "i", lastop().op ); +am().save({}); +assert.eq("i", lastop().op); op = lastop(); -printjson( op ); -op.ts.t = op.ts.t + 600000; // 10 minutes -assert.commandWorked(m.getDB( "local" ).runCommand( {godinsert:"oplog.$main", obj:op} )); +printjson(op); +op.ts.t = op.ts.t + 600000; // 10 minutes +assert.commandWorked(m.getDB("local").runCommand({godinsert: "oplog.$main", obj: op})); -rt.stop( true ); -m = rt.start( true, null, true ); +rt.stop(true); +m = rt.start(true, null, true); -assert.eq( op.ts.t, lastop().ts.t ); -am().save( {} ); -assert.eq( op.ts.t, lastop().ts.t ); -assert.eq( op.ts.i + 1, lastop().ts.i ); +assert.eq(op.ts.t, lastop().ts.t); +am().save({}); +assert.eq(op.ts.t, lastop().ts.t); +assert.eq(op.ts.i + 1, lastop().ts.i); op = lastop(); -printjson( op ); -op.ts.i = Math.pow(2,31)-1; -printjson( op ); -assert.commandWorked(m.getDB( "local" ).runCommand( {godinsert:"oplog.$main", obj:op} )); +printjson(op); +op.ts.i = Math.pow(2, 31) - 1; +printjson(op); +assert.commandWorked(m.getDB("local").runCommand({godinsert: "oplog.$main", obj: op})); -rt.stop( true ); -m = rt.start( true, null, true ); -assert.eq( op.ts.i, lastop().ts.i ); +rt.stop(true); +m = rt.start(true, null, true); +assert.eq(op.ts.i, lastop().ts.i); assert.throws(function() { - am().save( {} ); // triggers fassert because ofclock skew + am().save({}); // triggers fassert because ofclock skew }); -assert.neq(0, rt.stop( true )); // fasserted +assert.neq(0, rt.stop(true)); // fasserted |