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

Enable support for SVCB/HTTPS in GCLOUD and HEDNS (#2926)

This commit is contained in:
Tom Limoncelli
2024-05-01 18:20:59 -04:00
committed by GitHub
parent 3a9b413175
commit 7741ef08f9
5 changed files with 97 additions and 52 deletions

View File

@ -1031,6 +1031,7 @@ func makeTests() []*TestGroup {
),
testgroup("HTTPS",
requires(providers.CanUseHTTPS),
tc("Create a HTTPS record", https("@", 1, "test.com.", "port=80")),
tc("Change HTTPS priority", https("@", 2, "test.com.", "port=80")),
tc("Change HTTPS target", https("@", 2, ".", "port=80")),
@ -1040,6 +1041,7 @@ func makeTests() []*TestGroup {
),
testgroup("SVCB",
requires(providers.CanUseSVCB),
tc("Create a HTTPS record", https("@", 1, "test.com.", "port=80")),
tc("Change HTTPS priority", https("@", 2, "test.com.", "port=80")),
tc("Change HTTPS target", https("@", 2, ".", "port=80")),