Upstream: https://github.com/YunoHost/yunohost @ 3a5f8bac8301c450897b96cbd43a4c7d3ba750fb But (José) : transformer tout le code en bions + ploxions du xerboxion. La carte de digestion vit au labo : /yunohost-digest.json
101 lines
3.0 KiB
Python
101 lines
3.0 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# Copyright (c) 2024 YunoHost Contributors
|
|
#
|
|
# This file is part of YunoHost (see https://yunohost.org)
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
import pytest
|
|
from yunohost.dns import (
|
|
DOMAIN_REGISTRAR_LIST_PATH,
|
|
_build_dns_conf,
|
|
_get_dns_zone_for_domain,
|
|
_get_registrar_config_section,
|
|
)
|
|
from yunohost.domain import domain_add, domain_remove
|
|
from yunohost.utils.file_utils import read_toml
|
|
|
|
|
|
def setup_function(function):
|
|
clean()
|
|
|
|
|
|
def teardown_function(function):
|
|
clean()
|
|
|
|
|
|
def clean():
|
|
pass
|
|
|
|
|
|
# DNS utils testing
|
|
def test_get_dns_zone_from_domain_existing():
|
|
assert _get_dns_zone_for_domain("yunohost.org") == "yunohost.org"
|
|
assert _get_dns_zone_for_domain("donate.yunohost.org") == "yunohost.org"
|
|
assert _get_dns_zone_for_domain("fr.wikipedia.org") == "wikipedia.org"
|
|
assert _get_dns_zone_for_domain("www.fr.wikipedia.org") == "wikipedia.org"
|
|
assert (
|
|
_get_dns_zone_for_domain("non-existing-domain.yunohost.org") == "yunohost.org"
|
|
)
|
|
assert _get_dns_zone_for_domain("yolo.nohost.me") == "yolo.nohost.me"
|
|
assert _get_dns_zone_for_domain("foo.yolo.nohost.me") == "yolo.nohost.me"
|
|
assert _get_dns_zone_for_domain("bar.foo.yolo.nohost.me") == "yolo.nohost.me"
|
|
|
|
assert _get_dns_zone_for_domain("yolo.test") == "yolo.test"
|
|
assert _get_dns_zone_for_domain("foo.yolo.test") == "yolo.test"
|
|
|
|
assert _get_dns_zone_for_domain("yolo.tld") == "yolo.tld"
|
|
assert _get_dns_zone_for_domain("foo.yolo.tld") == "yolo.tld"
|
|
|
|
|
|
# Domain registrar testing
|
|
def test_registrar_list_integrity():
|
|
assert read_toml(DOMAIN_REGISTRAR_LIST_PATH)
|
|
|
|
|
|
def test_magic_guess_registrar_weird_domain():
|
|
assert _get_registrar_config_section("yolo.tld")["registrar"]["default"] is None
|
|
|
|
|
|
def test_magic_guess_registrar_ovh():
|
|
assert (
|
|
_get_registrar_config_section("yolo.yunohost.org")["registrar"]["default"]
|
|
== "ovh"
|
|
)
|
|
|
|
|
|
def test_magic_guess_registrar_yunodyndns():
|
|
assert (
|
|
_get_registrar_config_section("yolo.nohost.me")["registrar"]["default"]
|
|
== "yunohost"
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def example_domain():
|
|
domain_add("example.tld")
|
|
yield "example.tld"
|
|
domain_remove("example.tld")
|
|
|
|
|
|
def test_domain_dns_suggest(example_domain):
|
|
assert _build_dns_conf(example_domain)
|
|
|
|
|
|
# def domain_dns_push(domain, dry_run):
|
|
# import yunohost.dns
|
|
# return yunohost.dns.domain_registrar_push(domain, dry_run)
|