summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/cluster_analyze_command.js
blob: 8dea667053bf637474441d62bb75f2b7e78051fb (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
(function() {
"use strict";

load("jstests/libs/sbe_util.js");  // For checkSBEEnabled.

const st = new ShardingTest({
    shards: 2,
    mongos: 1,
    other: {
        shardOptions: {setParameter: {featureFlagCommonQueryFramework: true}},
        mongosOptions: {setParameter: {featureFlagCommonQueryFramework: true}}
    }
});

const db = st.getDB("test");

if (!checkSBEEnabled(db)) {
    jsTestLog("Skipping test because SBE is not enabled");
    st.stop();
    return;
}

const coll = db.analyze_coll;
coll.drop();

assert.commandWorked(st.s.adminCommand({enableSharding: db.getName()}));
st.ensurePrimaryShard(db.getName(), st.shard1.shardName);
assert.commandWorked(
    st.s.adminCommand({shardCollection: coll.getFullName(), key: {_id: "hashed"}}));

assert.commandWorked(coll.insert({a: 1, b: 2}));

let res = db.runCommand({analyze: coll.getName()});
assert.commandWorked(res);

res = db.runCommand({analyze: coll.getName(), apiVersion: "1", apiStrict: true});
assert.commandFailedWithCode(res, ErrorCodes.APIStrictError);

res = db.runCommand({analyze: coll.getName(), writeConcern: {w: 1}});
assert.commandWorked(res);

st.stop();
})();