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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/**
* Test of complex sharding initialization
*/
(function() {
'use strict';
function shardingTestUsingObjects() {
// TODO: SERVER-33444 remove shardAsReplicaSet: false
var st = new ShardingTest({
mongos: {s0: {verbose: 6}, s1: {verbose: 5}},
config: {c0: {verbose: 4}},
shards: {d0: {verbose: 3}, rs1: {nodes: {d0: {verbose: 2}, a1: {verbose: 1}}}},
other: {shardAsReplicaSet: false}
});
var s0 = st.s0;
assert.eq(s0, st._mongos[0]);
var s1 = st.s1;
assert.eq(s1, st._mongos[1]);
var c0 = st.c0;
assert.eq(c0, st._configServers[0]);
var d0 = st.d0;
assert.eq(d0, st._connections[0]);
var rs1 = st.rs1;
assert.eq(rs1, st._rsObjects[1]);
var rs1_d0 = rs1.nodes[0];
var rs1_a1 = rs1.nodes[1];
assert(s0.commandLine.hasOwnProperty("vvvvvv"));
assert(s1.commandLine.hasOwnProperty("vvvvv"));
assert(c0.commandLine.hasOwnProperty("vvvv"));
assert(d0.commandLine.hasOwnProperty("vvv"));
assert(rs1_d0.commandLine.hasOwnProperty("vv"));
assert(rs1_a1.commandLine.hasOwnProperty("v"));
st.stop();
}
function shardingTestUsingArrays() {
// TODO: Remove 'shardAsReplicaSet: false' when SERVER-32672 is fixed.
var st = new ShardingTest({
mongos: [{verbose: 5}, {verbose: 4}],
config: [{verbose: 3}],
shards: [{verbose: 2}, {verbose: 1}],
other: {shardAsReplicaSet: false}
});
var s0 = st.s0;
assert.eq(s0, st._mongos[0]);
var s1 = st.s1;
assert.eq(s1, st._mongos[1]);
var c0 = st.c0;
assert.eq(c0, st._configServers[0]);
var d0 = st.d0;
assert.eq(d0, st._connections[0]);
var d1 = st.d1;
assert.eq(d1, st._connections[1]);
assert(s0.commandLine.hasOwnProperty("vvvvv"));
assert(s1.commandLine.hasOwnProperty("vvvv"));
assert(c0.commandLine.hasOwnProperty("vvv"));
assert(d0.commandLine.hasOwnProperty("vv"));
assert(d1.commandLine.hasOwnProperty("v"));
st.stop();
}
shardingTestUsingObjects();
shardingTestUsingArrays();
})();
|