forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurl-helper.spec.js
187 lines (164 loc) · 5.18 KB
/
url-helper.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
/**
* 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 TechnologiesQueryParams from 'docc-render/constants/TechnologiesQueryParams';
let areEquivalentLocations;
let buildUrl;
let resolveAbsoluteUrl;
const normalizePathMock = jest.fn().mockImplementation(n => n);
const mockAssets = {
normalizePath: normalizePathMock,
};
jest.mock('docc-render/utils/assets', () => (mockAssets));
function importDeps() {
jest.resetModules();
// eslint-disable-next-line global-require
({
areEquivalentLocations,
buildUrl,
resolveAbsoluteUrl,
// eslint-disable-next-line global-require
} = require('@/utils/url-helper'));
}
describe('areEquivalentLocations', () => {
beforeEach(() => {
importDeps();
jest.clearAllMocks();
});
it('returns false for the same route with a different path', () => {
expect(areEquivalentLocations({
name: 'foo',
path: '/bar',
}, {
name: 'foo',
path: '/baz',
})).toBe(false);
});
it('returns false for the same route and path with different params', () => {
expect(areEquivalentLocations({
name: 'foo',
path: '/bar',
query: { baz: 'baz' },
}, {
name: 'foo',
path: '/bar',
})).toBe(false);
});
it('returns true for the same route with the same path', () => {
expect(areEquivalentLocations({
name: 'foo',
path: '/bar',
hash: '#baz',
}, {
name: 'foo',
path: '/bar',
hash: '#qux',
})).toBe(true);
});
it('returns true for the same route, path, all queries but changes query', () => {
expect(areEquivalentLocations({
name: 'foo',
path: '/bar',
query: {
param: 'value',
changes: 'a value',
},
}, {
name: 'foo',
path: '/bar',
query: {
param: 'value',
changes: 'a different value',
},
})).toBe(true);
});
it('returns true for the same route, path, all queries but input or tags changes', () => {
expect(areEquivalentLocations({
name: 'foo',
path: '/bar',
query: {
param: 'value',
[TechnologiesQueryParams.tags]: 'a,b,c',
[TechnologiesQueryParams.input]: 'foo',
},
}, {
name: 'foo',
path: '/bar',
query: {
param: 'value',
[TechnologiesQueryParams.tags]: 'c,d,e',
[TechnologiesQueryParams.input]: 'bar',
},
})).toBe(true);
});
it('returns false for the same route, path, different queries', () => {
expect(areEquivalentLocations({
name: 'foo',
path: '/bar',
query: {
param: 'value',
changes: 'a value',
},
}, {
name: 'foo',
path: '/bar',
query: {
param: 'another value',
changes: 'a different value',
},
})).toBe(false);
});
});
describe('buildUrl', () => {
it('works without any query params', () => {
expect(buildUrl('/docs')).toEqual('/docs');
});
it('appends only `changes`, `context` and `language` query parameters', () => {
expect(buildUrl('/docs', {
changes: 'abc', language: 'cde', context: 'context', foo: 'foo',
}))
.toEqual('/docs?changes=abc&language=cde&context=context');
});
it('appends query params to url with already existing params', () => {
expect(buildUrl('/docs?language=objc', { changes: 'abc', foo: 'foo' }))
.toEqual('/docs?language=objc&changes=abc');
});
it('appends query params to urls with hash tags', () => {
expect(buildUrl('/docs#hash', { changes: 'abc' })).toEqual('/docs?changes=abc#hash');
});
it('appends query params to urls with hash tags and existing queries', () => {
expect(buildUrl('/docs?foo=bar#hash', { changes: 'abc' })).toEqual('/docs?foo=bar&changes=abc#hash');
});
});
describe('resolveAbsoluteUrl', () => {
it('returns an absolute URL for a given path', () => {
expect(resolveAbsoluteUrl('/foo/bar')).toBe('http://localhost/foo/bar');
expect(resolveAbsoluteUrl('foo/bar')).toBe('http://localhost/foo/bar');
});
it('resolves against the host and base path of the current environment', () => {
const { location } = window;
normalizePathMock.mockImplementation(n => `/foo${n}`);
importDeps();
Object.defineProperty(window, 'location', {
value: new URL('https://example.com'),
});
expect(resolveAbsoluteUrl('/bar/baz')).toBe('https://example.com/foo/bar/baz');
normalizePathMock.mockImplementation(n => n);
expect(resolveAbsoluteUrl('foobar/baz')).toBe('https://example.com/foobar/baz');
Object.defineProperty(window, 'location', { value: location });
});
it('can resolve against a provided base URL', () => {
expect(resolveAbsoluteUrl('/foo/bar', 'https://swift.org'))
.toBe('https://swift.org/foo/bar');
expect(resolveAbsoluteUrl('foobar', 'https://swift.org'))
.toBe('https://swift.org/foobar');
expect(resolveAbsoluteUrl('foo/bar', 'https://swift.org/blah'))
.toBe('https://swift.org/foo/bar');
});
});