mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
* support wildcards for deploy_cert * support wildcards for enhance * redirect enhance and some tests * update tests * add display_ops and display_repr * update display_ops_test and errors found * say server block * match redirects properly * functional code * start adding tests and lint errors * add configurator tests * lint * change message to be generic to installation and enhancement * remove _wildcard_domain * take selecting vhosts out of loop * remove extra newline * filter wildcard vhosts by port * lint * don't filter by domain * [^.]+ * lint * make vhost hashable * one more tuple
45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
"""Test certbot_apache.display_ops."""
|
|
import unittest
|
|
|
|
from certbot.display import util as display_util
|
|
|
|
from certbot.tests import util as certbot_util
|
|
|
|
from certbot_nginx import parser
|
|
|
|
from certbot_nginx.display_ops import select_vhost_multiple
|
|
from certbot_nginx.tests import util
|
|
|
|
|
|
class SelectVhostMultiTest(util.NginxTest):
|
|
"""Tests for certbot_nginx.display_ops.select_vhost_multiple."""
|
|
|
|
def setUp(self):
|
|
super(SelectVhostMultiTest, self).setUp()
|
|
nparser = parser.NginxParser(self.config_path)
|
|
self.vhosts = nparser.get_vhosts()
|
|
|
|
def test_select_no_input(self):
|
|
self.assertFalse(select_vhost_multiple([]))
|
|
|
|
@certbot_util.patch_get_utility()
|
|
def test_select_correct(self, mock_util):
|
|
mock_util().checklist.return_value = (
|
|
display_util.OK, [self.vhosts[3].display_repr(),
|
|
self.vhosts[2].display_repr()])
|
|
vhs = select_vhost_multiple([self.vhosts[3],
|
|
self.vhosts[2],
|
|
self.vhosts[1]])
|
|
self.assertTrue(self.vhosts[2] in vhs)
|
|
self.assertTrue(self.vhosts[3] in vhs)
|
|
self.assertFalse(self.vhosts[1] in vhs)
|
|
|
|
@certbot_util.patch_get_utility()
|
|
def test_select_cancel(self, mock_util):
|
|
mock_util().checklist.return_value = (display_util.CANCEL, "whatever")
|
|
vhs = select_vhost_multiple([self.vhosts[2], self.vhosts[3]])
|
|
self.assertFalse(vhs)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main() # pragma: no cover
|