X-Git-Url: https://v.licheni.net/stack/cam.git/blobdiff_plain/a3143f42f255d439fb27494f381e26c27667986a..d9876b86675cc8712129d230ec90d6c2f6dccb38:/cam/tests/test_main.py diff --git a/cam/tests/test_main.py b/cam/tests/test_main.py index a370960..e818ee1 100644 --- a/cam/tests/test_main.py +++ b/cam/tests/test_main.py @@ -49,6 +49,11 @@ cn = www.test.org self.assertTrue(os.path.exists(ca_file)) self.assertTrue(os.path.exists(crt_file)) + subprocess.call(['openssl', 'x509', '-in', ca_file, + '-noout', '-text']) + subprocess.call(['openssl', 'x509', '-in', crt_file, + '-noout', '-text']) + pipe = subprocess.Popen( ['openssl', 'verify', '-CAfile', ca_file, '-verbose', crt_file], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)