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)