summaryrefslogtreecommitdiff
path: root/jstests/aggregation/bugs/server42756.js
blob: 5e710a377e9b50613bb26ad728ec51f2b7073af5 (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
45
46
47
48
49
// SERVER-42756 Test that commutative arithmetic operations with special arguments doesn't violate
// commutativity.
// @tags: [
//   sbe_incompatible,
// ]
(function() {
"use strict";

const coll = db[jsTest.name()];
coll.drop();
const numbers = [1.0, NumberInt("1"), NumberLong("1"), NumberDecimal("1.0")];
const specials = [{val: NaN, path: "$nan"}, {val: Infinity, path: "$inf"}];

assert.commandWorked(coll.insert({inf: Infinity, nan: NaN}));

["$multiply", "$add", "$sum"].forEach((op) => {
    (function testCommutativityWithConstArguments() {
        specials.forEach((special) => {
            numbers.forEach((num) => {
                const expected = [
                    {a: (num instanceof NumberDecimal ? NumberDecimal(special.val) : special.val)}
                ];
                assert.eq(expected,
                          coll.aggregate([{$project: {a: {[op]: [special.val, num]}, _id: 0}}])
                              .toArray());
                assert.eq(expected,
                          coll.aggregate([{$project: {a: {[op]: [num, special.val]}, _id: 0}}])
                              .toArray());
            });
        });
    })();

    (function testCommutativityWithNonConstArgument() {
        specials.forEach((special) => {
            numbers.forEach((num) => {
                const expected = [
                    {a: (num instanceof NumberDecimal ? NumberDecimal(special.val) : special.val)}
                ];
                assert.eq(expected,
                          coll.aggregate([{$project: {a: {[op]: [special.path, num]}, _id: 0}}])
                              .toArray());
                assert.eq(expected,
                          coll.aggregate([{$project: {a: {[op]: [num, special.path]}, _id: 0}}])
                              .toArray());
            });
        });
    })();
});
})();