summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrei Zeliankou <zelenkov@nginx.com>2022-11-29 01:02:08 +0000
committerAndrei Zeliankou <zelenkov@nginx.com>2022-11-29 01:02:08 +0000
commit190691ade82f5126271b374dd5b8d0cb57f9473a (patch)
treed684510e886fb94c249cb9df1c310a2c42252b05
parente3bbf5b3b5be384a39bbd1c42d44379b17d94185 (diff)
downloadunit-190691ade82f5126271b374dd5b8d0cb57f9473a.tar.gz
unit-190691ade82f5126271b374dd5b8d0cb57f9473a.tar.bz2
Tests: NJS.
-rw-r--r--test/conftest.py2
-rw-r--r--test/test_njs.py90
-rw-r--r--test/unit/check/njs.py6
-rw-r--r--test/unit/http.py4
4 files changed, 101 insertions, 1 deletions
diff --git a/test/conftest.py b/test/conftest.py
index bf2951db..759f11bd 100644
--- a/test/conftest.py
+++ b/test/conftest.py
@@ -17,6 +17,7 @@ import pytest
from unit.check.chroot import check_chroot
from unit.check.go import check_go
from unit.check.isolation import check_isolation
+from unit.check.njs import check_njs
from unit.check.node import check_node
from unit.check.regex import check_regex
from unit.check.tls import check_openssl
@@ -206,6 +207,7 @@ def pytest_sessionstart(session):
# discover modules from check
option.available['modules']['go'] = check_go()
+ option.available['modules']['njs'] = check_njs(output_version)
option.available['modules']['node'] = check_node(option.current_dir)
option.available['modules']['openssl'] = check_openssl(output_version)
option.available['modules']['regex'] = check_regex(output_version)
diff --git a/test/test_njs.py b/test/test_njs.py
new file mode 100644
index 00000000..2cbded5b
--- /dev/null
+++ b/test/test_njs.py
@@ -0,0 +1,90 @@
+import os
+
+from unit.applications.proto import TestApplicationProto
+from unit.option import option
+
+
+class TestNJS(TestApplicationProto):
+ prerequisites = {'modules': {'njs': 'any'}}
+
+ def setup_method(self):
+ os.makedirs(option.temp_dir + '/assets')
+ open(option.temp_dir + '/assets/index.html', 'a')
+ open(option.temp_dir + '/assets/localhost', 'a')
+ open(option.temp_dir + '/assets/`string`', 'a')
+ open(option.temp_dir + '/assets/`backtick', 'a')
+ open(option.temp_dir + '/assets/l1\nl2', 'a')
+ open(option.temp_dir + '/assets/127.0.0.1', 'a')
+
+ assert 'success' in self.conf(
+ {
+ "listeners": {"*:7080": {"pass": "routes"}},
+ "routes": [
+ {"action": {"share": option.temp_dir + "/assets$uri"}}
+ ],
+ }
+ )
+
+ def set_share(self, share):
+ assert 'success' in self.conf(share, 'routes/0/action/share')
+
+ def test_njs_template_string(self, temp_dir):
+ self.set_share('"`' + temp_dir + '/assets/index.html`"')
+ assert self.get()['status'] == 200, 'string'
+
+ self.set_share('"' + temp_dir + '/assets/`string`"')
+ assert self.get()['status'] == 200, 'string 2'
+
+ self.set_share('"`' + temp_dir + '/assets/\\\\`backtick`"')
+ assert self.get()['status'] == 200, 'escape'
+
+ self.set_share('"`' + temp_dir + '/assets/l1\\nl2`"')
+ assert self.get()['status'] == 200, 'multiline'
+
+ def test_njs_template_expression(self, temp_dir):
+ def check_expression(expression):
+ self.set_share(expression)
+ assert self.get()['status'] == 200
+
+ check_expression('"`' + temp_dir + '/assets${uri}`"')
+ check_expression('"`' + temp_dir + '/assets${uri}${host}`"')
+ check_expression('"`' + temp_dir + '/assets${uri + host}`"')
+ check_expression('"`' + temp_dir + '/assets${uri + `${host}`}`"')
+
+ def test_njs_variables(self, temp_dir):
+ self.set_share('"`' + temp_dir + '/assets/${host}`"')
+ assert self.get()['status'] == 200, 'host'
+
+ self.set_share('"`' + temp_dir + '/assets/${remoteAddr}`"')
+ assert self.get()['status'] == 200, 'remoteAddr'
+
+ self.set_share('"`' + temp_dir + '/assets/${headers.Host}`"')
+ assert self.get()['status'] == 200, 'headers'
+
+ self.set_share('"`' + temp_dir + '/assets/${cookies.foo}`"')
+ assert (
+ self.get(
+ headers={'Cookie': 'foo=localhost', 'Connection': 'close'}
+ )['status']
+ == 200
+ ), 'cookies'
+
+ self.set_share('"`' + temp_dir + '/assets/${args.foo}`"')
+ assert self.get(url='/?foo=localhost')['status'] == 200, 'args'
+
+ def test_njs_invalid(self, temp_dir, skip_alert):
+ skip_alert(r'js exception:')
+
+ def check_invalid(template):
+ assert 'error' in self.conf(template, 'routes/0/action/share')
+
+ check_invalid('"`a"')
+ check_invalid('"`a``"')
+ check_invalid('"`a`/"')
+
+ def check_invalid_resolve(template):
+ assert 'success' in self.conf(template, 'routes/0/action/share')
+ assert self.get()['status'] == 500
+
+ check_invalid_resolve('"`${a}`"')
+ check_invalid_resolve('"`${uri.a.a}`"')
diff --git a/test/unit/check/njs.py b/test/unit/check/njs.py
new file mode 100644
index 00000000..433473a1
--- /dev/null
+++ b/test/unit/check/njs.py
@@ -0,0 +1,6 @@
+import re
+
+
+def check_njs(output_version):
+ if re.search('--njs', output_version):
+ return True
diff --git a/test/unit/http.py b/test/unit/http.py
index 144f300c..c48a720f 100644
--- a/test/unit/http.py
+++ b/test/unit/http.py
@@ -102,7 +102,9 @@ class TestHTTP:
if 'read_buffer_size' in kwargs:
recvall_kwargs['buff_size'] = kwargs['read_buffer_size']
- resp = self.recvall(sock, **recvall_kwargs).decode(encoding)
+ resp = self.recvall(sock, **recvall_kwargs).decode(
+ encoding, errors='ignore'
+ )
else:
return sock