From: ale Date: Wed, 8 Feb 2012 11:13:48 +0000 (+0000) Subject: dump certs on stderr X-Git-Url: https://v.licheni.net/stack/cam.git/commitdiff_plain/d9876b86675cc8712129d230ec90d6c2f6dccb38?ds=sidebyside dump certs on stderr --- 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)