dump certs on stderr
authorale <ale@incal.net>
Wed, 8 Feb 2012 11:13:48 +0000 (11:13 +0000)
committerale <ale@incal.net>
Wed, 8 Feb 2012 11:13:48 +0000 (11:13 +0000)
cam/tests/test_main.py

index a370960..e818ee1 100644 (file)
@@ -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)