Sets the WinRM self signed start date in the past

This is needed in case of time sync issues when the certificate is
generated, as PowerShell remoting enforces a valid time validity even
for self signed certicates.

Change-Id: Ice963035e59660f4a6f52402832cd27551261129
Closes-Bug: #1551239
This commit is contained in:
Alessandro Pilotti
2016-02-29 16:03:36 +02:00
parent 7bf618155a
commit 6bbffaf075
2 changed files with 11 additions and 3 deletions

View File

@@ -229,9 +229,11 @@ class CryptoAPICertManagerTests(unittest.TestCase):
six.text_type(self.x509.STORE_NAME_MY))
mock_get_cert_thumprint.assert_called_once_with(
mock_CertCreateSelfSignCertificate())
mock_add_system_time_interval.assert_called_once_with(
mock_SYSTEMTIME.return_value, self.x509.X509_END_DATE_INTERVAL)
mock_add_system_time_interval.assert_has_calls(
[mock.call(mock_SYSTEMTIME.return_value,
self.x509.X509_END_DATE_INTERVAL),
mock.call(mock_SYSTEMTIME.return_value,
self.x509.X509_START_DATE_INTERVAL)])
mock_CertCloseStore.assert_called_once_with(store_handle, 0)
mock_CertFreeCertificateContext.assert_called_once_with(
mock_CertCreateSelfSignCertificate())