summaryrefslogtreecommitdiffhomepage
path: root/test/unit/applications/tls.py
diff options
context:
space:
mode:
authorAndrei Zeliankou <zelenkov@nginx.com>2020-10-01 10:17:00 +0100
committerAndrei Zeliankou <zelenkov@nginx.com>2020-10-01 10:17:00 +0100
commitd491527555c076695a4202577198e12bf0b919ec (patch)
tree6640d7466137b41780c1ce94683fc869b68241cc /test/unit/applications/tls.py
parent1fe1518ab1b9ad5dac6f2f8a1e41571cbc4d96e9 (diff)
downloadunit-d491527555c076695a4202577198e12bf0b919ec.tar.gz
unit-d491527555c076695a4202577198e12bf0b919ec.tar.bz2
Tests: minor fixes.
Fixed temporary dir removing. Fixed printing path to log. Module checks moved to the separate file.
Diffstat (limited to 'test/unit/applications/tls.py')
-rw-r--r--test/unit/applications/tls.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/unit/applications/tls.py b/test/unit/applications/tls.py
index 5453eef0..7c95f27b 100644
--- a/test/unit/applications/tls.py
+++ b/test/unit/applications/tls.py
@@ -15,27 +15,6 @@ class TestApplicationTLS(TestApplicationProto):
self.context.check_hostname = False
self.context.verify_mode = ssl.CERT_NONE
- @classmethod
- def setup_class(cls, complete_check=True):
- unit = super().setup_class(complete_check=False)
-
- # check tls module
-
- try:
- subprocess.check_output(['which', 'openssl'])
-
- output = subprocess.check_output(
- [unit.unitd, '--version'], stderr=subprocess.STDOUT
- )
-
- if re.search('--openssl', output.decode()):
- cls.available['modules']['openssl'] = []
-
- except:
- pass
-
- return unit if not complete_check else unit.complete()
-
def certificate(self, name='default', load=True):
self.openssl_conf()