Files
EdgeAPI/internal/utils/lookup_test.go

38 lines
689 B
Go
Raw Normal View History

2024-05-17 18:27:26 +08:00
// Copyright 2021 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
2022-09-10 16:13:21 +08:00
package utils_test
import (
"github.com/TeaOSLab/EdgeAPI/internal/utils"
2023-06-05 12:36:29 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/dnsconfigs"
2022-09-10 16:13:21 +08:00
"testing"
)
func TestLookupCNAME(t *testing.T) {
t.Log(utils.LookupCNAME("www.yun4s.cn"))
}
func TestLookupNS(t *testing.T) {
2023-06-05 12:36:29 +08:00
t.Log(utils.LookupNS("goedge.cn", nil))
}
func TestLookupNSExtra(t *testing.T) {
t.Log(utils.LookupNS("goedge.cn", []*dnsconfigs.DNSResolver{
{
Host: "192.168.2.2",
},
{
Host: "192.168.2.2",
Port: 58,
},
{
Host: "8.8.8.8",
Port: 53,
},
}))
2022-09-10 16:13:21 +08:00
}
func TestLookupTXT(t *testing.T) {
2023-06-05 12:36:29 +08:00
t.Log(utils.LookupTXT("yanzheng.goedge.cn", nil))
2022-09-10 16:13:21 +08:00
}