summaryrefslogtreecommitdiffhomepage
path: root/test/test_node_application.py
diff options
context:
space:
mode:
authorMax Romanov <max.romanov@nginx.com>2020-12-29 19:00:54 +0300
committerMax Romanov <max.romanov@nginx.com>2020-12-29 19:00:54 +0300
commitd3d6864bdc64f34924e686ff65da704b29aaaa93 (patch)
treecf8c42d762fd9345143c3fa5c3ecb04d250e13ee /test/test_node_application.py
parent3abca42caf44f03941545e5e92f35c0f329640e7 (diff)
downloadunit-d3d6864bdc64f34924e686ff65da704b29aaaa93.tar.gz
unit-d3d6864bdc64f34924e686ff65da704b29aaaa93.tar.bz2
Node.js: ServerRequest and ServerResponse compliance to Stream API.
ServerRequest now inherit stream Readable object. ServerResponse provides 'writable' property. Thanks to Wu Jian Ping (@wujjpp). This closes #274, closes #317 issues and closes #502 PR on GitHub.
Diffstat (limited to '')
-rw-r--r--test/test_node_application.py45
1 files changed, 0 insertions, 45 deletions
diff --git a/test/test_node_application.py b/test/test_node_application.py
index f13a01e1..da29847a 100644
--- a/test/test_node_application.py
+++ b/test/test_node_application.py
@@ -222,22 +222,6 @@ class TestNodeApplication(TestApplicationNode):
assert 'X-Header' not in headers, 'insensitive'
assert 'X-header' not in headers, 'insensitive 2'
- def test_node_application_promise_handler(self, temp_dir):
- self.load('promise_handler')
-
- assert (
- self.post(
- headers={
- 'Host': 'localhost',
- 'Content-Type': 'text/html',
- 'Connection': 'close',
- },
- body='callback',
- )['status']
- == 200
- ), 'promise handler request'
- assert waitforfiles(temp_dir + '/node/callback'), 'promise handler'
-
def test_node_application_promise_handler_write_after_end(self):
self.load('promise_handler')
@@ -270,35 +254,6 @@ class TestNodeApplication(TestApplicationNode):
), 'promise end request'
assert waitforfiles(temp_dir + '/node/callback'), 'promise end'
- def test_node_application_promise_multiple_calls(self, temp_dir):
- self.load('promise_handler')
-
- self.post(
- headers={
- 'Host': 'localhost',
- 'Content-Type': 'text/html',
- 'Connection': 'close',
- },
- body='callback1',
- )
-
- assert waitforfiles(
- temp_dir + '/node/callback1'
- ), 'promise first call'
-
- self.post(
- headers={
- 'Host': 'localhost',
- 'Content-Type': 'text/html',
- 'Connection': 'close',
- },
- body='callback2',
- )
-
- assert waitforfiles(
- temp_dir + '/node/callback2'
- ), 'promise second call'
-
@pytest.mark.skip('not yet')
def test_node_application_header_name_valid(self):
self.load('header_name_valid')