-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsend.test.js
163 lines (140 loc) · 4.01 KB
/
send.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
'use strict';
const test = require('ava')
, send = require('./send')
, zlib = require('zlib')
, brotli = require('iltorb')
, etag = require('etag')
, obj = {
title: 'Tom Sawyer'
, Author: 'Samuel Langhorne Clemens'
}
, fakeRes = (cb) => {
const fakeHeaders = {};
return {
setHeader: (key, value) => {
fakeHeaders[key] = value;
}
, end: (data) => {
cb(data, fakeHeaders);
}
, send: send({
headers: {
'accept-encoding': 'none'
, 'if-none-match': ''
}
}, { compression: false })
, sendDeflate: send({
headers: {
'accept-encoding': 'deflate'
, 'if-none-match': ''
}
}, { compression: 'deflate' })
, sendGzip: send({
headers: {
'accept-encoding': 'gzip'
, 'if-none-match': ''
}
}, { compression: 'gzip' })
, sendBrotli: send({
headers: {
'accept-encoding': 'br'
, 'if-none-match': ''
}
}, { compression: 'br' })
, sendEtag: send({
headers: {
'accept-encoding': 'none'
, 'if-none-match': etag(JSON.stringify(obj))
}
}, { compression: false })
, statusCode: 200
};
};
let buf;
test.beforeEach(() => {
buf = new Buffer('this is a buffer', 'utf8');
});
test('should be defined as a function', (t) => {
t.is(typeof send, 'function');
});
test('should return a function', (t) => {
t.is(typeof send({}, {}), 'function');
});
test.cb('should handle an empty data object', (t) => {
fakeRes((out) => {
t.is(out, '');
t.end();
}).send();
});
test.cb('should handle a string', (t) => {
fakeRes((out) => {
t.is(out, 'The Walrus is Paul');
t.end();
}).send('The Walrus is Paul');
});
test.cb('should handle an object', (t) => {
fakeRes((out) => {
t.is(out, JSON.stringify(obj));
t.end();
}).send(obj);
});
test.cb('should handle a buffer', (t) => {
fakeRes((out) => {
t.is(out, 'this is a buffer');
t.end();
}).send(buf);
});
test.cb('should handle an array', (t) => {
fakeRes((out) => {
t.is(out, JSON.stringify([ 'one', 'two' ]));
t.end();
}).send([ 'one', 'two' ]);
});
test.cb('should handle a number and other weird data', (t) => {
fakeRes((out) => {
t.is(out, '1');
t.end();
}).send(1);
});
test.cb('should handle a bool', (t) => {
fakeRes((out) => {
t.is(out, JSON.stringify(true));
t.end();
}).send(true);
});
test.cb('should return deflate compressed results if deflate header is sent', (t) => {
fakeRes((out, fakeHeaders) => {
const outString = JSON.stringify(out)
, compareString = JSON.stringify(zlib.deflateSync(JSON.stringify(obj)));
t.is(outString, compareString);
t.is(fakeHeaders['Content-Encoding'], 'deflate');
t.end();
}).sendDeflate(obj);
});
test.cb('should return gzip compressed results if gzip header is sent', (t) => {
fakeRes((out, fakeHeaders) => {
const outString = JSON.stringify(out)
, compareString = JSON.stringify(zlib.gzipSync(JSON.stringify(obj)));
t.is(outString, compareString);
t.is(fakeHeaders['Content-Encoding'], 'gzip');
t.end();
}).sendGzip(obj);
});
test.cb('should return brotli compressed results if brotli header is sent', (t) => {
fakeRes((out, fakeHeaders) => {
const outString = JSON.stringify(out);
brotli.compress(new Buffer(JSON.stringify(obj)), (err, compareString) => {
t.is(outString, JSON.stringify(compareString));
t.is(fakeHeaders['Content-Encoding'], 'br');
t.end();
});
}).sendBrotli(obj);
});
test.cb('should return a 304 if the content has not changed', (t) => {
const notModifiedStatus = 304
, res = fakeRes(() => {
t.is(res.statusCode, notModifiedStatus);
t.end();
});
res.sendEtag(obj);
});