1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-15 09:44:37 -04:00
v2fly/infra/conf/v4/dns_proxy_test.go

36 lines
797 B
Go
Raw Normal View History

package v4_test
2019-02-12 16:34:43 -05:00
import (
"testing"
"github.com/v2fly/v2ray-core/v5/common/net"
"github.com/v2fly/v2ray-core/v5/infra/conf/cfgcommon"
"github.com/v2fly/v2ray-core/v5/infra/conf/cfgcommon/testassist"
v4 "github.com/v2fly/v2ray-core/v5/infra/conf/v4"
"github.com/v2fly/v2ray-core/v5/proxy/dns"
2019-02-12 16:34:43 -05:00
)
func TestDnsProxyConfig(t *testing.T) {
2021-06-19 08:04:50 -04:00
creator := func() cfgcommon.Buildable {
return new(v4.DNSOutboundConfig)
2019-02-12 16:34:43 -05:00
}
2021-06-19 08:28:20 -04:00
testassist.RunMultiTestCase(t, []testassist.TestCase{
2019-02-12 16:34:43 -05:00
{
Input: `{
"address": "8.8.8.8",
"port": 53,
"network": "tcp"
}`,
2021-06-19 08:28:20 -04:00
Parser: testassist.LoadJSON(creator),
2019-02-12 16:34:43 -05:00
Output: &dns.Config{
Server: &net.Endpoint{
Network: net.Network_TCP,
Address: net.NewIPOrDomain(net.IPAddress([]byte{8, 8, 8, 8})),
Port: 53,
},
},
},
})
}