forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.test.js
448 lines (378 loc) · 12.1 KB
/
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
'use strict';
const {stringify} = require('jest-matcher-utils');
const {
emptyObject,
getObjectSubset,
getPath,
hasOwnProperty,
subsetEquality,
iterableEquality,
} = require('../utils');
describe('getPath()', () => {
test('property exists', () => {
expect(getPath({a: {b: {c: 5}}}, 'a.b.c')).toEqual({
hasEndProp: true,
lastTraversedObject: {c: 5},
traversedPath: ['a', 'b', 'c'],
value: 5,
});
expect(getPath({a: {b: {c: {d: 1}}}}, 'a.b.c.d')).toEqual({
hasEndProp: true,
lastTraversedObject: {d: 1},
traversedPath: ['a', 'b', 'c', 'd'],
value: 1,
});
});
test('property doesnt exist', () => {
expect(getPath({a: {b: {}}}, 'a.b.c')).toEqual({
hasEndProp: false,
lastTraversedObject: {},
traversedPath: ['a', 'b'],
value: undefined,
});
});
test('property exist but undefined', () => {
expect(getPath({a: {b: {c: undefined}}}, 'a.b.c')).toEqual({
hasEndProp: true,
lastTraversedObject: {c: undefined},
traversedPath: ['a', 'b', 'c'],
value: undefined,
});
});
test('property is a getter on class instance', () => {
class A {
get a() {
return 'a';
}
get b() {
return {c: 'c'};
}
}
expect(getPath(new A(), 'a')).toEqual({
hasEndProp: true,
lastTraversedObject: new A(),
traversedPath: ['a'],
value: 'a',
});
expect(getPath(new A(), 'b.c')).toEqual({
hasEndProp: true,
lastTraversedObject: {c: 'c'},
traversedPath: ['b', 'c'],
value: 'c',
});
});
test('property is inherited', () => {
class A {}
A.prototype.a = 'a';
expect(getPath(new A(), 'a')).toEqual({
hasEndProp: true,
lastTraversedObject: new A(),
traversedPath: ['a'],
value: 'a',
});
});
test('path breaks', () => {
expect(getPath({a: {}}, 'a.b.c')).toEqual({
hasEndProp: false,
lastTraversedObject: {},
traversedPath: ['a'],
value: undefined,
});
});
test('empty object at the end', () => {
expect(getPath({a: {b: {c: {}}}}, 'a.b.c.d')).toEqual({
hasEndProp: false,
lastTraversedObject: {},
traversedPath: ['a', 'b', 'c'],
value: undefined,
});
});
});
describe('hasOwnProperty', () => {
it('does inherit getter from class', () => {
class MyClass {
get key() {
return 'value';
}
}
expect(hasOwnProperty(new MyClass(), 'key')).toBe(true);
});
it('does not inherit setter from class', () => {
class MyClass {
set key(value) {}
}
expect(hasOwnProperty(new MyClass(), 'key')).toBe(false);
});
it('does not inherit method from class', () => {
class MyClass {
key() {}
}
expect(hasOwnProperty(new MyClass(), 'key')).toBe(false);
});
it('does not inherit property from constructor prototype', () => {
function MyClass() {}
MyClass.prototype.key = 'value';
expect(hasOwnProperty(new MyClass(), 'key')).toBe(false);
});
it('does not inherit __proto__ getter from Object', () => {
expect(hasOwnProperty({}, '__proto__')).toBe(false);
});
it('does not inherit toString method from Object', () => {
expect(hasOwnProperty({}, 'toString')).toBe(false);
});
});
describe('getObjectSubset()', () => {
[
[{a: 'b', c: 'd'}, {a: 'd'}, {a: 'b'}],
[{a: [1, 2], b: 'b'}, {a: [3, 4]}, {a: [1, 2]}],
[[{a: 'b', c: 'd'}], [{a: 'z'}], [{a: 'b'}]],
[[1, 2], [1, 2, 3], [1, 2]],
[{a: [1]}, {a: [1, 2]}, {a: [1]}],
[new Date('2015-11-30'), new Date('2016-12-30'), new Date('2015-11-30')],
].forEach(([object, subset, expected]) => {
test(
`expect(getObjectSubset(${stringify(object)}, ${stringify(subset)}))` +
`.toEqual(${stringify(expected)})`,
() => {
expect(getObjectSubset(object, subset)).toEqual(expected);
},
);
});
describe('calculating subsets of objects with circular references', () => {
test('simple circular references', () => {
const nonCircularObj = {a: 'world', b: 'something'};
const circularObjA = {a: 'hello'};
circularObjA.ref = circularObjA;
const circularObjB = {a: 'world'};
circularObjB.ref = circularObjB;
const primitiveInsteadOfRef = {b: 'something'};
primitiveInsteadOfRef.ref = 'not a ref';
const nonCircularRef = {b: 'something'};
nonCircularRef.ref = {};
expect(getObjectSubset(circularObjA, nonCircularObj)).toEqual({
a: 'hello',
});
expect(getObjectSubset(nonCircularObj, circularObjA)).toEqual({
a: 'world',
});
expect(getObjectSubset(circularObjB, circularObjA)).toEqual(circularObjB);
expect(getObjectSubset(primitiveInsteadOfRef, circularObjA)).toEqual({
ref: 'not a ref',
});
expect(getObjectSubset(nonCircularRef, circularObjA)).toEqual({
ref: {},
});
});
test('transitive circular references', () => {
const nonCircularObj = {a: 'world', b: 'something'};
const transitiveCircularObjA = {a: 'hello'};
transitiveCircularObjA.nestedObj = {parentObj: transitiveCircularObjA};
const transitiveCircularObjB = {a: 'world'};
transitiveCircularObjB.nestedObj = {parentObj: transitiveCircularObjB};
const primitiveInsteadOfRef = {};
primitiveInsteadOfRef.nestedObj = {otherProp: 'not the parent ref'};
const nonCircularRef = {};
nonCircularRef.nestedObj = {otherProp: {}};
expect(getObjectSubset(transitiveCircularObjA, nonCircularObj)).toEqual({
a: 'hello',
});
expect(getObjectSubset(nonCircularObj, transitiveCircularObjA)).toEqual({
a: 'world',
});
expect(
getObjectSubset(transitiveCircularObjB, transitiveCircularObjA),
).toEqual(transitiveCircularObjB);
expect(
getObjectSubset(primitiveInsteadOfRef, transitiveCircularObjA),
).toEqual({nestedObj: {otherProp: 'not the parent ref'}});
expect(getObjectSubset(nonCircularRef, transitiveCircularObjA)).toEqual({
nestedObj: {otherProp: {}},
});
});
});
});
describe('emptyObject()', () => {
test('matches an empty object', () => {
expect(emptyObject({})).toBe(true);
});
test('does not match an object with keys', () => {
expect(emptyObject({foo: undefined})).toBe(false);
});
test('does not match a non-object', () => {
expect(emptyObject(null)).toBe(false);
expect(emptyObject(34)).toBe(false);
});
});
describe('subsetEquality()', () => {
test('matching object returns true', () => {
expect(subsetEquality({foo: 'bar'}, {foo: 'bar'})).toBe(true);
});
test('object without keys is undefined', () => {
expect(subsetEquality('foo', 'bar')).toBe(undefined);
});
test('objects to not match', () => {
expect(subsetEquality({foo: 'bar'}, {foo: 'baz'})).toBe(false);
expect(subsetEquality('foo', {foo: 'baz'})).toBe(false);
});
test('null does not return errors', () => {
expect(subsetEquality(null, {foo: 'bar'})).not.toBeTruthy();
});
test('undefined does not return errors', () => {
expect(subsetEquality(undefined, {foo: 'bar'})).not.toBeTruthy();
});
describe('matching subsets with circular references', () => {
test('simple circular references', () => {
const circularObjA1 = {a: 'hello'};
circularObjA1.ref = circularObjA1;
const circularObjA2 = {a: 'hello'};
circularObjA2.ref = circularObjA2;
const circularObjB = {a: 'world'};
circularObjB.ref = circularObjB;
const primitiveInsteadOfRef = {};
primitiveInsteadOfRef.ref = 'not a ref';
expect(subsetEquality(circularObjA1, {})).toBe(true);
expect(subsetEquality({}, circularObjA1)).toBe(false);
expect(subsetEquality(circularObjA2, circularObjA1)).toBe(true);
expect(subsetEquality(circularObjB, circularObjA1)).toBe(false);
expect(subsetEquality(primitiveInsteadOfRef, circularObjA1)).toBe(false);
});
test('transitive circular references', () => {
const transitiveCircularObjA1 = {a: 'hello'};
transitiveCircularObjA1.nestedObj = {parentObj: transitiveCircularObjA1};
const transitiveCircularObjA2 = {a: 'hello'};
transitiveCircularObjA2.nestedObj = {
parentObj: transitiveCircularObjA2,
};
const transitiveCircularObjB = {a: 'world'};
transitiveCircularObjB.nestedObj = {
parentObj: transitiveCircularObjB,
};
const primitiveInsteadOfRef = {};
primitiveInsteadOfRef.nestedObj = {
parentObj: 'not the parent ref',
};
expect(subsetEquality(transitiveCircularObjA1, {})).toBe(true);
expect(subsetEquality({}, transitiveCircularObjA1)).toBe(false);
expect(
subsetEquality(transitiveCircularObjA2, transitiveCircularObjA1),
).toBe(true);
expect(
subsetEquality(transitiveCircularObjB, transitiveCircularObjA1),
).toBe(false);
expect(
subsetEquality(primitiveInsteadOfRef, transitiveCircularObjA1),
).toBe(false);
});
});
});
describe('iterableEquality', () => {
test('returns true when given circular iterators', () => {
class Iter {
*[Symbol.iterator]() {
yield this;
}
}
const a = new Iter();
const b = new Iter();
expect(iterableEquality(a, b)).toBe(true);
});
test('returns true when given circular Set', () => {
const a = new Set();
a.add(a);
const b = new Set();
b.add(b);
expect(iterableEquality(a, b)).toBe(true);
});
test('returns true when given nested Sets', () => {
expect(
iterableEquality(
new Set([new Set([[1]]), new Set([[2]])]),
new Set([new Set([[2]]), new Set([[1]])]),
),
).toBe(true);
expect(
iterableEquality(
new Set([new Set([[1]]), new Set([[2]])]),
new Set([new Set([[3]]), new Set([[1]])]),
),
).toBe(false);
});
test('returns false when given inequal set within a set', () => {
expect(
iterableEquality(new Set([new Set([2])]), new Set([new Set([1, 2])])),
).toBe(false);
expect(
iterableEquality(new Set([new Set([2])]), new Set([new Set([1, 2])])),
).toBe(false);
});
test('returns false when given inequal map within a set', () => {
expect(
iterableEquality(
new Set([new Map([['a', 2]])]),
new Set([new Map([['a', 3]])]),
),
).toBe(false);
expect(
iterableEquality(new Set([new Set([2])]), new Set([new Set([1, 2])])),
).toBe(false);
});
test('returns false when given inequal set within a map', () => {
expect(
iterableEquality(
new Map([['one', new Set([2])]]),
new Map([['one', new Set([1, 2])]]),
),
).toBe(false);
});
test('returns true when given circular Set shape', () => {
const a1 = new Set();
const a2 = new Set();
a1.add(a2);
a2.add(a1);
const b = new Set();
b.add(b);
expect(iterableEquality(a1, b)).toBe(true);
});
test('returns true when given circular key in Map', () => {
const a = new Map();
a.set(a, 'a');
const b = new Map();
b.set(b, 'a');
expect(iterableEquality(a, b)).toBe(true);
});
test('returns true when given nested Maps', () => {
expect(
iterableEquality(
new Map([['hello', new Map([['world', 'foobar']])]]),
new Map([['hello', new Map([['world', 'qux']])]]),
),
).toBe(false);
expect(
iterableEquality(
new Map([['hello', new Map([['world', 'foobar']])]]),
new Map([['hello', new Map([['world', 'foobar']])]]),
),
).toBe(true);
});
test('returns true when given circular key and value in Map', () => {
const a = new Map();
a.set(a, a);
const b = new Map();
b.set(b, b);
expect(iterableEquality(a, b)).toBe(true);
});
test('returns true when given circular value in Map', () => {
const a = new Map();
a.set('a', a);
const b = new Map();
b.set('a', b);
expect(iterableEquality(a, b)).toBe(true);
});
});