From d9876b86675cc8712129d230ec90d6c2f6dccb38 Mon Sep 17 00:00:00 2001 From: ale Date: Wed, 8 Feb 2012 11:13:48 +0000 Subject: [PATCH] dump certs on stderr --- cam/tests/test_main.py | 5 +++++ 1 file changed, 5 insertions(+) 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) -- 2.20.1