summaryrefslogtreecommitdiff
path: root/preact-router/test/index.js
blob: 842eecb55f8e038752442ebcffc4f17ffa1a9bf2 (plain)
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
import { Router, Link, route } from 'src';
import { h, render } from 'preact';
import assertCloneOf from '../test_helpers/assert-clone-of';

chai.use(assertCloneOf);

describe('preact-router', () => {
	it('should export Router, Link and route', () => {
		expect(Router).to.be.a('function');
		expect(Link).to.be.a('function');
		expect(route).to.be.a('function');
	});

	describe('Router', () => {
		let scratch;
		let router;

		beforeEach(() => {
			scratch = document.createElement('div');
			document.body.appendChild(scratch);
		});

		afterEach(() => {
			document.body.removeChild(scratch);
			router.componentWillUnmount();
		});

		it('should filter children based on URL', () => {
			let children = [
				<foo path="/" />,
				<foo path="/foo" />,
				<foo path="/foo/bar" />
			];

			render(
				(
					<Router ref={ref => (router = ref)}>
						{children}
					</Router>
				),
				scratch
			);

			expect(
				router.render({ children }, { url:'/foo' })
			).to.be.cloneOf(children[1]);

			expect(
				router.render({ children }, { url:'/' })
			).to.be.cloneOf(children[0]);

			expect(
				router.render({ children }, { url:'/foo/bar' })
			).to.be.cloneOf(children[2]);
		});

		it('should support nested parameterized routes', () => {
			let children = [
				<foo path="/foo" />,
				<foo path="/foo/:bar" />,
				<foo path="/foo/:bar/:baz" />
			];

			render(
				(
					<Router ref={ref => (router = ref)}>
						{children}
					</Router>
				),
				scratch
			);


			expect(
				router.render({ children }, { url:'/foo' })
			).to.be.cloneOf(children[0]);

			expect(
				router.render({ children }, { url:'/foo/bar' })
			).to.be.cloneOf(children[1], { matches: { bar:'bar' }, url:'/foo/bar' });

			expect(
				router.render({ children }, { url:'/foo/bar/baz' })
			).be.cloneOf(children[2], { matches: { bar:'bar', baz:'baz' }, url:'/foo/bar/baz' });
		});

		it('should support default routes', () => {
			let children = [
				<foo default />,
				<foo path="/" />,
				<foo path="/foo" />
			];

			render(
				(
					<Router ref={ref => (router = ref)}>
						{children}
					</Router>
				),
				scratch
			);

			expect(
				router.render({ children }, { url:'/foo' })
			).to.be.cloneOf(children[2]);

			expect(
				router.render({ children }, { url:'/' })
			).to.be.cloneOf(children[1]);

			expect(
				router.render({ children }, { url:'/asdf/asdf' })
			).to.be.cloneOf(children[0], { matches: {}, url:'/asdf/asdf' });
		});

		it('should support initial route prop', () => {
			let children = [
				<foo default />,
				<foo path="/" />,
				<foo path="/foo" />
			];

			render(
				(
					<Router url="/foo"  ref={ref => (router = ref)}>
						{children}
					</Router>
				),
				scratch
			);

			expect(
				router.render({ children }, router.state)
			).to.be.cloneOf(children[2]);

			render(null, scratch);

			render(
				(
					<Router ref={ref => (router = ref)}>
						{children}
					</Router>
				),
				scratch
			);

			expect(router).to.have.deep.property('state.url', location.pathname + (location.search || ''));
		});

		it('should support custom history', () => {
			let push = sinon.spy();
			let replace = sinon.spy();
			let listen = sinon.spy();
			let getCurrentLocation = sinon.spy(() => ({pathname: '/initial'}));

			let children = [
				<index path="/" />,
				<foo path="/foo" />,
				<bar path="/bar" />
			];

			render(
				(
					<Router history={{ push, replace, getCurrentLocation, listen }} ref={ref => (router = ref)}>
						{children}
					</Router>
				),
				scratch
			);

			router.componentWillMount();

			router.render(router.props, router.state);
			expect(getCurrentLocation, 'getCurrentLocation').to.have.been.calledOnce;
			expect(router).to.have.deep.property('state.url', '/initial');

			route('/foo');
			expect(push, 'push').to.have.been.calledOnce.and.calledWith('/foo');

			route('/bar', true);
			expect(replace, 'replace').to.have.been.calledOnce.and.calledWith('/bar');

			router.componentWillUnmount();
		});
	});

	describe('route()', () => {
		let router;
		let scratch;

		beforeEach(() => {
			scratch = document.createElement('div');
			document.body.appendChild(scratch);

			render(
				(
					<Router url="/foo" ref={ref => (router = ref)}>
						<foo path="/" />
						<foo path="/foo" />
					</Router>
				),
				scratch
			);

			sinon.spy(router, 'routeTo');
		});

		afterEach(() => {
			router.componentWillUnmount();
			document.body.removeChild(scratch);
		});

		it('should return true for existing route', () => {
			router.routeTo.resetHistory();
			expect(route('/')).to.equal(true);
			expect(router.routeTo)
				.to.have.been.calledOnce
				.and.calledWithExactly('/');

			router.routeTo.resetHistory();
			expect(route('/foo')).to.equal(true);
			expect(router.routeTo)
				.to.have.been.calledOnce
				.and.calledWithExactly('/foo');
		});

		it('should return false for missing route', () => {
			router.routeTo.resetHistory();
			expect(route('/asdf')).to.equal(false);
			expect(router.routeTo)
				.to.have.been.calledOnce
				.and.calledWithExactly('/asdf');
		});

		it('should return true for fallback route', () => {
			let oldChildren = router.props.children;
			router.props.children = [
				<foo default />,
				...oldChildren
			];

			router.routeTo.resetHistory();
			expect(route('/asdf')).to.equal(true);
			expect(router.routeTo)
				.to.have.been.calledOnce
				.and.calledWithExactly('/asdf');
		});
	});
});