-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathrouter.basic.route.test.js
129 lines (102 loc) · 2.96 KB
/
router.basic.route.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
'use strict';
const test = require('ava')
, router = require('./router')
, events = require('harken')
, routeObject = require('../test_stubs/routes_stub.json')
// , stream = require('stream')
, routerStore = require('./routeStore')
, createRes = require('../test_stubs/utils/createRes')
, config = require('../utils/config')
, req = {
method: 'GET'
, url: '/about'
, headers: {}
};
let res
, routeHandler;
test.beforeEach(() => {
config.reset();
routerStore.clear();
routeHandler = router(routeObject, config.set({
publicPath: './test_stubs/deletes'
, routePath: './test_stubs'
, compression: 'none'
}));
res = createRes();
// res.setHeader = function (name, value) {
// this.headers[name] = value;
// };
// res.writeHead = function (status, headers = {}) {
// this.statusCode = status;
// this.headers = Object.keys(headers).reduce((prevIn, key) => {
// const prev = prevIn;
// prev[key] = headers[key];
// return prev;
// }, this.headers);
// };
// res.statusCode = 0;
// res.headers = {};
// /* eslint-disable no-underscore-dangle */
// res._write = function (chunk, enc, cb) {
// const buffer = Buffer.isBuffer(chunk) ? chunk : new Buffer(chunk, enc);
// events.emit('response', buffer.toString());
// cb();
// };
/* eslint-enable no-underscore-dangle */
Object.keys(routeObject).forEach((key) => {
events.off(`route:${key}:get`);
});
events.off('error:404');
events.off('static:served');
events.off('static:missing');
events.off('response');
});
test.cb('should emit the correct route event for a simple route', (t) => {
events.once('route:/about:get', (connection) => {
t.is(typeof connection, 'object');
t.end();
});
process.nextTick(() => {
routeHandler(req, res);
});
});
test.cb('should emit the correct route event for a simple root route', (t) => {
req.url = '/';
events.once('route:/:get', (connection) => {
t.is(typeof connection, 'object');
t.end();
});
process.nextTick(() => {
routeHandler(req, res);
});
});
test.cb('should emit the correct event for a two level deep simple route', (t) => {
req.url = '/api/articles';
events.once('route:/api/articles:get', (connection) => {
t.is(typeof connection, 'object');
t.end();
});
process.nextTick(() => {
routeHandler(req, res);
});
});
test.cb('should emit the correct route event for another simple route', (t) => {
req.url = '/search';
events.once('route:/search:get', (connection) => {
t.is(typeof connection, 'object');
t.end();
});
process.nextTick(() => {
routeHandler(req, res);
});
});
test.cb('should emit the correct route event for the api simple route', (t) => {
req.url = '/api';
events.once('route:/api:get', (connection) => {
t.is(typeof connection, 'object');
t.end();
});
process.nextTick(() => {
routeHandler(req, res);
});
});