-
Notifications
You must be signed in to change notification settings - Fork 460
Expand file tree
/
Copy pathpath.test.ts
More file actions
141 lines (120 loc) · 4.78 KB
/
path.test.ts
File metadata and controls
141 lines (120 loc) · 4.78 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
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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import type { CallNodePath } from 'firefox-profiler/types';
import { PathSet, arePathsEqual, hashPath } from '../../utils/path';
describe('PathSet', function () {
const sampleValues = [[1], [1, 3], [2, 3, 9]];
it('implements the constructor', function () {
let set: PathSet;
// Default constructor
set = new PathSet();
expect(set.size).toBe(0);
// Constructor with an iterable
set = new PathSet(sampleValues);
expect(set.size).toBe(sampleValues.length);
sampleValues.forEach((value) => expect(set.has(value)).toBe(true));
// Constructing a PathSet from another PathSet
set = new PathSet(set);
sampleValues.forEach((value) => expect(set.has(value)).toBe(true));
// Constructing a PathSet from an iterable containing duplicate values
const duplicatedSampleValues = [...sampleValues, ...sampleValues];
set = new PathSet(duplicatedSampleValues);
expect(set.size).toBe(sampleValues.length);
expect(Array.from(set).length).toBe(sampleValues.length);
// Doesn't get a hold on the argument
const mutableValues = sampleValues.slice();
set = new PathSet(mutableValues);
mutableValues.push([5]);
expect(set.has([5])).toBe(false);
});
it('implements .add', function () {
const set = new PathSet();
expect(set.add([1, 2, 3, 4])).toBe(set);
expect(set.size).toBe(1);
set.add([1, 2, 3, 4]); // twice the same value
expect(set.size).toBe(1);
set.add([1, 2, 3, 5]);
expect(set.size).toBe(2);
set.add([5]);
expect(set.size).toBe(3);
});
it('implements .delete', function () {
const set = new PathSet();
set.add([1, 2, 3, 4]);
set.add([1, 3, 3]);
// Checks that after adding twice the same value, we need to delete it once only
set.add([1, 3, 3]);
expect(set.size).toBe(2);
expect(set.delete([1, 5])).toBe(false); // non existent value
expect(set.size).toBe(2);
expect(set.delete([1, 2, 3, 4])).toBe(true);
expect(set.size).toBe(1);
set.delete([1, 3, 3]);
expect(set.size).toBe(0);
});
it('implements .has', function () {
const set = new PathSet();
const callNode = [1, 2, 3, 4];
set.add(callNode);
set.add([1, 2, 3, 5]);
expect(set.has(callNode)).toBe(true);
expect(set.has([1, 2, 3, 4])).toBe(true);
expect(set.has([1, 2, 3, 5])).toBe(true);
expect(set.has([1, 2])).toBe(false);
expect(set.has([4, 3, 2, 1])).toBe(false);
});
it('implements .clear', function () {
const set = new PathSet(sampleValues);
expect(set.size).toBe(sampleValues.length);
set.clear();
expect(set.size).toBe(0);
});
it('implements .forEach', function () {
const set = new PathSet(sampleValues);
const resultValues: CallNodePath[] = [];
set.forEach(function (value1, value2, thisSet) {
// @ts-expect-error TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.
// eslint-disable-next-line @babel/no-invalid-this
expect(this).toBe(undefined);
expect(value1).toBe(value2);
expect(thisSet).toBe(set);
resultValues.push(value1);
});
expect(resultValues).toEqual(sampleValues);
const context = {};
set.forEach(function () {
// @ts-expect-error TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.
expect(this).toBe(context);
}, context);
});
it('implements iterable, .values, .entries', function () {
const set = new PathSet(sampleValues);
expect(Array.from(set)).toEqual(sampleValues);
expect(Array.from(set.values())).toEqual(sampleValues);
const expectedEntries = sampleValues.map((val) => [val, val]);
expect(Array.from(set.entries())).toEqual(expectedEntries);
});
});
describe('arePathsEqual', function () {
it('returns true for equal paths', function () {
expect(arePathsEqual([1], [1])).toBe(true);
expect(arePathsEqual([1, 5], [1, 5])).toBe(true);
expect(arePathsEqual([1, 5, 15], [1, 5, 15])).toBe(true);
const path = [6, 9, 255];
expect(arePathsEqual(path, path)).toBe(true);
});
it('returns false for unequal paths', function () {
expect(arePathsEqual([1], [2])).toBe(false);
expect(arePathsEqual([1], [1, 2])).toBe(false);
expect(arePathsEqual([1, 2], [2, 1])).toBe(false);
});
});
describe('hashPath', function () {
it('returns the same value for different objects with the same content', function () {
const path = [1, 8, 3654, 8749874, 4, 9, 45, 5, 7];
// Note we use `toBe` on purpose here, because this is what's important when
// using the hash in a Map or Set.
expect(hashPath(path.slice())).toBe(hashPath(path.slice()));
});
});