summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/group_cond.js
blob: 1ab6aa827c61f119bcbf5ce67a4e18546ce33696 (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
44
'use strict';

/**
 * group_cond.js
 *
 * Inserts 1000 documents with a field set to a random
 * float value.  The group command is then used to partition these documents
 * into one of ten buckets:
 * [0, 0.09x), [0.10, 0.19x), ..., [0.80, 0.89x), [0.90, 1.0)
 *
 * To increase testing coverage, the float field is indexed and
 * a 'cond' document is supplied to the group command.
 *
 */

load('jstests/concurrency/fsm_libs/extend_workload.js');  // for extendWorkload
load('jstests/concurrency/fsm_workloads/group.js');       // for $config

var $config =
    extendWorkload($config,
                   function($config, $super) {
                       $config.setup = function setup(db, collName, cluster) {
                           $super.setup.apply(this, arguments);
                           assertAlways.commandWorked(db[collName].ensureIndex({rand: 1}));
                       };

                       $config.states.group = function group(db, collName) {
                           var cmdObj = this.generateGroupCmdObj(collName);
                           cmdObj.group.cond = {
                               rand: {$gte: 0.5}
                           };
                           var res = db.runCommand(cmdObj);
                           assertWhenOwnColl.commandWorked(res);

                           assertWhenOwnColl.lte(res.count, this.numDocs);
                           assertWhenOwnColl.lte(res.keys, 5);
                           assertWhenOwnColl(function() {
                               assertWhenOwnColl.lte(res.retval.length, 5);
                               assertWhenOwnColl.eq(this.sumBucketCount(res.retval), res.count);
                           }.bind(this));
                       };

                       return $config;
                   });