ansible/test/integration/targets/openssl_certificate
Yanis Guenane 99497ce54c openssl_certificate: Handle dump() in check_mode (#38386)
Currently, when ones run the module in check_mode it tries to retrieve
values from the actual certificate generated in the generate() function.

Since in check_mode we call dump() without calling generate(), self.cert
is None, leading to self.cert.get_notBefore(), self.cert.get_notAfter()
and self.cert.get_serial_number() raising an error.

>  NoneType' object has no attribute 'get_notBefore'

The solution is to have two way to handle dump() method, whether its run
in check_mode=True or check_mode=False leading to different way the
information is retrieved.
2018-04-09 09:26:02 +01:00
..
meta
tasks openssl_certificate: Handle dump() in check_mode (#38386) 2018-04-09 09:26:02 +01:00
tests Fix openssl_certificate test for newer openssl. 2018-04-04 14:48:18 -07:00
aliases