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
46
47
48
49
|
// Test persistence of list of dbs to add.
var baseName = "jstests_repl7test";
doTest = function( signal ) {
ports = allocatePorts( 2 );
// spec small oplog for fast startup on 64bit machines
m = startMongod( "--port", ports[ 0 ], "--dbpath", "/data/db/" + baseName + "-master", "--master", "--oplogSize", "1", "--nohttpinterface", "--noprealloc", "--bind_ip", "127.0.0.1" );
for( n = "a"; n != "aaaaa"; n += "a" ) {
m.getDB( n ).a.save( {x:1} );
}
s = startMongod( "--port", ports[ 1 ], "--dbpath", "/data/db/" + baseName + "-slave", "--slave", "--source", "127.0.0.1:" + ports[ 0 ], "--nohttpinterface", "--noprealloc", "--bind_ip", "127.0.0.1" );
assert.soon( function() {
return -1 != s.getDBNames().indexOf( "aa" );
}, "aa timeout", 60000, 1000 );
stopMongod( ports[ 1 ], signal );
s = startMongoProgram( "mongod", "--port", ports[ 1 ], "--dbpath", "/data/db/" + baseName + "-slave", "--slave", "--source", "127.0.0.1:" + ports[ 0 ], "--nohttpinterface", "--noprealloc", "--bind_ip", "127.0.0.1" );
assert.soon( function() {
for( n = "a"; n != "aaaaa"; n += "a" ) {
if ( -1 == s.getDBNames().indexOf( n ) )
return false;
}
return true;
}, "a-aaaa timeout", 60000, 1000 );
assert.soon( function() {
for( n = "a"; n != "aaaaa"; n += "a" ) {
if ( 1 != m.getDB( n ).a.find().count() ) {
return false;
}
}
return true; }, "a-aaaa count timeout" );
sleep( 300 );
ports.forEach( function( x ) { stopMongod( x ); } );
}
doTest( 15 ); // SIGTERM
doTest( 9 ); // SIGKILL
|