From 0fdc7c3a55daceb54c034a51b30f06a932236965 Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Thu, 25 Oct 2018 15:43:48 +0300 Subject: Tests: Node.js application tests. --- test/node/post_variables/app.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 test/node/post_variables/app.js (limited to 'test/node/post_variables') 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); -- cgit