1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-21 19:01:07 +03:00

Merge pull request #682 from letsencrypt/fix_chall_prep_https_apache

Fix enable_mod register_undo_command in challenges
This commit is contained in:
bmw
2015-08-14 09:33:30 -07:00
3 changed files with 9 additions and 3 deletions

View File

@@ -482,7 +482,7 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator):
logger.debug(msg)
self.save_notes += msg
def prepare_server_https(self, port):
def prepare_server_https(self, port, temp=False):
"""Prepare the server for HTTPS.
Make sure that the ssl_module is loaded and that the server
@@ -493,7 +493,7 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator):
"""
if "ssl_module" not in self.parser.modules:
logger.info("Loading mod_ssl into Apache Server")
self.enable_mod("ssl")
self.enable_mod("ssl", temp)
# Check for Listen <port>
# Note: This could be made to also look for ip:443 combo

View File

@@ -62,7 +62,7 @@ class ApacheDvsni(common.Dvsni):
# Prepare the server for HTTPS
self.configurator.prepare_server_https(
str(self.configurator.config.dvsni_port))
str(self.configurator.config.dvsni_port), True)
responses = []

View File

@@ -38,6 +38,9 @@ class DvsniPerformTest(util.ApacheTest):
@mock.patch("letsencrypt.le_util.exe_exists")
@mock.patch("letsencrypt.le_util.run_script")
def test_perform1(self, _, mock_exists):
mock_register = mock.Mock()
self.sni.configurator.reverter.register_undo_command = mock_register
mock_exists.return_value = True
self.sni.configurator.parser.update_runtime_variables = mock.Mock()
@@ -50,6 +53,9 @@ class DvsniPerformTest(util.ApacheTest):
responses = self.sni.perform()
# Make sure that register_undo_command was called into temp directory.
self.assertEqual(True, mock_register.call_args[0][0])
mock_setup_cert.assert_called_once_with(achall)
# Check to make sure challenge config path is included in apache config.