summaryrefslogtreecommitdiff
path: root/jstests/sharding/basic_sharding_params.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/sharding/basic_sharding_params.js')
-rw-r--r--jstests/sharding/basic_sharding_params.js45
1 files changed, 20 insertions, 25 deletions
diff --git a/jstests/sharding/basic_sharding_params.js b/jstests/sharding/basic_sharding_params.js
index 7b23666e702..f21c4d17784 100644
--- a/jstests/sharding/basic_sharding_params.js
+++ b/jstests/sharding/basic_sharding_params.js
@@ -1,31 +1,27 @@
// Test of complex sharding initialization
function shardingTestUsingObjects() {
- 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 } } }
- }
- } );
+ 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}}}}
+ });
var s0 = st.s0;
- assert.eq( s0, st._mongos[0] );
+ assert.eq(s0, st._mongos[0]);
var s1 = st.s1;
- assert.eq( s1, st._mongos[1] );
+ assert.eq(s1, st._mongos[1]);
var c0 = st.c0;
- assert.eq( c0, st._configServers[0] );
+ assert.eq(c0, st._configServers[0]);
var d0 = st.d0;
- assert.eq( d0, st._connections[0] );
+ assert.eq(d0, st._connections[0]);
var rs1 = st.rs1;
- assert.eq( rs1, st._rsObjects[1] );
+ assert.eq(rs1, st._rsObjects[1]);
var rs1_d0 = rs1.nodes[0];
var rs1_a1 = rs1.nodes[1];
@@ -41,26 +37,26 @@ function shardingTestUsingObjects() {
}
function shardingTestUsingArrays() {
- var st = new ShardingTest( {
- mongos : [{ verbose : 5 }, { verbose : 4 } ],
- config : [{ verbose : 3 }],
- shards : [{ verbose : 2 }, { verbose : 1 } ]
+ var st = new ShardingTest({
+ mongos: [{verbose: 5}, {verbose: 4}],
+ config: [{verbose: 3}],
+ shards: [{verbose: 2}, {verbose: 1}]
});
var s0 = st.s0;
- assert.eq( s0, st._mongos[0] );
+ assert.eq(s0, st._mongos[0]);
var s1 = st.s1;
- assert.eq( s1, st._mongos[1] );
+ assert.eq(s1, st._mongos[1]);
var c0 = st.c0;
- assert.eq( c0, st._configServers[0] );
+ assert.eq(c0, st._configServers[0]);
var d0 = st.d0;
- assert.eq( d0, st._connections[0] );
+ assert.eq(d0, st._connections[0]);
var d1 = st.d1;
- assert.eq( d1, st._connections[1] );
+ assert.eq(d1, st._connections[1]);
assert(s0.commandLine.hasOwnProperty("vvvvv"));
assert(s1.commandLine.hasOwnProperty("vvvv"));
@@ -73,4 +69,3 @@ function shardingTestUsingArrays() {
shardingTestUsingObjects();
shardingTestUsingArrays();
-