1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

BUGFIX: CAA records may include quoted spaces #1374 (#1377)

This commit is contained in:
Tom Limoncelli
2022-01-25 09:57:20 -05:00
committed by GitHub
parent 263c6b7290
commit b73d37908c
4 changed files with 49 additions and 4 deletions

View File

@@ -1085,6 +1085,11 @@ func makeTests(t *testing.T) []*TestGroup {
// Test support of ";" as a value
tc("CAA many records", caa("@", "issuewild", 0, ";")),
),
testgroup("Issue 1374",
requires(providers.CanUseCAA), not("DIGITALOCEAN"),
// Test support of ";" as a value
tc("CAA many records", caa("@", "issue", 0, "letsencrypt.org; validationmethods=dns-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/1234")),
),
testgroup("NAPTR",
requires(providers.CanUseNAPTR),