Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'certbot-dns-ovh/certbot_dns_ovh')
-rw-r--r--certbot-dns-ovh/certbot_dns_ovh/_internal/__init__.py1
-rw-r--r--certbot-dns-ovh/certbot_dns_ovh/_internal/dns_ovh.py (renamed from certbot-dns-ovh/certbot_dns_ovh/dns_ovh.py)2
-rw-r--r--certbot-dns-ovh/certbot_dns_ovh/dns_ovh_test.py62
3 files changed, 2 insertions, 63 deletions
diff --git a/certbot-dns-ovh/certbot_dns_ovh/_internal/__init__.py b/certbot-dns-ovh/certbot_dns_ovh/_internal/__init__.py
new file mode 100644
index 000000000..133694b9e
--- /dev/null
+++ b/certbot-dns-ovh/certbot_dns_ovh/_internal/__init__.py
@@ -0,0 +1 @@
+"""Internal implementation of `~certbot_dns_ovh.dns_ovh` plugin."""
diff --git a/certbot-dns-ovh/certbot_dns_ovh/dns_ovh.py b/certbot-dns-ovh/certbot_dns_ovh/_internal/dns_ovh.py
index 84771b0a8..a495983f2 100644
--- a/certbot-dns-ovh/certbot_dns_ovh/dns_ovh.py
+++ b/certbot-dns-ovh/certbot_dns_ovh/_internal/dns_ovh.py
@@ -1,8 +1,8 @@
"""DNS Authenticator for OVH DNS."""
import logging
-import zope.interface
from lexicon.providers import ovh
+import zope.interface
from certbot import errors
from certbot import interfaces
diff --git a/certbot-dns-ovh/certbot_dns_ovh/dns_ovh_test.py b/certbot-dns-ovh/certbot_dns_ovh/dns_ovh_test.py
deleted file mode 100644
index f2a10485d..000000000
--- a/certbot-dns-ovh/certbot_dns_ovh/dns_ovh_test.py
+++ /dev/null
@@ -1,62 +0,0 @@
-"""Tests for certbot_dns_ovh.dns_ovh."""
-
-import os
-import unittest
-
-import mock
-from requests.exceptions import HTTPError
-
-from certbot.plugins import dns_test_common
-from certbot.plugins import dns_test_common_lexicon
-from certbot.tests import util as test_util
-
-ENDPOINT = 'ovh-eu'
-APPLICATION_KEY = 'foo'
-APPLICATION_SECRET = 'bar'
-CONSUMER_KEY = 'spam'
-
-
-class AuthenticatorTest(test_util.TempDirTestCase,
- dns_test_common_lexicon.BaseLexiconAuthenticatorTest):
-
- def setUp(self):
- super(AuthenticatorTest, self).setUp()
-
- from certbot_dns_ovh.dns_ovh import Authenticator
-
- path = os.path.join(self.tempdir, 'file.ini')
- credentials = {
- "ovh_endpoint": ENDPOINT,
- "ovh_application_key": APPLICATION_KEY,
- "ovh_application_secret": APPLICATION_SECRET,
- "ovh_consumer_key": CONSUMER_KEY,
- }
- dns_test_common.write(credentials, path)
-
- self.config = mock.MagicMock(ovh_credentials=path,
- ovh_propagation_seconds=0) # don't wait during tests
-
- self.auth = Authenticator(self.config, "ovh")
-
- self.mock_client = mock.MagicMock()
- # _get_ovh_client | pylint: disable=protected-access
- self.auth._get_ovh_client = mock.MagicMock(return_value=self.mock_client)
-
-
-class OVHLexiconClientTest(unittest.TestCase, dns_test_common_lexicon.BaseLexiconClientTest):
- DOMAIN_NOT_FOUND = Exception('Domain example.com not found')
- LOGIN_ERROR = HTTPError('403 Client Error: Forbidden for url: https://eu.api.ovh.com/1.0/...')
-
- def setUp(self):
- from certbot_dns_ovh.dns_ovh import _OVHLexiconClient
-
- self.client = _OVHLexiconClient(
- ENDPOINT, APPLICATION_KEY, APPLICATION_SECRET, CONSUMER_KEY, 0
- )
-
- self.provider_mock = mock.MagicMock()
- self.client.provider = self.provider_mock
-
-
-if __name__ == "__main__":
- unittest.main() # pragma: no cover