summaryrefslogtreecommitdiffhomepage
path: root/test/node/variables/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/node/variables/app.js')
-rwxr-xr-xtest/node/variables/app.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/node/variables/app.js b/test/node/variables/app.js
new file mode 100755
index 00000000..968afba5
--- /dev/null
+++ b/test/node/variables/app.js
@@ -0,0 +1,20 @@
+#!/usr/bin/env node
+
+require('unit-http').createServer(function (req, res) {
+ let body = '';
+ req.on('data', chunk => {
+ body += chunk.toString();
+ });
+ req.on('end', () => {
+ res.setHeader('Request-Method', req.method);
+ res.setHeader('Request-Uri', req.url);
+ res.setHeader('Server-Protocol', req.httpVersion);
+ res.setHeader('Request-Raw-Headers', req.rawHeaders.join());
+ res.setHeader('Content-Length', Buffer.byteLength(body));
+ res.setHeader('Content-Type', req.headers['Content-Type']);
+ res.setHeader('Custom-Header', req.headers['Custom-Header']);
+ res.setHeader('Http-Host', req.headers['Host']);
+ res.writeHead(200, {});
+ res.end(body);
+ });
+}).listen(7080);