mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
57 lines
1.8 KiB
Python
57 lines
1.8 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)
|
|
|
|
self.config_path = os.path.join(self.temp_dir, "etc_nginx")
|
|
|
|
self.rsa256_file = pkg_resources.resource_filename(
|
|
"acme.jose", "testdata/rsa256_key.pem")
|
|
self.rsa256_pem = pkg_resources.resource_string(
|
|
"acme.jose", "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, ssl_options, 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, nginx_mod_ssl_conf=ssl_options,
|
|
le_vhost_ext="-le-ssl.conf", backup_dir=backups,
|
|
config_dir=config_dir, work_dir=work_dir,
|
|
temp_checkpoint_dir=os.path.join(work_dir, "temp_checkpoints"),
|
|
in_progress_dir=os.path.join(backups, "IN_PROGRESS")),
|
|
name="nginx",
|
|
version=version)
|
|
config.prepare()
|
|
return config
|