forked from restify/node-restify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformatter.test.js
201 lines (176 loc) · 5.15 KB
/
formatter.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
// Copyright 2012 Mark Cavage, Inc. All rights reserved.
'use strict';
var restify = require('../lib');
if (require.cache[__dirname + '/lib/helper.js']) {
delete require.cache[__dirname + '/lib/helper.js'];
}
var helper = require('./lib/helper.js');
///--- Globals
var after = helper.after;
var before = helper.before;
var test = helper.test;
var PORT = process.env.UNIT_TEST_PORT || 0;
var CLIENT;
var SERVER;
var reqCount = 0;
///--- Tests
before(function (callback) {
try {
SERVER = restify.createServer({
formatters: {
'text/plain': function (req, res, body, cb) {
if (reqCount === 0) {
return process.nextTick(function () {
reqCount++;
cb(null, 'async fmt');
});
} else if (reqCount === 1) {
return process.nextTick(function () {
reqCount++;
cb(new Error('foobar'), 'async fmt');
});
} else {
return cb(null, 'sync fmt');
}
},
'application/foo; q=0.9': function (req, res, body, cb) {
return cb(null, 'foo!');
},
'application/bar; q=0.1': function (req, res, body, cb) {
return cb(null, 'bar!');
}
},
dtrace: helper.dtrace,
log: helper.getLog('server'),
version: ['2.0.0', '0.5.4', '1.4.3']
});
SERVER.listen(PORT, '127.0.0.1', function () {
PORT = SERVER.address().port;
CLIENT = restify.createStringClient({
url: 'http://127.0.0.1:' + PORT,
dtrace: helper.dtrace,
retry: false,
agent: false
});
SERVER.get('/tmp', function (req, res, next) {
res.send('dummy response');
return next();
});
SERVER.get('/tmp2', function (req, res, next) {
delete res.formatters['application/octet-stream'];
res.setHeader('content-type', 'text/html');
res.send('dummy response');
return next();
});
process.nextTick(callback);
});
} catch (e) {
console.error(e.stack);
process.exit(1);
}
});
after(function (callback) {
try {
SERVER.close(callback);
} catch (e) {
console.error(e.stack);
process.exit(1);
}
});
test('async formatter', function (t) {
CLIENT.get('/tmp', function (err, req, res, data) {
t.ifError(err);
t.ok(req);
t.ok(res);
t.equal(data, 'async fmt');
t.end();
});
});
test('async formatter error', function (t) {
SERVER.once('after', function (req, res, route, e) {
// Dev Note: It would be good to add a test here to verify error has
// been emitted. See https://github.com/restify/node-restify/issues/845
// which I think is only in [email protected].
});
CLIENT.get('/tmp', function (err, req, res, data) {
t.ok(err);
t.equal(err.statusCode, 500);
t.ok(req);
t.ok(res);
t.notOk(data);
t.end();
});
});
test('sync formatter', function (t) {
CLIENT.get('/tmp', function (err, req, res, data) {
t.ifError(err);
t.ok(req);
t.ok(res);
t.equal(data, 'sync fmt');
t.end();
});
});
test('q-val priority', function (t) {
var opts = {
path: '/tmp',
headers: {
accept: 'application/*'
}
};
CLIENT.get(opts, function (err, req, res, data) {
t.ifError(err);
t.ok(req);
t.ok(res);
t.equal(data, 'foo!');
t.end();
});
});
test('GH-771 q-val priority on */*', function (t) {
var opts = {
path: '/tmp',
headers: {
accept: '*/*'
}
};
CLIENT.get(opts, function (err, req, res, data) {
t.ifError(err);
t.ok(req);
t.ok(res);
t.equal(data, 'sync fmt');
t.end();
});
});
test('GH-937 should return 406 when no content-type header set on response ' +
'matching an acceptable type found by matching client', function (t) {
// ensure client accepts only a type not specified by server
var opts = {
path: '/tmp',
headers: {
accept: 'text/html'
}
};
CLIENT.get(opts, function (err, req, res, data) {
t.ok(err);
t.ok(req);
t.ok(res);
t.equal(res.statusCode, 406);
t.end();
});
});
test('GH-937 should return 500 when no default formatter found ' +
'and octet-stream is not available', function (t) {
// ensure client accepts only a type not specified by server
var opts = {
path: '/tmp2',
headers: {
accept: 'text/html'
}
};
CLIENT.get(opts, function (err, req, res, data) {
t.ok(err);
t.ok(req);
t.ok(res);
t.equal(res.statusCode, 500);
t.end();
});
});