mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
* Fully type certbot-ci module * Fix lint, focus lint * Add trailing comma * Remove unused private function * Type properly for future usages * Update certbot-ci/certbot_integration_tests/utils/acme_server.py Co-authored-by: alexzorin <alex@zor.io> * Cleanup files * Fix import * Fix mypy and lint Co-authored-by: alexzorin <alex@zor.io>
28 lines
1 KiB
Python
28 lines
1 KiB
Python
"""Module executing integration tests against Certbot with the RFC2136 DNS authenticator."""
|
|
from typing import Generator
|
|
|
|
import pytest
|
|
|
|
from certbot_integration_tests.rfc2136_tests.context import IntegrationTestsContext
|
|
|
|
|
|
@pytest.fixture(name="context")
|
|
def test_context(request: pytest.FixtureRequest) -> Generator[IntegrationTestsContext, None, None]:
|
|
# pylint: disable=missing-function-docstring
|
|
# Fixture request is a built-in pytest fixture describing current test request.
|
|
integration_test_context = IntegrationTestsContext(request)
|
|
try:
|
|
yield integration_test_context
|
|
finally:
|
|
integration_test_context.cleanup()
|
|
|
|
|
|
@pytest.mark.parametrize('domain', [('example.com'), ('sub.example.com')])
|
|
def test_get_certificate(domain: str, context: IntegrationTestsContext) -> None:
|
|
context.skip_if_no_bind9_server()
|
|
|
|
with context.rfc2136_credentials() as creds:
|
|
context.certbot_test_rfc2136([
|
|
'certonly', '--dns-rfc2136-credentials', creds,
|
|
'-d', domain, '-d', '*.{}'.format(domain)
|
|
])
|