mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 03:32:13 +02:00
Merge branch 'master' into revoker
This commit is contained in:
@@ -41,6 +41,10 @@ class PerformTest(unittest.TestCase):
|
|||||||
self.assertRaises(
|
self.assertRaises(
|
||||||
errors.LetsEncryptClientAuthError, self.auth.perform, [unexpected])
|
errors.LetsEncryptClientAuthError, self.auth.perform, [unexpected])
|
||||||
|
|
||||||
|
def test_chall_pref(self):
|
||||||
|
self.assertEqual(
|
||||||
|
self.auth.get_chall_pref("example.com"), ["recoveryToken"])
|
||||||
|
|
||||||
|
|
||||||
class CleanupTest(unittest.TestCase):
|
class CleanupTest(unittest.TestCase):
|
||||||
"""Test the Authenticator cleanup function."""
|
"""Test the Authenticator cleanup function."""
|
||||||
|
|||||||
@@ -42,6 +42,11 @@ class RecoveryTokenTest(unittest.TestCase):
|
|||||||
# Shouldn't throw an error
|
# Shouldn't throw an error
|
||||||
self.rec_token.cleanup(challenge_util.RecTokenChall("example4.com"))
|
self.rec_token.cleanup(challenge_util.RecTokenChall("example4.com"))
|
||||||
|
|
||||||
|
# SHOULD throw an error (OSError other than nonexistent file)
|
||||||
|
self.assertRaises(
|
||||||
|
OSError, self.rec_token.cleanup,
|
||||||
|
challenge_util.RecTokenChall("a"+"r"*10000+".com"))
|
||||||
|
|
||||||
def test_perform_stored(self):
|
def test_perform_stored(self):
|
||||||
self.rec_token.store_token("example4.com", 444)
|
self.rec_token.store_token("example4.com", 444)
|
||||||
response = self.rec_token.perform(
|
response = self.rec_token.perform(
|
||||||
|
|||||||
Reference in New Issue
Block a user