From 3061e8333db784619d982b618c9792ec8da36e3a Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Thu, 18 Oct 2018 18:46:21 +0300 Subject: Tests: provide openssl.conf in test_tls_certificate_key_ec. Previously, test failed if openssl was unable to load config info, or the system's openssl.cnf was picked up, which is wrong as well. --- test/test_tls.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/test_tls.py') diff --git a/test/test_tls.py b/test/test_tls.py index 26bedcb7..aaf939ec 100644 --- a/test/test_tls.py +++ b/test/test_tls.py @@ -137,11 +137,14 @@ class TestUnitTLS(unit.TestUnitApplicationTLS): 'RSA (1024 bits)', 'certificate key rsa') def test_tls_certificate_key_ec(self): + self.load('empty') + subprocess.call(['openssl', 'ecparam', '-noout', '-genkey', '-out', self.testdir + '/ec.key', '-name', 'prime256v1']) subprocess.call(['openssl', 'req', '-x509', '-new', + '-config', self.testdir + '/openssl.conf', '-key', self.testdir + '/ec.key', '-subj', '/CN=ec/', '-out', self.testdir + '/ec.crt']) -- cgit