mirror of
https://github.com/coredns/coredns.git
synced 2026-08-20 23:08:28 -04:00
core/dnsserver: normalize server block zones (#8320)
This commit is contained in:
@@ -143,6 +143,19 @@ func TestInspectServerBlocks(t *testing.T) {
|
||||
"dns://example.org.:53": {Zone: "example.org.", Port: "53", Transport: "dns"},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "uppercase dns",
|
||||
serverBlocks: []caddyfile.ServerBlock{
|
||||
{Keys: []string{"EXAMPLE.ORG"}},
|
||||
},
|
||||
expectedServerBlocks: []caddyfile.ServerBlock{
|
||||
{Keys: []string{"dns://example.org.:53"}},
|
||||
},
|
||||
expectedConfigsLen: 1,
|
||||
expectedZoneAddrs: map[string]zoneAddr{
|
||||
"dns://example.org.:53": {Zone: "example.org.", Port: "53", Transport: "dns"},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "dns with port",
|
||||
serverBlocks: []caddyfile.ServerBlock{
|
||||
|
||||
Reference in New Issue
Block a user