forked from deployd/deployd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouter.unit.js
264 lines (208 loc) · 6.78 KB
/
router.unit.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
var Router = require('../lib/router')
, Resource = require('../lib/resource');
function fauxReq(url) {
var fn = function (){};
return {
url: url,
headers: {},
resume: fn,
on: fn,
emit: fn
};
}
function fauxRes() {
var fn = function (){};
return {
headers: {},
resume: fn,
on: fn,
emit: fn,
setHeader: fn,
end: fn
};
}
function fauxServer() {
return {
emit: function () {}
};
}
describe('Router', function() {
describe('.route()', function() {
it('should route to a matching resource', function(done) {
var resource = new Resource('foo',{})
, router = new Router([resource], {});
this.timeout(100);
resource.handle = function() {
done();
};
router.route({url: '/foo/1234'}, {});
});
it('should route to an exactly matching resource', function(done) {
var resource = new Resource('foo')
, other = new Resource('')
, router = new Router([resource, other], fauxServer());
this.timeout(100);
resource.handle = function() {
done();
};
other.handle = function() {
throw Error("This one shouldn't get called");
};
router.route({url: '/foo'}, {});
});
it ('should route to resources in turn', function(done) {
var foobar = new Resource('foo/bar')
, foo = new Resource('foo')
, router = new Router([foo, foobar], fauxServer())
, foobarCalled = false;
this.timeout(100);
foobar.handle = function(ctx, next) {
foobarCalled = true;
next();
};
foo.handle = function() {
expect(foobarCalled).to.be['true'];
done();
};
router.route({url: '/foo/bar'}, {});
});
it ('should return 404 if no resources match', function(done) {
var foo = new Resource('foo')
, router = new Router([foo], fauxServer());
this.timeout(100);
var req = fauxReq('/dont-match')
, res = fauxRes();
res.end = function () {
if(res.statusCode != 404) throw new Error('incorrect status for resource not found');
done();
};
foo.handle = function() {
throw "/foo was handled";
};
router.route(req, res);
});
it ('should return 404 if all resources call next', function(done) {
var foobar = new Resource('foo/bar')
, foo = new Resource('foo')
, router = new Router([foo, foobar], fauxServer());
this.timeout(100);
foobar.handle = function(ctx, next) {
next();
};
foo.handle = function(ctx, next) {
next();
};
var req = fauxReq('/dont-match')
, res = fauxRes();
res.end = function () {
if(res.statusCode != 404) throw new Error('incorrect status for resource not found');
done();
};
router.route(req, res);
});
it('should modify ctx.url to remove the base path', function(done) {
var foo = new Resource('foo')
, router = new Router([foo], fauxServer());
this.timeout(1000);
foo.handle = function(ctx, res) {
expect(ctx.url).to.equal('/1234');
done();
};
var req = fauxReq('/foo/1234')
, res = fauxRes();
router.route(req, res);
});
it('should still have a leading slash for root resources', function(done) {
var resource = new Resource('')
, router = new Router([resource], {});
this.timeout(1000);
resource.handle = function(ctx, res) {
expect(ctx.url).to.equal('/index.html');
done();
};
router.route({url: '/index.html'}, {});
});
});
describe('.matchResources()', function() {
beforeEach(function() {
this.resources = [
new Resource('')
, new Resource('foo')
, new Resource('food')
, new Resource('bar')
, new Resource('foo/bar')
];
this.router = new Router(this.resources, {});
});
function paths(result) {
return result.map(function(r) { return r.path; });
}
it ('should match /index.html to /', function() {
var result = this.router.matchResources('/index.html');
expect(paths(result)).to.include('/');
expect(result.length).to.equal(1);
});
it ('should match /foo/12345 to / and /foo', function() {
var result = this.router.matchResources('/foo/12345');
expect(paths(result)).to.include('/').and.to.include('/foo');
expect(result.length).to.equal(2);
});
it ('should not match /food to /foo', function() {
var result = this.router.matchResources('/food');
expect(paths(result)).to.not.include('/foo');
});
it ('should match /foo?test=1 to / and /foo', function() {
var result = this.router.matchResources('/foo?test=1');
expect(paths(result)).to.include('/').and.to.include('/foo');
expect(result.length).to.equal(2);
});
it ('should match /foo/bar/12345 to /, /foo, and /foo/bar', function() {
var result = this.router.matchResources('/foo/bar/12345');
expect(paths(result)).to.include('/').and.include('/foo').and.include('/foo/bar');
expect(result.length).to.equal(3);
});
it ('should order results by best match', function() {
var result = this.router.matchResources('/foo/bar/12345');
expect(paths(result)).to.eql(['/foo/bar', '/foo', '/']);
});
it('should match a route exactly', function() {
var result = this.router.matchResources('/foo');
expect(paths(result)).to.eql(['/foo', '/']);
});
});
describe('.generateRegex()', function() {
function example(path, url, expected) {
var regex = Router.prototype.generateRegex(path)
, result = url.match(regex);
if (expected) {
expect(result).to.be.ok;
} else {
expect(result).to.not.be.ok;
}
}
it('should properly match the url', function() {
// should pass
example('/foo', '/foo', true);
example('/foo', '/foo/index.html', true);
example('/foo', '/foo/index.htm', true);
example('/foo', '/foo?blah', true);
example('/foo', '/foo?q={"foo":"bar"}', true);
example('/foo', '/foo/', true);
example('/foo', '/foo?', true);
example('/foo', '/foo?q', true);
example('/foo', '/foo?q=', true);
example('/foo', '/foo?q=a', true);
example('/foo', '/foo/some-id', true);
example('/foo', '/foo/some-id/', true);
example('/foo', '/foo/bar', true);
example('/foo', '/foo/bar/', true);
// should fail
example('/foo', '/', false);
example('/foo', 'foo', false);
expect('/foo', '/food', false);
expect('/food', '/foo', false);
// TODO: I think this one's OK
// example('/foo', '/foo/../bar', false);
});
});
});