summaryrefslogtreecommitdiff
path: root/jstests/sharding/create_idx_empty_primary.js
blob: 16d2a921125f0414d2307afce2f3c053aab9667f (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
/**
 * Test to make sure that the createIndex command gets sent to all shards.
 */
(function() {
"use strict";

var st = new ShardingTest({ shards: 2 });

var testDB = st.s.getDB('test');

testDB.adminCommand({ enablesharding: 'test' });
var res = testDB.adminCommand({ movePrimary: 'test', to: 'shard0001' });
testDB.adminCommand({ shardcollection: 'test.user', key: { _id: 1 }});

// Move only chunk out of primary shard.
assert.commandWorked(testDB.adminCommand({ movechunk: 'test.user',
                                           find: { _id: 0 },
                                           to: 'shard0000' }));

assert.writeOK(testDB.user.insert({ _id: 0 }));

var res = testDB.user.ensureIndex({ i: 1 });
assert.commandWorked(res);

var indexes = testDB.user.getIndexes();
assert.eq(2, indexes.length);

indexes = st.d0.getDB('test').user.getIndexes();
assert.eq(2, indexes.length);

indexes = st.d1.getDB('test').user.getIndexes();
assert.eq(2, indexes.length);

st.stop();

})();