mirror of
https://github.com/certbot/certbot.git
synced 2026-01-21 19:01:07 +03:00
87 lines
3.3 KiB
Python
87 lines
3.3 KiB
Python
"""Tests for letsencrypt.configuration."""
|
|
import os
|
|
import unittest
|
|
|
|
import mock
|
|
|
|
from letsencrypt import errors
|
|
|
|
|
|
class NamespaceConfigTest(unittest.TestCase):
|
|
"""Tests for letsencrypt.configuration.NamespaceConfig."""
|
|
|
|
def setUp(self):
|
|
self.namespace = mock.MagicMock(
|
|
config_dir='/tmp/config', work_dir='/tmp/foo', foo='bar',
|
|
server='https://acme-server.org:443/new',
|
|
dvsni_port=1234, simple_http_port=4321)
|
|
from letsencrypt.configuration import NamespaceConfig
|
|
self.config = NamespaceConfig(self.namespace)
|
|
|
|
def test_init_same_ports(self):
|
|
self.namespace.dvsni_port = 4321
|
|
from letsencrypt.configuration import NamespaceConfig
|
|
self.assertRaises(errors.Error, NamespaceConfig, self.namespace)
|
|
|
|
def test_proxy_getattr(self):
|
|
self.assertEqual(self.config.foo, 'bar')
|
|
self.assertEqual(self.config.work_dir, '/tmp/foo')
|
|
|
|
def test_server_path(self):
|
|
self.assertEqual(['acme-server.org:443', 'new'],
|
|
self.config.server_path.split(os.path.sep))
|
|
|
|
self.namespace.server = ('http://user:pass@acme.server:443'
|
|
'/p/a/t/h;parameters?query#fragment')
|
|
self.assertEqual(['user:pass@acme.server:443', 'p', 'a', 't', 'h'],
|
|
self.config.server_path.split(os.path.sep))
|
|
|
|
@mock.patch('letsencrypt.configuration.constants')
|
|
def test_dynamic_dirs(self, constants):
|
|
constants.ACCOUNTS_DIR = 'acc'
|
|
constants.BACKUP_DIR = 'backups'
|
|
constants.CSR_DIR = 'csr'
|
|
|
|
constants.IN_PROGRESS_DIR = '../p'
|
|
constants.KEY_DIR = 'keys'
|
|
constants.TEMP_CHECKPOINT_DIR = 't'
|
|
|
|
self.assertEqual(
|
|
self.config.accounts_dir, '/tmp/config/acc/acme-server.org:443/new')
|
|
self.assertEqual(self.config.backup_dir, '/tmp/foo/backups')
|
|
self.assertEqual(self.config.csr_dir, '/tmp/config/csr')
|
|
self.assertEqual(self.config.in_progress_dir, '/tmp/foo/../p')
|
|
self.assertEqual(self.config.key_dir, '/tmp/config/keys')
|
|
self.assertEqual(self.config.temp_checkpoint_dir, '/tmp/foo/t')
|
|
|
|
def test_simple_http_port(self):
|
|
self.assertEqual(4321, self.config.simple_http_port)
|
|
self.namespace.simple_http_port = None
|
|
self.assertEqual(80, self.config.simple_http_port)
|
|
|
|
|
|
class RenewerConfigurationTest(unittest.TestCase):
|
|
"""Test for letsencrypt.configuration.RenewerConfiguration."""
|
|
|
|
def setUp(self):
|
|
self.namespace = mock.MagicMock(config_dir='/tmp/config')
|
|
from letsencrypt.configuration import RenewerConfiguration
|
|
self.config = RenewerConfiguration(self.namespace)
|
|
|
|
@mock.patch('letsencrypt.configuration.constants')
|
|
def test_dynamic_dirs(self, constants):
|
|
constants.ARCHIVE_DIR = 'a'
|
|
constants.LIVE_DIR = 'l'
|
|
constants.RENEWAL_CONFIGS_DIR = 'renewal_configs'
|
|
constants.RENEWER_CONFIG_FILENAME = 'r.conf'
|
|
|
|
self.assertEqual(self.config.archive_dir, '/tmp/config/a')
|
|
self.assertEqual(self.config.live_dir, '/tmp/config/l')
|
|
self.assertEqual(
|
|
self.config.renewal_configs_dir, '/tmp/config/renewal_configs')
|
|
self.assertEqual(self.config.renewer_config_file, '/tmp/config/r.conf')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() # pragma: no cover
|