-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy pathbson-equal.spec.ts
111 lines (89 loc) · 3.02 KB
/
bson-equal.spec.ts
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import { expect } from 'chai';
import { bsonEqual } from '.';
import { ObjectId, Decimal128, Long, Int32, Double } from 'bson';
describe('#bsonEqual', function () {
context('when the value is an object id', function () {
context('when the values are equal', function () {
const id = new ObjectId();
it('returns true', function () {
expect(bsonEqual(id, id)).to.equal(true);
});
});
context('when the values are not equal', function () {
const id = new ObjectId();
const other = new ObjectId();
it('returns false', function () {
expect(bsonEqual(id, other)).to.equal(false);
});
});
});
context('when the value is a decimal 128', function () {
context('when the values are equal', function () {
const first = new Decimal128('12.45');
const second = new Decimal128('12.45');
it('returns true', function () {
expect(bsonEqual(first, second)).to.equal(true);
});
});
context('when the values are not equal', function () {
const first = new Decimal128('12.45');
const second = new Decimal128('112.123');
it('returns false', function () {
expect(bsonEqual(first, second)).to.equal(false);
});
});
});
context('when the value is a long', function () {
context('when the values are equal', function () {
const first = new Long(12);
const second = new Long(12);
it('returns true', function () {
expect(bsonEqual(first, second)).to.equal(true);
});
});
context('when the values are not equal', function () {
const first = new Long(12);
const second = new Long(15);
it('returns false', function () {
expect(bsonEqual(first, second)).to.equal(false);
});
});
});
context('when the value is an int32', function () {
context('when the values are equal', function () {
const first = new Int32(12);
const second = new Int32(12);
it('returns true', function () {
expect(bsonEqual(first, second)).to.equal(true);
});
});
context('when the values are not equal', function () {
const first = new Int32(12);
const second = new Int32(15);
it('returns false', function () {
expect(bsonEqual(first, second)).to.equal(false);
});
});
});
context('when the value is a double', function () {
context('when the values are equal', function () {
const first = new Double(12.2);
const second = new Double(12.2);
it('returns true', function () {
expect(bsonEqual(first, second)).to.equal(true);
});
});
context('when the values are not equal', function () {
const first = new Double(12.2);
const second = new Double(15.2);
it('returns false', function () {
expect(bsonEqual(first, second)).to.equal(false);
});
});
});
context('when the value is a string', function () {
it('returns undefined', function () {
expect(bsonEqual('', '')).to.equal(undefined);
});
});
});