-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathnavigatorData.spec.js
433 lines (406 loc) · 10.7 KB
/
navigatorData.spec.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
/**
* This source file is part of the Swift.org open source project
*
* Copyright (c) 2022 Apple Inc. and the Swift project authors
* Licensed under Apache License v2.0 with Runtime Library Exception
*
* See https://swift.org/LICENSE.txt for license information
* See https://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import {
convertChildrenArrayToObject,
extractTechnologyProps,
flattenNavigationIndex,
flattenNestedData,
getAllChildren,
getChildren,
getParents,
getSiblings,
hashCode,
} from 'docc-render/utils/navigatorData';
import { TopicTypes } from '@/constants/TopicTypes';
import { INDEX_ROOT_KEY } from '@/constants/sidebar';
const technologyWithChildren = {
path: '/documentation/foo',
children: [
{
title: 'Group Marker',
type: TopicTypes.groupMarker,
},
{
title: 'Child0',
path: '/foo/child0',
type: 'article',
children: [
{
title: 'Group Marker, Child 0',
type: TopicTypes.groupMarker,
},
{
title: 'Child0_GrandChild0',
path: '/foo/child0/grandchild0',
type: 'tutorial',
},
{
title: 'Child0_GrandChild1',
path: '/foo/child0/grandchild1',
type: 'tutorial',
children: [{
title: 'Child0_GrandChild0_GreatGrandChild0',
path: '/foo/child0/grandchild0/greatgrandchild0',
type: 'tutorial',
}],
},
{
title: 'Child0_GrandChild2',
path: '/foo/child0/grandchild2',
type: 'tutorial',
},
],
},
{
title: 'Child1',
path: '/foo/child1/',
type: 'tutorial',
children: [{
title: 'Child1_GrandChild0',
path: '/foo/child1/grandchild0',
type: 'method',
}],
},
],
};
const flatTechnology = [
{
childUIDs: [
551503844,
-97593391,
],
deprecatedChildrenCount: 0,
depth: 0,
index: 0,
parent: INDEX_ROOT_KEY,
siblingsCount: 3,
title: 'Group Marker',
type: 'groupMarker',
uid: -196255993,
},
{
childUIDs: [
-361407047,
1438225895,
1439149417,
1440072939,
],
depth: 0,
groupMarkerUID: -196255993,
index: 1,
parent: INDEX_ROOT_KEY,
path: '/foo/child0',
siblingsCount: 3,
title: 'Child0',
type: 'article',
uid: 551503844,
},
{
childUIDs: [
1438225895,
1439149417,
1440072939,
],
deprecatedChildrenCount: 0,
depth: 1,
index: 0,
parent: 551503844,
siblingsCount: 4,
title: 'Group Marker, Child 0',
type: 'groupMarker',
uid: -361407047,
},
{
childUIDs: [],
depth: 1,
groupMarkerUID: -361407047,
index: 1,
parent: 551503844,
path: '/foo/child0/grandchild0',
siblingsCount: 4,
title: 'Child0_GrandChild0',
type: 'tutorial',
uid: 1438225895,
},
{
childUIDs: [
305326087,
],
depth: 1,
groupMarkerUID: -361407047,
index: 2,
parent: 551503844,
path: '/foo/child0/grandchild1',
siblingsCount: 4,
title: 'Child0_GrandChild1',
type: 'tutorial',
uid: 1439149417,
},
{
childUIDs: [],
depth: 2,
index: 0,
parent: 1439149417,
path: '/foo/child0/grandchild0/greatgrandchild0',
siblingsCount: 1,
title: 'Child0_GrandChild0_GreatGrandChild0',
type: 'tutorial',
uid: 305326087,
},
{
childUIDs: [],
depth: 1,
groupMarkerUID: -361407047,
index: 3,
parent: 551503844,
path: '/foo/child0/grandchild2',
siblingsCount: 4,
title: 'Child0_GrandChild2',
type: 'tutorial',
uid: 1440072939,
},
{
childUIDs: [
-827353283,
],
depth: 0,
groupMarkerUID: -196255993,
index: 2,
parent: INDEX_ROOT_KEY,
path: '/foo/child1/',
siblingsCount: 3,
title: 'Child1',
type: 'tutorial',
uid: -97593391,
},
{
childUIDs: [],
depth: 1,
index: 0,
parent: -97593391,
path: '/foo/child1/grandchild0',
siblingsCount: 1,
title: 'Child1_GrandChild0',
type: 'method',
uid: -827353283,
},
];
const root0 = {
type: TopicTypes.collection,
path: '/documentation/testkit',
title: 'TopLevel',
uid: 1,
parent: INDEX_ROOT_KEY,
depth: 0,
index: 0,
childUIDs: [
2,
3,
],
};
const root0Child0 = {
type: TopicTypes.struct,
path: '/documentation/testkit/first-child-depth-1',
title: 'First Child, Depth 1',
uid: 2,
parent: root0.uid,
depth: 1,
index: 0,
childUIDs: [],
};
const root0Child1 = {
type: TopicTypes.func,
path: '/documentation/testkit/second-child-depth-1',
title: 'Second Child, Depth 1',
uid: 3,
parent: root0.uid,
depth: 1,
index: 1,
childUIDs: [
4,
],
};
const root0Child1GrandChild0 = {
type: TopicTypes.article,
path: '/documentation/testkit/second-child-depth-1/first-child-depth-2',
title: 'First Child, Depth 2',
uid: 4,
parent: root0Child1.uid,
depth: 2,
index: 0,
childUIDs: [],
};
const root1 = {
abstract: [{
text: 'Create a tutorial.',
type: 'text',
}],
type: TopicTypes.project,
path: '/tutorials/testkit/gettingstarted',
title: 'Getting Started',
uid: 5,
parent: INDEX_ROOT_KEY,
depth: 0,
index: 1,
childUIDs: [],
};
const children = [
root0,
root0Child0,
root0Child1,
root0Child1GrandChild0,
root1,
];
const childrenMap = {
[root0.uid]: root0,
[root0Child0.uid]: root0Child0,
[root0Child1.uid]: root0Child1,
[root0Child1GrandChild0.uid]: root0Child1GrandChild0,
[root1.uid]: root1,
};
describe('index data', () => {
it('generates a unique hash', () => {
// make sure hashCode returns a unique hash from a string
expect(hashCode('foo')).toBe(101574);
expect(hashCode('oof')).toBe(110214);
expect(hashCode('ofo')).toBe(109944);
expect(hashCode('foo1')).toBe(3148843);
// make sure hash is never too big
expect(hashCode('foo1'.repeat(10))).toBe(-1535108562);
expect(hashCode('foo1'.repeat(50))).toBe(-2107259162);
});
it('flattens deeply nested children', () => {
expect(
flattenNestedData(technologyWithChildren.children, null, 0),
).toEqual(flatTechnology);
});
it('it generates a map of the flattenIndex, with the uid as the key', () => {
const childrenObjects = convertChildrenArrayToObject(children);
expect(childrenObjects).toEqual(childrenMap);
});
it('it gets all children of a node recursively', () => {
const childNodes = getAllChildren(root0.uid, childrenMap);
expect(childNodes).toEqual([root0, root0Child0, root0Child1, root0Child1GrandChild0]);
});
it('it gets the direct child nodes of a node.', () => {
const childNodes = getChildren(root0.uid, childrenMap, children);
expect(childNodes).toEqual([root0Child0, root0Child1]);
});
it('it gets all the parents of a node, up to the root', () => {
const childNodes = getParents(root0Child1GrandChild0.uid, childrenMap);
expect(childNodes).toEqual([root0, root0Child1, root0Child1GrandChild0]);
});
it('it gets all sibling nodes of a node', () => {
const childNodes = getSiblings(root0Child1.uid, childrenMap, children);
expect(childNodes).toEqual([root0Child0, root0Child1]);
});
});
describe('when multiple top-level children are provided', () => {
const a = {
type: 'overview',
title: 'a',
path: '/tutorials/a',
children: [
{
type: 'project',
title: 'a1',
path: '/tutorials/a/a1',
},
],
};
const b = {
type: 'module',
title: 'a',
path: '/documentation/b',
children: [
{
type: 'article',
title: 'b1',
path: '/documentation/b/b1',
},
],
};
const c = {
type: 'other',
title: 'c',
path: '/documentation/c',
children: [
{
type: 'article',
title: 'c1',
path: '/documentation/c/c1',
},
],
};
const b2 = {
type: 'module',
title: 'b',
path: '/some/prefix/documentation/b',
children: [
{
type: 'article',
title: 'b1',
path: '/some/prefix/documentation/b/b1',
},
],
};
describe('flattenNavigationIndex', () => {
it('prefers the root child with the same url path prefix', () => {
Object.defineProperty(window, 'location', {
value: { href: 'http://localhost/documentation/b/b42' },
});
// use first root node if only one is provided
let flattenedIndex = flattenNavigationIndex({ swift: [a] });
expect(flattenedIndex.swift.length).toBe(1);
expect(flattenedIndex.swift[0].title).toBe(a.children[0].title);
flattenedIndex = flattenNavigationIndex({ swift: [b] });
expect(flattenedIndex.swift.length).toBe(1);
expect(flattenedIndex.swift[0].title).toBe(b.children[0].title);
// prefers root node with same url path prefix when multiple are provided
flattenedIndex = flattenNavigationIndex({ swift: [a, b] });
expect(flattenedIndex.swift.length).toBe(1);
expect(flattenedIndex.swift[0].title).toBe(b.children[0].title);
flattenedIndex = flattenNavigationIndex({ swift: [a, b2] });
expect(flattenedIndex.swift.length).toBe(1);
expect(flattenedIndex.swift[0].title).toBe(b2.children[0].title);
// fallback to first root node when multiple top-level nodes are provided
// and none of them is a "module"
flattenedIndex = flattenNavigationIndex({ swift: [c, a] });
expect(flattenedIndex.swift.length).toBe(1);
expect(flattenedIndex.swift[0].title).toBe(c.children[0].title);
});
it('skips empty languages', () => {
const flattenedIndex = flattenNavigationIndex({ occ: [], swift: [a] });
expect(flattenedIndex.swift.length).toBe(1);
expect(flattenedIndex.swift[0].title).toBe(a.children[0].title);
});
});
describe('extractTechnologyProps', () => {
it('prefers the root child with the same url path prefix', () => {
Object.defineProperty(window, 'location', {
value: { href: 'http://localhost/documentation/b/b42' },
});
// use first root node if only one is provided
let props = extractTechnologyProps({ swift: [a] });
expect(props.swift.technology).toBe(a.title);
props = extractTechnologyProps({ swift: [b] });
expect(props.swift.technology).toBe(b.title);
// prefers root node with same url path prefix when multiple are provided
props = extractTechnologyProps({ swift: [a, b] });
expect(props.swift.technology).toBe(b.title);
props = extractTechnologyProps({ swift: [a, b2] });
expect(props.swift.technology).toBe(b2.title);
// fallback to first root node when multiple top-level nodes are provided
// and none of them is a "module"
props = extractTechnologyProps({ swift: [c, a] });
expect(props.swift.technology).toBe(c.title);
});
});
});