diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-31 15:49:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 15:49:28 +0200 |
commit | c6a8522c4c20078bb33157fc803373bf3532a02b (patch) | |
tree | 875182c134f6b525db33a29a506face0ca44b707 /smoketest | |
parent | 173deaa76ebaea2048e5f342013af6844979151f (diff) | |
parent | a4f632d97bbb2e633bb2461688cbf3bcbb0d9e17 (diff) | |
download | vyos-1x-c6a8522c4c20078bb33157fc803373bf3532a02b.tar.gz vyos-1x-c6a8522c4c20078bb33157fc803373bf3532a02b.zip |
Merge pull request #3568 from vyos/mergify/bp/sagitta/pr-3557
dns: T6422: allow multiple redundant NS records (backport #3557)
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_service_dns_forwarding.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_service_dns_forwarding.py b/smoketest/scripts/cli/test_service_dns_forwarding.py index 079c584ba..4db1d7495 100755 --- a/smoketest/scripts/cli/test_service_dns_forwarding.py +++ b/smoketest/scripts/cli/test_service_dns_forwarding.py @@ -291,5 +291,15 @@ class TestServicePowerDNS(VyOSUnitTestSHIM.TestCase): tmp = get_config_value('edns-subnet-allow-list') self.assertEqual(tmp, ','.join(options)) + def test_multiple_ns_records(self): + test_zone = 'example.com' + self.cli_set(base_path + ['authoritative-domain', test_zone, 'records', 'ns', 'test', 'target', f'ns1.{test_zone}']) + self.cli_set(base_path + ['authoritative-domain', test_zone, 'records', 'ns', 'test', 'target', f'ns2.{test_zone}']) + self.cli_commit() + zone_config = read_file(f'{PDNS_REC_RUN_DIR}/zone.{test_zone}.conf') + self.assertRegex(zone_config, fr'test\s+\d+\s+NS\s+ns1\.{test_zone}\.') + self.assertRegex(zone_config, fr'test\s+\d+\s+NS\s+ns2\.{test_zone}\.') + + if __name__ == '__main__': unittest.main(verbosity=2) |