mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 03:32:13 +02:00
Work in progress on removing_proxy
This commit is contained in:
+13
-2
@@ -9,6 +9,7 @@ import zope.interface
|
|||||||
from certbot import configuration
|
from certbot import configuration
|
||||||
from certbot import errors as le_errors
|
from certbot import errors as le_errors
|
||||||
from certbot_apache import configurator
|
from certbot_apache import configurator
|
||||||
|
from certbot_apache import constants
|
||||||
from certbot_compatibility_test import errors
|
from certbot_compatibility_test import errors
|
||||||
from certbot_compatibility_test import interfaces
|
from certbot_compatibility_test import interfaces
|
||||||
from certbot_compatibility_test import util
|
from certbot_compatibility_test import util
|
||||||
@@ -31,6 +32,11 @@ class Proxy(configurators_common.Proxy):
|
|||||||
|
|
||||||
self.modules = self.server_root = self.test_conf = self.version = None
|
self.modules = self.server_root = self.test_conf = self.version = None
|
||||||
self._apache_configurator = self._all_names = self._test_names = None
|
self._apache_configurator = self._all_names = self._test_names = None
|
||||||
|
patch = mock.patch(
|
||||||
|
"certbot_apache.configurator.display_ops.select_vhost")
|
||||||
|
mock_display = patch.start()
|
||||||
|
mock_display.side_effect = le_errors.PluginError(
|
||||||
|
"Unable to determine vhost")
|
||||||
|
|
||||||
def __getattr__(self, name):
|
def __getattr__(self, name):
|
||||||
"""Wraps the Apache Configurator methods"""
|
"""Wraps the Apache Configurator methods"""
|
||||||
@@ -50,12 +56,11 @@ class Proxy(configurators_common.Proxy):
|
|||||||
with open(os.path.join(config, "config_file")) as f:
|
with open(os.path.join(config, "config_file")) as f:
|
||||||
config_file = os.path.join(server_root, f.readline().rstrip())
|
config_file = os.path.join(server_root, f.readline().rstrip())
|
||||||
|
|
||||||
self.preprocess_config(server_root)
|
|
||||||
self._prepare_configurator(server_root, config_file)
|
self._prepare_configurator(server_root, config_file)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
subprocess.check_call("apachectl -d {0} -f {1} -k start".format(
|
subprocess.check_call("apachectl -d {0} -f {1} -k start".format(
|
||||||
server_root, config_file))
|
server_root, config_file).split())
|
||||||
except errors.Error:
|
except errors.Error:
|
||||||
raise errors.Error(
|
raise errors.Error(
|
||||||
"Apache failed to load {0} before tests started".format(
|
"Apache failed to load {0} before tests started".format(
|
||||||
@@ -65,8 +70,13 @@ class Proxy(configurators_common.Proxy):
|
|||||||
|
|
||||||
def _prepare_configurator(self, server_root, config_file):
|
def _prepare_configurator(self, server_root, config_file):
|
||||||
"""Prepares the Apache plugin for testing"""
|
"""Prepares the Apache plugin for testing"""
|
||||||
|
for k in constants.CLI_DEFAULTS_DEBIAN.keys():
|
||||||
|
setattr(self.le_config, "apache_" + k, constants.os_constant(k))
|
||||||
self.le_config.apache_server_root = server_root
|
self.le_config.apache_server_root = server_root
|
||||||
|
|
||||||
|
# An alias
|
||||||
|
self.le_config.apache_handle_modules = self.le_config.apache_handle_mods
|
||||||
|
|
||||||
self._apache_configurator = configurator.ApacheConfigurator(
|
self._apache_configurator = configurator.ApacheConfigurator(
|
||||||
config=configuration.NamespaceConfig(self.le_config),
|
config=configuration.NamespaceConfig(self.le_config),
|
||||||
name="apache")
|
name="apache")
|
||||||
@@ -75,6 +85,7 @@ class Proxy(configurators_common.Proxy):
|
|||||||
def cleanup_from_tests(self):
|
def cleanup_from_tests(self):
|
||||||
"""Performs any necessary cleanup from running plugin tests"""
|
"""Performs any necessary cleanup from running plugin tests"""
|
||||||
super(Proxy, self).cleanup_from_tests()
|
super(Proxy, self).cleanup_from_tests()
|
||||||
|
mock.patch.stopall()
|
||||||
|
|
||||||
def get_all_names_answer(self):
|
def get_all_names_answer(self):
|
||||||
"""Returns the set of domain names that the plugin should find"""
|
"""Returns the set of domain names that the plugin should find"""
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ from certbot_compatibility_test import errors
|
|||||||
from certbot_compatibility_test import util
|
from certbot_compatibility_test import util
|
||||||
from certbot_compatibility_test import validator
|
from certbot_compatibility_test import validator
|
||||||
|
|
||||||
from certbot_compatibility_test.configurators.apache import apache24
|
from certbot_compatibility_test.configurators.apache import common
|
||||||
|
|
||||||
|
|
||||||
DESCRIPTION = """
|
DESCRIPTION = """
|
||||||
@@ -31,7 +31,7 @@ tests that the plugin supports are performed.
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
PLUGINS = {"apache": apache24.Proxy}
|
PLUGINS = {"apache": common.Proxy}
|
||||||
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
@@ -47,6 +47,8 @@ def test_authenticator(plugin, config, temp_dir):
|
|||||||
"challenge types")
|
"challenge types")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
import ipdb
|
||||||
|
ipdb.set_trace()
|
||||||
try:
|
try:
|
||||||
responses = plugin.perform(achalls)
|
responses = plugin.perform(achalls)
|
||||||
except le_errors.Error as error:
|
except le_errors.Error as error:
|
||||||
@@ -341,7 +343,6 @@ def main():
|
|||||||
temp_dir = tempfile.mkdtemp()
|
temp_dir = tempfile.mkdtemp()
|
||||||
plugin = PLUGINS[args.plugin](args)
|
plugin = PLUGINS[args.plugin](args)
|
||||||
try:
|
try:
|
||||||
plugin.execute_in_docker("mkdir -p /var/log/apache2")
|
|
||||||
while plugin.has_more_configs():
|
while plugin.has_more_configs():
|
||||||
success = True
|
success = True
|
||||||
|
|
||||||
|
|||||||
@@ -7,9 +7,8 @@ from setuptools import find_packages
|
|||||||
version = '0.8.0.dev0'
|
version = '0.8.0.dev0'
|
||||||
|
|
||||||
install_requires = [
|
install_requires = [
|
||||||
'certbot=={0}'.format(version),
|
'certbot',
|
||||||
'certbot-apache=={0}'.format(version),
|
'certbot-apache',
|
||||||
'docker-py',
|
|
||||||
'requests',
|
'requests',
|
||||||
'zope.interface',
|
'zope.interface',
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user