diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2018-10-25 15:43:48 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2018-10-25 15:43:48 +0300 |
commit | 0fdc7c3a55daceb54c034a51b30f06a932236965 (patch) | |
tree | e55e5f320d13934f0dfb742b8c0ec19962f0220d /test/node/404 | |
parent | 41d3d63758fc3846d5a09afd3b33aac19231942a (diff) | |
download | unit-0fdc7c3a55daceb54c034a51b30f06a932236965.tar.gz unit-0fdc7c3a55daceb54c034a51b30f06a932236965.tar.bz2 |
Tests: Node.js application tests.
Diffstat (limited to 'test/node/404')
-rw-r--r-- | test/node/404/404.html | 6 | ||||
-rwxr-xr-x | test/node/404/app.js | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/test/node/404/404.html b/test/node/404/404.html new file mode 100644 index 00000000..6d0c635a --- /dev/null +++ b/test/node/404/404.html @@ -0,0 +1,6 @@ +<html> +<head><title>404 Not Found</title></head> +<body bgcolor="white"> +<center><h1>404 Not Found</h1></center> +</body> +</html> diff --git a/test/node/404/app.js b/test/node/404/app.js new file mode 100755 index 00000000..9600d486 --- /dev/null +++ b/test/node/404/app.js @@ -0,0 +1,8 @@ +#!/usr/bin/env node + +var fs = require('fs'); + +require('unit-http').createServer(function (req, res) { + res.writeHead(404, {}); + res.end(fs.readFileSync('404.html')); +}).listen(7080); |