deno.land / x / mongoose@6.7.5 / test / utils.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
'use strict';
/** * Module dependencies. */
const start = require('./common');
const MongooseBuffer = require('../lib/types/buffer');const ObjectId = require('../lib/types/objectid');const StateMachine = require('../lib/statemachine');const assert = require('assert');const utils = require('../lib/utils');
const mongoose = start.mongoose;const Schema = mongoose.Schema;
/** * Setup. */
const ActiveRoster = StateMachine.ctor('require', 'init', 'modify');
/** * Test. */
describe('utils', function() { describe('ActiveRoster', function() { it('should detect a path as required if it has been required', function() { const ar = new ActiveRoster(); ar.require('hello'); assert.equal(ar.paths.hello, 'require'); });
it('should detect a path as inited if it has been inited', function() { const ar = new ActiveRoster(); ar.init('hello'); assert.equal(ar.paths.hello, 'init'); });
it('should detect a path as modified', function() { const ar = new ActiveRoster(); ar.modify('hello'); assert.equal(ar.paths.hello, 'modify'); });
it('should remove a path from an old state upon a state change', function() { const ar = new ActiveRoster(); ar.init('hello'); ar.modify('hello'); assert.ok(!ar.states.init.hasOwnProperty('hello')); assert.ok(ar.states.modify.hasOwnProperty('hello')); });
it('forEach should be able to iterate through the paths belonging to one state', function() { const ar = new ActiveRoster(); ar.init('hello'); ar.init('goodbye'); ar.modify('world'); ar.require('foo'); ar.forEach('init', function(path) { assert.ok(~['hello', 'goodbye'].indexOf(path)); }); });
it('forEach should be able to iterate through the paths in the union of two or more states', function() { const ar = new ActiveRoster(); ar.init('hello'); ar.init('goodbye'); ar.modify('world'); ar.require('foo'); ar.forEach('modify', 'require', function(path) { assert.ok(~['world', 'foo'].indexOf(path)); }); });
it('forEach should iterate through all paths that have any state if given no state arguments', function() { const ar = new ActiveRoster(); ar.init('hello'); ar.init('goodbye'); ar.modify('world'); ar.require('foo'); ar.forEach(function(path) { assert.ok(~['hello', 'goodbye', 'world', 'foo'].indexOf(path)); }); });
it('should be able to detect if at least one path exists in a set of states', function() { const ar = new ActiveRoster(); ar.init('hello'); ar.modify('world'); assert.ok(ar.some('init')); assert.ok(ar.some('modify')); assert.ok(!ar.some('require')); assert.ok(ar.some('init', 'modify')); assert.ok(ar.some('init', 'require')); assert.ok(ar.some('modify', 'require')); });
it('should be able to `map` over the set of paths in a given state', function() { const ar = new ActiveRoster(); ar.init('hello'); ar.modify('world'); ar.require('iAmTheWalrus'); const suffixedPaths = ar.map('init', 'modify', function(path) { return path + '-suffix'; }); assert.deepEqual(suffixedPaths, ['hello-suffix', 'world-suffix']); });
it('should `map` over all states\' paths if no states are specified in a `map` invocation', function() { const ar = new ActiveRoster(); ar.init('hello'); ar.modify('world'); ar.require('iAmTheWalrus'); const suffixedPaths = ar.map(function(path) { return path + '-suffix'; }); assert.deepEqual(suffixedPaths, ['iAmTheWalrus-suffix', 'hello-suffix', 'world-suffix']); }); });
it('utils.options', function() { const o = { a: 1, b: 2, c: 3, 0: 'zero1' }; const defaults = { b: 10, d: 20, 0: 'zero2' }; const result = utils.options(defaults, o); assert.equal(result.a, 1); assert.equal(result.b, 2); assert.equal(result.c, 3); assert.equal(result.d, 20); assert.deepEqual(o.d, result.d); assert.equal(result['0'], 'zero1');
const result2 = utils.options(defaults); assert.equal(result2.b, 10); assert.equal(result2.d, 20); assert.equal(result2['0'], 'zero2');
// same properties/vals assert.deepEqual(defaults, result2);
// same object assert.notEqual(defaults, result2); });
it('deepEquals on ObjectIds', function() { const s = (new ObjectId()).toString();
const a = new ObjectId(s); const b = new ObjectId(s);
assert.ok(utils.deepEqual(a, b)); assert.ok(utils.deepEqual(a, a)); assert.ok(!utils.deepEqual(a, new ObjectId())); });
it('deepEquals on maps (gh-9549)', function() { const a = new Map([['a', 1], ['b', 2]]); let b = new Map([['a', 1], ['b', 2]]);
assert.ok(utils.deepEqual(a, b));
b = new Map([['a', 1]]); assert.ok(!utils.deepEqual(a, b));
b = new Map([['b', 2], ['a', 1]]); assert.ok(!utils.deepEqual(a, b)); });
it('deepEquals on MongooseDocumentArray works', function() { const A = new Schema({ a: String }); mongoose.deleteModel(/Test/); const M = mongoose.model('Test', new Schema({ a1: [A], a2: [A] }));
const m1 = new M({ a1: [{ a: 'Hi' }, { a: 'Bye' }] });
m1.a2 = m1.a1; assert.ok(utils.deepEqual(m1.a1, m1.a2));
const m2 = new M(); m2.init(m1.toObject());
assert.ok(utils.deepEqual(m1.a1, m2.a1));
m2.set(m1.toObject()); assert.ok(utils.deepEqual(m1.a1, m2.a1)); });
// gh-688 it('deepEquals with MongooseBuffer', function() { const str = 'this is the day'; const a = new MongooseBuffer(str); const b = new MongooseBuffer(str); const c = Buffer.from(str); const d = Buffer.from('this is the way'); const e = Buffer.from('other length');
assert.ok(utils.deepEqual(a, b)); assert.ok(utils.deepEqual(a, c)); assert.ok(!utils.deepEqual(a, d)); assert.ok(!utils.deepEqual(a, e)); assert.ok(!utils.deepEqual(a, [])); assert.ok(!utils.deepEqual([], a)); });
it('`deepEqual` treats objects with different order of keys as different (gh-9571)', function() { const user1 = { name: 'Hafez', age: 26 }; const user2 = { age: 26, name: 'Hafez' };
assert.equal(utils.deepEqual(user1, user2), false); });
it('deepEqual on arrays and non-arrays (gh-11417)', function() { assert.ok(!utils.deepEqual([], 2)); assert.ok(!utils.deepEqual(2, [])); });
describe('clone', function() { it('retains RegExp options gh-1355', function() { const a = new RegExp('hello', 'igm'); assert.ok(a.global); assert.ok(a.ignoreCase); assert.ok(a.multiline);
const b = utils.clone(a); assert.equal(b.source, a.source); assert.equal(a.global, b.global); assert.equal(a.ignoreCase, b.ignoreCase); assert.equal(a.multiline, b.multiline); });
it('clones objects created with Object.create(null)', function() { const o = Object.create(null); o.a = 0; o.b = '0'; o.c = 1; o.d = '1';
const out = utils.clone(o); assert.strictEqual(0, out.a); assert.strictEqual('0', out.b); assert.strictEqual(1, out.c); assert.strictEqual('1', out.d); assert.equal(Object.keys(out).length, 4); });
it('doesnt minimize empty objects in arrays to null (gh-7322)', function() { const o = { arr: [{ a: 42 }, {}, {}] };
const out = utils.clone(o, { minimize: true }); assert.deepEqual(out.arr[0], { a: 42 }); assert.deepEqual(out.arr[1], {}); assert.deepEqual(out.arr[2], {}); }); });
it('array.flatten', function() { const orig = [0, [1, 2, [3, 4, [5, [6]], 7], 8], 9]; assert.deepEqual([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], utils.array.flatten(orig)); });
it('array.unique', function() { const case1 = [1, 2, 3, 3, 5, 'a', 6, 'a']; assert.deepEqual(utils.array.unique(case1), [1, 2, 3, 5, 'a', 6]); const objId = new ObjectId('000000000000000000000001'); const case2 = [ 1, '000000000000000000000001', 1, objId, '000000000000000000000001', objId, 1 ]; assert.deepEqual(utils.array.unique(case2), [1, '000000000000000000000001', objId]); });
describe('merge', function() { it('merges two objects together without overriding properties & methods', function() { function To() { this.name = 'to'; this.toProperty = true; } To.prototype.getName = function() {}; To.prototype.toMethod = function() {};
function From() { this.name = 'from'; this.fromProperty = true; } From.prototype.getName = function() {}; From.prototype.fromMethod = function() {};
const to = new To(); const from = new From();
utils.merge(to, from);
assert.equal(to.name, 'to'); assert.equal(to.toProperty, true); assert.equal(to.fromProperty, true); assert.ok(to.getName === To.prototype.getName); assert.ok(to.toMethod === To.prototype.toMethod); assert.equal(to.fomMethod, From.prototype.fomMethod); }); });
describe('mergeClone', function() { it('handles object with valueOf() (gh-6059)', function() { const from = { val: { valueOf: function() { return 42; } } }; const to = { val: 41 };
utils.mergeClone(to, from);
assert.equal(to.val, 42); });
it('copies dates correctly (gh-6145)', function() { const from = { val: new Date('2011-06-01') }; const to = { val: new Date('2012-06-01') };
utils.mergeClone(to, from);
assert.ok(to.val instanceof Date); });
it('skips cloning types that have `toBSON()` if `bson` is set (gh-8299)', function() { const o = { toBSON() { return 'toBSON'; }, valueOf() { return 'valueOf()'; } };
const out = utils.clone(o, { bson: true }); assert.deepEqual(out, o); }); }); describe('errorToPOJO(...)', () => { it('converts an error to a POJO', () => { // Arrange const err = new Error('Something bad happened.'); err.metadata = { hello: 'world' };
// Act const pojoError = utils.errorToPOJO(err);
// Assert assert.equal(pojoError.message, 'Something bad happened.'); assert.ok(pojoError.stack); assert.deepEqual(pojoError.metadata, { hello: 'world' }); }); it('throws an error when argument is not an error object', () => { let errorWhenConverting; try { utils.errorToPOJO({ message: 'I am a POJO', stack: 'Does not matter' }); } catch (_err) { errorWhenConverting = _err; } assert.equal(errorWhenConverting.message, '`error` must be `instanceof Error`.'); }); it('works with classes that extend `Error`', () => { // Arrange class OperationalError extends Error { constructor(message) { super(message); } }
const err = new OperationalError('Something bad happened.'); err.metadata = { hello: 'world' };
// Act const pojoError = utils.errorToPOJO(err);
// Assert assert.equal(pojoError.message, 'Something bad happened.'); assert.ok(pojoError.stack); assert.deepEqual(pojoError.metadata, { hello: 'world' }); }); });});
mongoose

Version Info

Tagged at
a year ago