Skip to content

Commit

Permalink
eAB test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
systemcrash committed Nov 29, 2022
1 parent 3d4b6ce commit 9f1b80f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions tests/test_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,15 +224,23 @@ def test_account_key_domain(self):
self.assertIsInstance(result, ValueError)
self.assertIn(self.account_key_error, result.args[0])

def test_contact(self):
""" Make sure optional contact details can be set """
def test_contact_update(self):
""" Make sure optional contact details can be updated """
# add a logging handler that captures the info log output
log_output = StringIO()
debug_handler = logging.StreamHandler(log_output)
acme_tiny.LOGGER.addHandler(debug_handler)
# call acme_tiny with new contact details
old_stdout = sys.stdout
sys.stdout = StringIO()
result = acme_tiny.main([
"--account-key", self.KEYS['account_key'].name,
"--csr", self.KEYS['domain_csr'].name,
"--acme-dir", self.tempdir,
"--directory-url", self.DIR_URL,
"--check-port", self.check_port,
"--contact", "mailto:devteam2@gethttpsforfree.com", "mailto:daboss@gethttpsforfree.com",
])
result = acme_tiny.main([
"--account-key", self.KEYS['account_key'].name,
"--csr", self.KEYS['domain_csr'].name,
Expand Down

0 comments on commit 9f1b80f

Please sign in to comment.