mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 00:22:28 +02:00
Part of #7886. This PR conditionally installs `mock` in `certbot-dns-*/setup.py` based on setuptools version and python version, when possible. It then updates the tests to use `unittest.mock` when `mock` isn't available. * Do not require mock in Python 3 in certbot-dns modules * update changelog * error when trying to build wheels with old setuptools * add type: ignores
60 lines
2.1 KiB
Python
60 lines
2.1 KiB
Python
"""Tests for certbot_dns_sakuracloud._internal.dns_sakuracloud."""
|
|
|
|
import unittest
|
|
|
|
try:
|
|
import mock
|
|
except ImportError: # pragma: no cover
|
|
from unittest import mock # type: ignore
|
|
from requests.exceptions import HTTPError
|
|
|
|
from certbot.compat import os
|
|
from certbot.plugins import dns_test_common
|
|
from certbot.plugins import dns_test_common_lexicon
|
|
from certbot.plugins.dns_test_common import DOMAIN
|
|
from certbot.tests import util as test_util
|
|
|
|
API_TOKEN = '00000000-0000-0000-0000-000000000000'
|
|
API_SECRET = 'MDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAw'
|
|
|
|
class AuthenticatorTest(test_util.TempDirTestCase,
|
|
dns_test_common_lexicon.BaseLexiconAuthenticatorTest):
|
|
|
|
def setUp(self):
|
|
super(AuthenticatorTest, self).setUp()
|
|
|
|
from certbot_dns_sakuracloud._internal.dns_sakuracloud import Authenticator
|
|
|
|
path = os.path.join(self.tempdir, 'file.ini')
|
|
dns_test_common.write(
|
|
{"sakuracloud_api_token": API_TOKEN, "sakuracloud_api_secret": API_SECRET},
|
|
path
|
|
)
|
|
|
|
self.config = mock.MagicMock(sakuracloud_credentials=path,
|
|
sakuracloud_propagation_seconds=0) # don't wait during tests
|
|
|
|
self.auth = Authenticator(self.config, "sakuracloud")
|
|
|
|
self.mock_client = mock.MagicMock()
|
|
# _get_sakuracloud_client | pylint: disable=protected-access
|
|
self.auth._get_sakuracloud_client = mock.MagicMock(return_value=self.mock_client)
|
|
|
|
|
|
class SakuraCloudLexiconClientTest(unittest.TestCase,
|
|
dns_test_common_lexicon.BaseLexiconClientTest):
|
|
DOMAIN_NOT_FOUND = HTTPError('404 Client Error: Not Found for url: {0}.'.format(DOMAIN))
|
|
LOGIN_ERROR = HTTPError('401 Client Error: Unauthorized for url: {0}.'.format(DOMAIN))
|
|
|
|
def setUp(self):
|
|
from certbot_dns_sakuracloud._internal.dns_sakuracloud import _SakuraCloudLexiconClient
|
|
|
|
self.client = _SakuraCloudLexiconClient(API_TOKEN, API_SECRET, 0)
|
|
|
|
self.provider_mock = mock.MagicMock()
|
|
self.client.provider = self.provider_mock
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main() # pragma: no cover
|