aboutsummaryrefslogtreecommitdiff
path: root/e2e/web-server
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-05-13 12:17:09 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-05-13 12:17:09 +0900
commitd844440a30a2ae6ddce0ff59af6c7572041f9bb4 (patch)
tree089bbc4df9b43233602ede5c2ebe0072fb3be31d /e2e/web-server
parente17399c4df35d5cd55300e9555240818eae5cf2c (diff)
Fix debug web-server on e2e testing
Diffstat (limited to 'e2e/web-server')
-rw-r--r--e2e/web-server/index.js28
-rw-r--r--e2e/web-server/url.js5
2 files changed, 24 insertions, 9 deletions
diff --git a/e2e/web-server/index.js b/e2e/web-server/index.js
index 81e11c1..8710bf9 100644
--- a/e2e/web-server/index.js
+++ b/e2e/web-server/index.js
@@ -1,14 +1,24 @@
+var serverUrl = require('./url');
var http = require('http');
+var url = require('url');
-const content =
-'<!DOCTYPE html>' +
-'<html lang="en">' +
- '<body style="width:10000px; height:10000px">' +
- '</body>' +
-'</html">' ;
+const handleScroll = (req, res) => {
+ res.writeHead(200, {'Content-Type': 'text/html'});
+ res.end('<!DOCTYPEhtml><html lang="en"><body style="width:10000px; height:10000px"></body></html">');
+};
+const handle404 = (req, res) => {
+ res.writeHead(404, {'Content-Type': 'text/plain'});
+ res.end('not found')
+};
http.createServer(function (req, res) {
- res.writeHead(200, {'Content-Type': 'text/html'});
- res.end(content);
-}).listen(11111, '127.0.0.1');
+ let u = url.parse(req.url);
+ if (req.method === 'GET' && u.pathname === '/scroll') {
+ handleScroll(req, res);
+ } else {
+ handle404(req, res);
+ }
+
+ console.log(`"${req.method} ${req.url}"`, res.statusCode)
+}).listen(serverUrl.PORT, serverUrl.HOST);
diff --git a/e2e/web-server/url.js b/e2e/web-server/url.js
new file mode 100644
index 0000000..37f3d84
--- /dev/null
+++ b/e2e/web-server/url.js
@@ -0,0 +1,5 @@
+module.exports = {
+ PORT: 11111,
+ HOST: '127.0.0.1',
+ CLIENT_URL: 'http://127.0.0.1:11111',
+}