mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-01 08:48:54 -04:00
29 lines
781 B
Go
29 lines
781 B
Go
package dialer_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
"github.com/v2ray/v2ray-core/testing/servers/tcp"
|
|
. "github.com/v2ray/v2ray-core/transport/dialer"
|
|
)
|
|
|
|
func TestDialDomain(t *testing.T) {
|
|
v2testing.Current(t)
|
|
|
|
server := &tcp.Server{
|
|
Port: v2nettesting.PickPort(),
|
|
}
|
|
dest, err := server.Start()
|
|
assert.Error(err).IsNil()
|
|
defer server.Close()
|
|
|
|
conn, err := Dial(v2net.TCPDestination(v2net.DomainAddress("local.v2ray.com"), dest.Port()))
|
|
assert.Error(err).IsNil()
|
|
assert.StringLiteral(conn.RemoteAddr().String()).Equals("127.0.0.1:" + dest.Port().String())
|
|
conn.Close()
|
|
}
|