forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouter-utils.spec.js
184 lines (159 loc) · 6.09 KB
/
router-utils.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
/**
* This source file is part of the Swift.org open source project
*
* Copyright (c) 2021 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 {
baseNavHeight,
baseNavHeightSmallBreakpoint,
} from 'docc-render/constants/nav';
import { documentationTopicName } from 'docc-render/constants/router';
import {
scrollBehavior as originalScrollBehavior,
getCurrentLocation,
restoreScrollOnReload,
saveScrollOnReload,
} from 'docc-render/utils/router-utils';
const appTarget = process.env.VUE_APP_TARGET;
const sessionStorage = {
getItem: jest.fn(),
setItem: jest.fn(),
};
const scrollToSpy = jest.fn();
const mockLocation = jest.fn().mockReturnValue({
pathname: '/foo',
search: '?bar',
hash: '#baz',
});
Object.defineProperty(window, 'scrollTo', {
value: scrollToSpy,
});
Object.defineProperty(window, 'sessionStorage', {
value: sessionStorage,
});
Object.defineProperty(window, 'location', {
get: mockLocation,
});
describe('router-utils', () => {
beforeEach(() => {
jest.clearAllMocks();
});
describe('scrollBehavior', () => {
const mockApp = { app: { $nextTick: jest.fn().mockResolvedValue({}) } };
const scrollBehavior = originalScrollBehavior.bind(mockApp);
const createRoute = (name, query, hash) => ({ name, query, hash });
const routeFoo = createRoute('foo', {}, 'foo');
const routeBar = createRoute('bar', {}, 'bar');
beforeEach(() => {
process.env.VUE_APP_TARGET = appTarget;
});
it('resolves with the saved position', async () => {
const savedPosition = { foo: 'foo' };
const resolved = await scrollBehavior(routeFoo, routeBar, savedPosition);
expect(resolved).toEqual(savedPosition);
});
it('resolves with a selector and `y:0` offset if passed `hash` but in IDE target', async () => {
process.env.VUE_APP_TARGET = 'ide';
const resolved = await scrollBehavior(routeFoo, routeBar);
expect(resolved).toEqual({ selector: routeFoo.hash, offset: { x: 0, y: 0 } });
});
it('resolves with one nav height offset if passed `hash` but no API `changes` enabled', async () => {
const routeDocsNoChanges = createRoute(documentationTopicName, {}, 'bar');
const resolved = await scrollBehavior(routeDocsNoChanges, routeBar);
expect(resolved).toEqual({
selector: routeDocsNoChanges.hash,
offset: { x: 0, y: baseNavHeight },
});
});
it('resolves with a smaller nav height offset at small breakpoints', async () => {
const { innerWidth } = window;
window.innerWidth = 400;
const routeDocsNoChanges = createRoute(documentationTopicName, {}, 'bar');
const resolved = await scrollBehavior(routeDocsNoChanges, routeBar);
expect(resolved).toEqual({
selector: routeDocsNoChanges.hash,
offset: { x: 0, y: baseNavHeightSmallBreakpoint },
});
window.innerWidth = innerWidth;
});
it('resolves with a double nav height offset if passed `hash` and has API `changes`.', async () => {
const routeDocsNoChanges = createRoute(documentationTopicName, { changes: 'foo' }, 'bar');
const resolved = await scrollBehavior(routeDocsNoChanges, routeBar);
expect(resolved).toEqual({
selector: routeDocsNoChanges.hash,
offset: { x: 0, y: baseNavHeight * 2 },
});
});
it('resolves as false if two urls are the same and have no `hash`', async () => {
const noHashUrl = createRoute('foo', {});
const resolved = await scrollBehavior(noHashUrl, noHashUrl);
expect(resolved).toEqual(false);
});
it('resolves with `{ x: 0, y: 0 }` if new url without hash', async () => {
const noHashUrl = createRoute('foo', {});
const resolved = await scrollBehavior(noHashUrl, routeBar);
expect(resolved).toEqual({ x: 0, y: 0 });
});
});
describe('getCurrentLocation', () => {
it('returns the correct location', () => {
expect(getCurrentLocation()).toEqual('/foo?bar#baz');
});
});
describe('restoreScrollOnReload', () => {
it('does not do anything if sessionStorage is empty', async () => {
sessionStorage.getItem.mockReturnValueOnce(undefined);
await restoreScrollOnReload();
expect(scrollToSpy).toHaveBeenCalledTimes(0);
});
it('fails silently if the stored value is invalid', async () => {
const errorSpy = jest.spyOn(console, 'error');
errorSpy.mockImplementationOnce(() => {});
sessionStorage.getItem.mockReturnValueOnce('not json');
await restoreScrollOnReload();
expect(scrollToSpy).toHaveBeenCalledTimes(0);
expect(errorSpy).toHaveBeenCalledTimes(1);
});
it('doesnt do anything, if the location is not the same as the one stored', async () => {
sessionStorage.getItem.mockReturnValueOnce(JSON.stringify({
location: '/foo',
x: 5,
y: 10,
}));
await restoreScrollOnReload();
expect(scrollToSpy).toHaveBeenCalledTimes(0);
});
it('scrolls to the last stored coordinates', async () => {
sessionStorage.getItem.mockReturnValueOnce(JSON.stringify({
location: '/foo?bar#baz',
x: 5,
y: 10,
}));
await restoreScrollOnReload();
expect(scrollToSpy).toHaveBeenCalledTimes(1);
expect(scrollToSpy).toHaveBeenCalledWith(5, 10);
});
});
describe('saveScrollOnReload', () => {
it('does not do anything if there is a `hash` in `window.location`', () => {
saveScrollOnReload();
expect(sessionStorage.setItem).toHaveBeenCalledTimes(0);
});
it('stores the last position in `sessionStorage`', () => {
mockLocation.mockReturnValueOnce({ hash: null });
window.pageXOffset = 100;
window.pageYOffset = 200;
saveScrollOnReload();
expect(sessionStorage.setItem).toHaveBeenCalledTimes(1);
expect(sessionStorage.setItem).toHaveBeenCalledWith('scrollPosition', JSON.stringify({
x: 100,
y: 200,
location: getCurrentLocation(),
}));
});
});
});