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.
This commit is contained in:
Sergey Kandaurov
2018-10-18 18:46:21 +03:00
parent 0ee8de5543
commit 3061e8333d

View File

@@ -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'])