summaryrefslogtreecommitdiff
path: root/jstests/repl/block2.js
blob: 0e34758e95b488eaf4de8103704544815e4dcb63 (plain)
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
45

var rt = new ReplTest( "block1" );

m = rt.start( true );
s = rt.start( false );

function setup(){
    
    dbm = m.getDB( "foo" );
    dbs = s.getDB( "foo" );
    
    tm = dbm.bar;
    ts = dbs.bar;
}
setup();

function check( msg ){
    assert.eq( tm.count() , ts.count() , "check: " + msg );
}

check( "A" );

tm.save( { x : 1 } );
dbm.getLastError( 2 );
check( "B" );

tm.save( { x : 2 } );
dbm.getLastError( 2 , 500 );
check( "C" );

rt.stop( false );
tm.save( { x : 3 } )
assert.eq( 3 , tm.count() , "D1" );
assert.throws( function(){ dbm.getLastError( 2 , 500 ); } , "D2" )

s = rt.start( false )
setup();
dbm.getLastError( 2 , 30000 )
check( "D3" )

rt.stop();