-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathaggregate.test.ts
More file actions
88 lines (70 loc) · 2.74 KB
/
aggregate.test.ts
File metadata and controls
88 lines (70 loc) · 2.74 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import { expect } from 'chai';
import { AggregateOperation } from '../../../src/operations/aggregate';
import { MongoDBNamespace, WriteConcern } from '../../mongodb';
describe('AggregateOperation', function () {
const ns = new MongoDBNamespace('test', 'coll');
describe('#constructor', function () {
context('when out is in the options', function () {
const operation = new AggregateOperation(ns, [], { out: 'test', dbName: ns.db });
it('sets hasWriteStage to true', function () {
expect(operation.hasWriteStage).to.be.true;
});
});
context('when $out is the last stage', function () {
const operation = new AggregateOperation(ns, [{ $out: 'test' }], { dbName: ns.db });
it('sets hasWriteStage to true', function () {
expect(operation.hasWriteStage).to.be.true;
});
});
context('when $out is not the last stage', function () {
const operation = new AggregateOperation(ns, [{ $out: 'test' }, { $project: { name: 1 } }], {
dbName: ns.db
});
it('sets hasWriteStage to false', function () {
expect(operation.hasWriteStage).to.be.false;
});
});
context('when $merge is the last stage', function () {
const operation = new AggregateOperation(ns, [{ $merge: { into: 'test' } }], {
dbName: ns.db
});
it('sets hasWriteStage to true', function () {
expect(operation.hasWriteStage).to.be.true;
});
});
context('when $merge is not the last stage', function () {
const operation = new AggregateOperation(
ns,
[{ $merge: { into: 'test' } }, { $project: { name: 1 } }],
{ dbName: ns.db }
);
it('sets hasWriteStage to false', function () {
expect(operation.hasWriteStage).to.be.false;
});
});
context('when no writable stages in empty pipeline', function () {
const operation = new AggregateOperation(ns, [], { dbName: ns.db });
it('sets hasWriteStage to false', function () {
expect(operation.hasWriteStage).to.be.false;
});
});
context('when no writable stages', function () {
const operation = new AggregateOperation(ns, [{ $project: { name: 1 } }], { dbName: ns });
it('sets hasWriteStage to false', function () {
expect(operation.hasWriteStage).to.be.false;
});
});
context('when explain is set', function () {
context('when writeConcern is set', function () {
const operation = new AggregateOperation(ns, [], {
dbName: ns.db,
explain: true,
writeConcern: WriteConcern.fromOptions({ wtimeoutMS: 1000 })
});
it('does not raise an error', function () {
expect(operation.explain).to.exist;
});
});
});
});
});