76 lines
2.3 KiB
Python
76 lines
2.3 KiB
Python
"""Common utilities for letsencrypt_nginx."""
|
|
import os
|
|
import pkg_resources
|
|
import unittest
|
|
|
|
import mock
|
|
|
|
from letsencrypt.plugins import common
|
|
|
|
from letsencrypt_nginx import constants
|
|
from letsencrypt_nginx import configurator
|
|
|
|
|
|
class NginxTest(unittest.TestCase): # pylint: disable=too-few-public-methods
|
|
|
|
def setUp(self):
|
|
super(NginxTest, self).setUp()
|
|
|
|
self.temp_dir, self.config_dir, self.work_dir = common.dir_setup(
|
|
"etc_nginx", "letsencrypt_nginx.tests")
|
|
|
|
self.ssl_options = common.setup_ssl_options(
|
|
self.config_dir, constants.MOD_SSL_CONF_SRC,
|
|
constants.MOD_SSL_CONF_DEST)
|
|
|
|
self.config_path = os.path.join(self.temp_dir, "etc_nginx")
|
|
|
|
self.rsa256_file = pkg_resources.resource_filename(
|
|
"letsencrypt.tests", os.path.join("testdata", "rsa256_key.pem"))
|
|
self.rsa256_pem = pkg_resources.resource_string(
|
|
"letsencrypt.tests", os.path.join("testdata", "rsa256_key.pem"))
|
|
|
|
|
|
def get_data_filename(filename):
|
|
"""Gets the filename of a test data file."""
|
|
return pkg_resources.resource_filename(
|
|
"letsencrypt_nginx.tests", os.path.join(
|
|
"testdata", "etc_nginx", filename))
|
|
|
|
|
|
def get_nginx_configurator(
|
|
config_path, config_dir, work_dir, version=(1, 6, 2)):
|
|
"""Create an Nginx Configurator with the specified options."""
|
|
|
|
backups = os.path.join(work_dir, "backups")
|
|
|
|
config = configurator.NginxConfigurator(
|
|
config=mock.MagicMock(
|
|
nginx_server_root=config_path,
|
|
le_vhost_ext="-le-ssl.conf",
|
|
config_dir=config_dir,
|
|
work_dir=work_dir,
|
|
backup_dir=backups,
|
|
temp_checkpoint_dir=os.path.join(work_dir, "temp_checkpoints"),
|
|
in_progress_dir=os.path.join(backups, "IN_PROGRESS"),
|
|
dvsni_port=5001,
|
|
),
|
|
name="nginx",
|
|
version=version)
|
|
config.prepare()
|
|
return config
|
|
|
|
|
|
def filter_comments(tree):
|
|
"""Filter comment nodes from parsed configurations."""
|
|
|
|
def traverse(tree):
|
|
"""Generator dropping comment nodes"""
|
|
for key, values in tree:
|
|
if isinstance(key, list):
|
|
yield [key, filter_comments(values)]
|
|
else:
|
|
if key != '#':
|
|
yield [key, values]
|
|
|
|
return list(traverse(tree))
|