summaryrefslogtreecommitdiffhomepage
path: root/test/unit.py
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2018-01-10 20:35:22 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2018-01-10 20:35:22 +0300
commit470948a0d65fb65ff58fc185af12e5ece8e1ae4c (patch)
tree3f5f84d9e5b561f0ed6128eb2ff2377914540ab5 /test/unit.py
parent8546d6d499b9700364bb23b923d022fca10fe00e (diff)
downloadunit-470948a0d65fb65ff58fc185af12e5ece8e1ae4c.tar.gz
unit-470948a0d65fb65ff58fc185af12e5ece8e1ae4c.tar.bz2
Tests: style.
Diffstat (limited to 'test/unit.py')
-rw-r--r--test/unit.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/test/unit.py b/test/unit.py
index 3d331b46..9b3f76ef 100644
--- a/test/unit.py
+++ b/test/unit.py
@@ -41,16 +41,18 @@ class TestUnit(unittest.TestCase):
if m is None:
exit("Unit is writing log too long")
- ret = ''
+ missed_module = ''
for module in modules:
m = re.search('module: ' + module, log, re.M | re.S)
if m is None:
- ret = module
+ missed_module = module
+ break
self._stop()
shutil.rmtree(self.testdir)
- return ret
+ if missed_module:
+ raise unittest.SkipTest('Unit has no ' + missed_module + ' module')
def _run(self):
self.testdir = tempfile.mkdtemp(prefix='unit-test-')
@@ -131,7 +133,6 @@ class TestUnitControl(TestUnit):
# TODO http client
def http(self, req):
-
with self._control_sock() as sock:
sock.sendall(req)
@@ -146,21 +147,18 @@ class TestUnitControl(TestUnit):
return resp
def get(self, path='/'):
-
resp = self.http(('GET ' + path
+ ' HTTP/1.1\r\nHost: localhost\r\n\r\n').encode())
return self._body_json(resp)
def delete(self, path='/'):
-
resp = self.http(('DELETE ' + path
+ ' HTTP/1.1\r\nHost: localhost\r\n\r\n').encode())
return self._body_json(resp)
def put(self, path='/', data=''):
-
if isinstance(data, str):
data = data.encode()