1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 18:45:23 +00:00
v2fly/transport/internet/dialer_test.go
2018-09-18 23:09:54 +02:00

26 lines
558 B
Go

package internet_test
import (
"context"
"testing"
"v2ray.com/core/common/net"
"v2ray.com/core/testing/servers/tcp"
. "v2ray.com/core/transport/internet"
. "v2ray.com/ext/assert"
)
func TestDialWithLocalAddr(t *testing.T) {
assert := With(t)
server := &tcp.Server{}
dest, err := server.Start()
assert(err, IsNil)
defer server.Close()
conn, err := DialSystem(context.Background(), net.TCPDestination(net.LocalHostIP, dest.Port))
assert(err, IsNil)
assert(conn.RemoteAddr().String(), Equals, "127.0.0.1:"+dest.Port.String())
conn.Close()
}