From b0a33f77dce28d21036739c565cc0037ca605893 Mon Sep 17 00:00:00 2001 From: Colin Vidal Date: Tue, 24 Jun 2025 11:55:42 +0200 Subject: [PATCH] add startup root DNSKEY refresh system test Root trust anchors are automatically updated as described in RFC5011. Add a system test which ensures the root DNSKEYs are always queried by named during startup. Because this test uses real internet DNS root servers, it is enabled only when `CI_ENABLE_LIVE_INTERNET_TESTS` is set. --- bin/tests/system/rfc5011/ns1/named.conf.j2 | 32 ++++++++++++++++++++++ bin/tests/system/rfc5011/tests_rfc5011.py | 32 ++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 bin/tests/system/rfc5011/ns1/named.conf.j2 create mode 100644 bin/tests/system/rfc5011/tests_rfc5011.py diff --git a/bin/tests/system/rfc5011/ns1/named.conf.j2 b/bin/tests/system/rfc5011/ns1/named.conf.j2 new file mode 100644 index 0000000000..2ca6381254 --- /dev/null +++ b/bin/tests/system/rfc5011/ns1/named.conf.j2 @@ -0,0 +1,32 @@ +/* + * Copyright (C) Internet Systems Consortium, Inc. ("ISC") + * + * SPDX-License-Identifier: MPL-2.0 + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, you can obtain one at https://mozilla.org/MPL/2.0/. + * + * See the COPYRIGHT file distributed with this work for additional + * information regarding copyright ownership. + */ + +/* + * ns1 is a resolver + */ + +options { + pid-file "named.pid"; + listen-on port @PORT@ { 10.53.0.1; }; + recursion yes; +}; + +key rndc_key { + secret "1234abcd8765"; + algorithm @DEFAULT_HMAC@; +}; + +controls { + inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; }; +}; + diff --git a/bin/tests/system/rfc5011/tests_rfc5011.py b/bin/tests/system/rfc5011/tests_rfc5011.py new file mode 100644 index 0000000000..283e9c7ba8 --- /dev/null +++ b/bin/tests/system/rfc5011/tests_rfc5011.py @@ -0,0 +1,32 @@ +# Copyright (C) Internet Systems Consortium, Inc. ("ISC") +# +# SPDX-License-Identifier: MPL-2.0 +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, you can obtain one at https://mozilla.org/MPL/2.0/. +# +# See the COPYRIGHT file distributed with this work for additional +# information regarding copyright ownership. + +import pytest +from isctest.mark import live_internet_test + +pytestmark = pytest.mark.extra_artifacts( + [ + "ns1/managed-keys.bind.jnl", + ] +) + + +@live_internet_test +def test_rfc5011_rootdnskeyrefresh(servers): + with servers["ns1"].watch_log_from_start() as watcher: + watcher.wait_for_line( + "managed-keys-zone: Initializing automatic trust anchor management for zone '.'; DNSKEY ID 20326 is now trusted, waiving the normal 30-day waiting period" + ) + + with servers["ns1"].watch_log_from_start() as watcher: + watcher.wait_for_line( + "managed-keys-zone: Initializing automatic trust anchor management for zone '.'; DNSKEY ID 38696 is now trusted, waiving the normal 30-day waiting period" + )