-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Copy pathhash_location_test.js
207 lines (165 loc) · 4.73 KB
/
hash_location_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
import { run } from '@ember/runloop';
import { get } from '@ember/object';
import HashLocation from '@ember/routing/hash-location';
import { moduleFor, AbstractTestCase } from 'internal-test-helpers';
let location;
function createLocation(options, assert) {
class HashTestLocation extends HashLocation {
_location = {
href: 'http://test.com/',
pathname: '/',
hash: '',
search: '',
replace() {
assert.ok(false, 'location.replace should not be called during testing');
},
};
}
if (!options) {
options = {};
}
location = HashTestLocation.create(options);
}
function mockBrowserLocation(path) {
// This is a neat trick to auto-magically extract the hostname from any
// url by letting the browser do the work ;)
let tmp = document.createElement('a');
tmp.href = path;
let protocol = !tmp.protocol || tmp.protocol === ':' ? 'http' : tmp.protocol;
let pathname = tmp.pathname.match(/^\//) ? tmp.pathname : '/' + tmp.pathname;
return {
hash: tmp.hash,
host: tmp.host || 'localhost',
hostname: tmp.hostname || 'localhost',
href: tmp.href,
pathname: pathname,
port: tmp.port || '',
protocol: protocol,
search: tmp.search,
};
}
function triggerHashchange() {
let event = document.createEvent('HTMLEvents');
event.initEvent('hashchange', true, false);
window.dispatchEvent(event);
}
moduleFor(
'HashLocation',
class extends AbstractTestCase {
teardown() {
run(function () {
if (location) {
location.destroy();
}
});
}
['@test HashLocation.getURL() returns the current url'](assert) {
createLocation(
{
_location: mockBrowserLocation('/#/foo/bar'),
},
assert
);
assert.equal(location.getURL(), '/foo/bar');
}
['@test HashLocation.getURL() includes extra hashes'](assert) {
createLocation(
{
_location: mockBrowserLocation('/#/foo#bar#car'),
},
assert
);
assert.equal(location.getURL(), '/foo#bar#car');
}
['@test HashLocation.getURL() assumes location.hash without #/ prefix is not a route path'](
assert
) {
createLocation(
{
_location: mockBrowserLocation('/#foo#bar'),
},
assert
);
assert.equal(location.getURL(), '/#foo#bar');
}
['@test HashLocation.getURL() returns a normal forward slash when there is no location.hash'](
assert
) {
createLocation(
{
_location: mockBrowserLocation('/'),
},
assert
);
assert.equal(location.getURL(), '/');
}
['@test HashLocation.setURL() correctly sets the url'](assert) {
createLocation({}, assert);
location.setURL('/bar');
assert.equal(get(location, 'location.hash'), '/bar');
assert.equal(get(location, 'lastSetURL'), '/bar');
}
['@test HashLocation.replaceURL() correctly replaces to the path with a page reload'](assert) {
assert.expect(2);
createLocation(
{
_location: {
replace(path) {
assert.equal(path, '#/foo');
},
},
},
assert
);
location.replaceURL('/foo');
assert.equal(get(location, 'lastSetURL'), '/foo');
}
['@test HashLocation.onUpdateURL callback executes as expected'](assert) {
assert.expect(1);
createLocation(
{
_location: mockBrowserLocation('/#/foo/bar'),
},
assert
);
let callback = function (param) {
assert.equal(param, '/foo/bar', 'path is passed as param');
};
location.onUpdateURL(callback);
triggerHashchange();
}
["@test HashLocation.onUpdateURL doesn't execute callback if lastSetURL === path"](assert) {
assert.expect(0);
createLocation(
{
_location: {
hash: '#/foo/bar',
},
lastSetURL: '/foo/bar',
},
assert
);
let callback = function () {
assert.ok(false, 'callback should not be called');
};
location.onUpdateURL(callback);
triggerHashchange();
}
['@test HashLocation.formatURL() prepends a # to the provided string'](assert) {
createLocation({}, assert);
assert.equal(location.formatURL('/foo#bar'), '#/foo#bar');
}
['@test HashLocation.willDestroy() cleans up hashchange event listener'](assert) {
assert.expect(1);
createLocation({}, assert);
let callback = function () {
assert.ok(true, 'should invoke callback once');
};
location.onUpdateURL(callback);
triggerHashchange();
run(location, 'destroy');
location = null;
triggerHashchange();
}
}
);