@@ -16,10 +16,26 @@ const Long = BSON.Long;
16
16
const MaxKey = BSON . MaxKey ;
17
17
const MinKey = BSON . MinKey ;
18
18
const ObjectID = BSON . ObjectID ;
19
+ const ObjectId = BSON . ObjectId ;
19
20
const BSONRegExp = BSON . BSONRegExp ;
20
21
const BSONSymbol = BSON . BSONSymbol ;
21
22
const Timestamp = BSON . Timestamp ;
22
23
24
+ // test the old ObjectID class because MongoDB drivers still return it
25
+ // fall back to BSON's ObjectId in browser tests
26
+ function getOldObjectID ( ) {
27
+ try {
28
+ // do a dynamic resolve to avoid exception when running browser tests
29
+ const file = require . resolve ( 'mongodb' ) ;
30
+ return require ( file ) . ObjectID ;
31
+ }
32
+ catch ( e ) {
33
+ return ObjectId ; // if mongo is unavailable, e.g. browsers, just re-use BSON's
34
+ }
35
+ }
36
+
37
+ const OldObjectID = getOldObjectID ( ) ;
38
+
23
39
describe ( 'Extended JSON' , function ( ) {
24
40
let doc = { } ;
25
41
@@ -41,7 +57,9 @@ describe('Extended JSON', function() {
41
57
long : Long . fromNumber ( 200 ) ,
42
58
maxKey : new MaxKey ( ) ,
43
59
minKey : new MinKey ( ) ,
44
- objectId : ObjectID . createFromHexString ( '111111111111111111111111' ) ,
60
+ objectId : ObjectId . createFromHexString ( '111111111111111111111111' ) ,
61
+ objectID : ObjectID . createFromHexString ( '111111111111111111111111' ) ,
62
+ oldObjectID : OldObjectID . createFromHexString ( '111111111111111111111111' ) ,
45
63
regexp : new BSONRegExp ( 'hello world' , 'i' ) ,
46
64
symbol : new BSONSymbol ( 'symbol' ) ,
47
65
timestamp : Timestamp . fromNumber ( 1000 ) ,
@@ -55,7 +73,7 @@ describe('Extended JSON', function() {
55
73
it ( 'should correctly extend an existing mongodb module' , function ( ) {
56
74
// Serialize the document
57
75
var json =
58
- '{"_id":{"$numberInt":"100"},"gh":{"$numberInt":"1"},"binary":{"$binary":{"base64":"AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+Pw==","subType":"00"}},"date":{"$date":{"$numberLong":"1488372056737"}},"code":{"$code":"function() {}","$scope":{"a":{"$numberInt":"1"}}},"dbRef":{"$ref":"tests","$id":{"$numberInt":"1"},"$db":"test"},"decimal":{"$numberDecimal":"100"},"double":{"$numberDouble":"10.1"},"int32":{"$numberInt":"10"},"long":{"$numberLong":"200"},"maxKey":{"$maxKey":1},"minKey":{"$minKey":1},"objectId":{"$oid":"111111111111111111111111"},"regexp":{"$regularExpression":{"pattern":"hello world","options":"i"}},"symbol":{"$symbol":"symbol"},"timestamp":{"$timestamp":{"t":0,"i":1000}},"int32Number":{"$numberInt":"300"},"doubleNumber":{"$numberDouble":"200.2"},"longNumberIntFit":{"$numberLong":"7036874417766400"},"doubleNumberIntFit":{"$numberLong":"19007199250000000"}}' ;
76
+ '{"_id":{"$numberInt":"100"},"gh":{"$numberInt":"1"},"binary":{"$binary":{"base64":"AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+Pw==","subType":"00"}},"date":{"$date":{"$numberLong":"1488372056737"}},"code":{"$code":"function() {}","$scope":{"a":{"$numberInt":"1"}}},"dbRef":{"$ref":"tests","$id":{"$numberInt":"1"},"$db":"test"},"decimal":{"$numberDecimal":"100"},"double":{"$numberDouble":"10.1"},"int32":{"$numberInt":"10"},"long":{"$numberLong":"200"},"maxKey":{"$maxKey":1},"minKey":{"$minKey":1},"objectId":{"$oid":"111111111111111111111111"},"objectID":{"$oid":"111111111111111111111111"},"oldObjectID":{"$oid":"111111111111111111111111"},"regexp":{"$regularExpression":{"pattern":"hello world","options":"i"}},"symbol":{"$symbol":"symbol"},"timestamp":{"$timestamp":{"t":0,"i":1000}},"int32Number":{"$numberInt":"300"},"doubleNumber":{"$numberDouble":"200.2"},"longNumberIntFit":{"$numberLong":"7036874417766400"},"doubleNumberIntFit":{"$numberLong":"19007199250000000"}}' ;
59
77
60
78
assert . equal ( json , EJSON . stringify ( doc , null , 0 , { relaxed : false } ) ) ;
61
79
} ) ;
@@ -98,17 +116,36 @@ describe('Extended JSON', function() {
98
116
} ) ;
99
117
100
118
it ( 'should correctly serialize bson types when they are values' , function ( ) {
101
- var serialized = EJSON . stringify ( new ObjectID ( '591801a468f9e7024b6235ea' ) , { relaxed : false } ) ;
119
+ var serialized = EJSON . stringify ( new ObjectId ( '591801a468f9e7024b6235ea' ) , { relaxed : false } ) ;
120
+ expect ( serialized ) . to . equal ( '{"$oid":"591801a468f9e7024b6235ea"}' ) ;
121
+ serialized = EJSON . stringify ( new ObjectID ( '591801a468f9e7024b6235ea' ) , { relaxed : false } ) ;
102
122
expect ( serialized ) . to . equal ( '{"$oid":"591801a468f9e7024b6235ea"}' ) ;
123
+ serialized = EJSON . stringify ( new OldObjectID ( '591801a468f9e7024b6235ea' ) , { relaxed : false } ) ;
124
+ expect ( serialized ) . to . equal ( '{"$oid":"591801a468f9e7024b6235ea"}' ) ;
125
+
103
126
serialized = EJSON . stringify ( new Int32 ( 42 ) , { relaxed : false } ) ;
104
127
expect ( serialized ) . to . equal ( '{"$numberInt":"42"}' ) ;
128
+ serialized = EJSON . stringify (
129
+ {
130
+ _id : { $nin : [ new ObjectId ( '591801a468f9e7024b6235ea' ) ] }
131
+ } ,
132
+ { relaxed : false }
133
+ ) ;
134
+ expect ( serialized ) . to . equal ( '{"_id":{"$nin":[{"$oid":"591801a468f9e7024b6235ea"}]}}' ) ;
105
135
serialized = EJSON . stringify (
106
136
{
107
137
_id : { $nin : [ new ObjectID ( '591801a468f9e7024b6235ea' ) ] }
108
138
} ,
109
139
{ relaxed : false }
110
140
) ;
111
141
expect ( serialized ) . to . equal ( '{"_id":{"$nin":[{"$oid":"591801a468f9e7024b6235ea"}]}}' ) ;
142
+ serialized = EJSON . stringify (
143
+ {
144
+ _id : { $nin : [ new OldObjectID ( '591801a468f9e7024b6235ea' ) ] }
145
+ } ,
146
+ { relaxed : false }
147
+ ) ;
148
+ expect ( serialized ) . to . equal ( '{"_id":{"$nin":[{"$oid":"591801a468f9e7024b6235ea"}]}}' ) ;
112
149
113
150
serialized = EJSON . stringify ( new Binary ( new Uint8Array ( [ 1 , 2 , 3 , 4 , 5 ] ) ) , { relaxed : false } ) ;
114
151
expect ( serialized ) . to . equal ( '{"$binary":{"base64":"AQIDBAU=","subType":"00"}}' ) ;
@@ -122,7 +159,7 @@ describe('Extended JSON', function() {
122
159
var parsed = EJSON . parse ( input ) ;
123
160
124
161
expect ( parsed ) . to . deep . equal ( {
125
- result : [ { _id : new ObjectID ( '591801a468f9e7024b623939' ) , emptyField : null } ]
162
+ result : [ { _id : new ObjectId ( '591801a468f9e7024b623939' ) , emptyField : null } ]
126
163
} ) ;
127
164
} ) ;
128
165
@@ -170,7 +207,9 @@ describe('Extended JSON', function() {
170
207
long : new Long ( 234 ) ,
171
208
maxKey : new MaxKey ( ) ,
172
209
minKey : new MinKey ( ) ,
210
+ objectId : ObjectId . createFromHexString ( '111111111111111111111111' ) ,
173
211
objectID : ObjectID . createFromHexString ( '111111111111111111111111' ) ,
212
+ oldObjectID : OldObjectID . createFromHexString ( '111111111111111111111111' ) ,
174
213
bsonRegExp : new BSONRegExp ( 'hello world' , 'i' ) ,
175
214
symbol : new BSONSymbol ( 'symbol' ) ,
176
215
timestamp : new Timestamp ( )
@@ -187,7 +226,9 @@ describe('Extended JSON', function() {
187
226
long : { $numberLong : '234' } ,
188
227
maxKey : { $maxKey : 1 } ,
189
228
minKey : { $minKey : 1 } ,
229
+ objectId : { $oid : '111111111111111111111111' } ,
190
230
objectID : { $oid : '111111111111111111111111' } ,
231
+ oldObjectID : { $oid : '111111111111111111111111' } ,
191
232
bsonRegExp : { $regularExpression : { pattern : 'hello world' , options : 'i' } } ,
192
233
symbol : { $symbol : 'symbol' } ,
193
234
timestamp : { $timestamp : { t : 0 , i : 0 } }
@@ -205,7 +246,9 @@ describe('Extended JSON', function() {
205
246
long : { $numberLong : '234' } ,
206
247
maxKey : { $maxKey : 1 } ,
207
248
minKey : { $minKey : 1 } ,
249
+ objectId : { $oid : '111111111111111111111111' } ,
208
250
objectID : { $oid : '111111111111111111111111' } ,
251
+ oldObjectID : { $oid : '111111111111111111111111' } ,
209
252
bsonRegExp : { $regularExpression : { pattern : 'hello world' , options : 'i' } } ,
210
253
symbol : { $symbol : 'symbol' } ,
211
254
timestamp : { $timestamp : { t : 0 , i : 0 } }
@@ -237,7 +280,9 @@ describe('Extended JSON', function() {
237
280
// minKey
238
281
expect ( result . minKey ) . to . be . an . instanceOf ( BSON . MinKey ) ;
239
282
// objectID
283
+ expect ( result . objectId . toString ( ) ) . to . equal ( '111111111111111111111111' ) ;
240
284
expect ( result . objectID . toString ( ) ) . to . equal ( '111111111111111111111111' ) ;
285
+ expect ( result . oldObjectID . toString ( ) ) . to . equal ( '111111111111111111111111' ) ;
241
286
//bsonRegExp
242
287
expect ( result . bsonRegExp ) . to . be . an . instanceOf ( BSON . BSONRegExp ) ;
243
288
expect ( result . bsonRegExp . pattern ) . to . equal ( 'hello world' ) ;
0 commit comments