summaryrefslogtreecommitdiffhomepage
path: root/test/node/post_variables
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2018-10-25 15:43:48 +0300
committerSergey Kandaurov <pluknet@nginx.com>2018-10-25 15:43:48 +0300
commit0fdc7c3a55daceb54c034a51b30f06a932236965 (patch)
treee55e5f320d13934f0dfb742b8c0ec19962f0220d /test/node/post_variables
parent41d3d63758fc3846d5a09afd3b33aac19231942a (diff)
downloadunit-0fdc7c3a55daceb54c034a51b30f06a932236965.tar.gz
unit-0fdc7c3a55daceb54c034a51b30f06a932236965.tar.bz2
Tests: Node.js application tests.
Diffstat (limited to 'test/node/post_variables')
-rwxr-xr-xtest/node/post_variables/app.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/node/post_variables/app.js b/test/node/post_variables/app.js
new file mode 100755
index 00000000..928a38cf
--- /dev/null
+++ b/test/node/post_variables/app.js
@@ -0,0 +1,15 @@
+#!/usr/bin/env node
+
+require('unit-http').createServer(function (req, res) {
+ let body = '';
+ req.on('data', chunk => {
+ body += chunk.toString();
+ });
+ req.on('end', () => {
+ let query = require('querystring').parse(body);
+ res.setHeader('X-Var-1', query.var1);
+ res.setHeader('X-Var-2', query.var2);
+ res.setHeader('X-Var-3', query.var3);
+ res.end();
+ });
+}).listen(7080);