-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
aggregate.test.js
72 lines (56 loc) · 2.26 KB
/
aggregate.test.js
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
'use strict';
const { expect } = require('chai');
const { AggregateOperation } = require('../../mongodb');
describe('AggregateOperation', function () {
const db = 'test';
describe('#constructor', function () {
context('when out is in the options', function () {
const operation = new AggregateOperation(db, [], { out: 'test', dbName: db });
it('sets trySecondaryWrite to true', function () {
expect(operation.trySecondaryWrite).to.be.true;
});
});
context('when $out is the last stage', function () {
const operation = new AggregateOperation(db, [{ $out: 'test' }], { dbName: db });
it('sets trySecondaryWrite to true', function () {
expect(operation.trySecondaryWrite).to.be.true;
});
});
context('when $out is not the last stage', function () {
const operation = new AggregateOperation(db, [{ $out: 'test' }, { $project: { name: 1 } }], {
dbName: db
});
it('sets trySecondaryWrite to false', function () {
expect(operation.trySecondaryWrite).to.be.false;
});
});
context('when $merge is the last stage', function () {
const operation = new AggregateOperation(db, [{ $merge: { into: 'test' } }], { dbName: db });
it('sets trySecondaryWrite to true', function () {
expect(operation.trySecondaryWrite).to.be.true;
});
});
context('when $merge is not the last stage', function () {
const operation = new AggregateOperation(
db,
[{ $merge: { into: 'test' } }, { $project: { name: 1 } }],
{ dbName: db }
);
it('sets trySecondaryWrite to false', function () {
expect(operation.trySecondaryWrite).to.be.false;
});
});
context('when no writable stages in empty pipeline', function () {
const operation = new AggregateOperation(db, [], { dbName: db });
it('sets trySecondaryWrite to false', function () {
expect(operation.trySecondaryWrite).to.be.false;
});
});
context('when no writable stages', function () {
const operation = new AggregateOperation(db, [{ $project: { name: 1 } }], { dbName: db });
it('sets trySecondaryWrite to false', function () {
expect(operation.trySecondaryWrite).to.be.false;
});
});
});
});