mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.5 KiB
99 lines
2.5 KiB
package scenarios |
|
|
|
import ( |
|
"fmt" |
|
"testing" |
|
"time" |
|
|
|
"github.com/xtls/xray-core/app/dns" |
|
"github.com/xtls/xray-core/app/proxyman" |
|
"github.com/xtls/xray-core/app/router" |
|
"github.com/xtls/xray-core/common" |
|
"github.com/xtls/xray-core/common/net" |
|
"github.com/xtls/xray-core/common/serial" |
|
"github.com/xtls/xray-core/core" |
|
"github.com/xtls/xray-core/proxy/blackhole" |
|
"github.com/xtls/xray-core/proxy/freedom" |
|
"github.com/xtls/xray-core/proxy/socks" |
|
"github.com/xtls/xray-core/testing/servers/tcp" |
|
xproxy "golang.org/x/net/proxy" |
|
) |
|
|
|
func TestResolveIP(t *testing.T) { |
|
tcpServer := tcp.Server{ |
|
MsgProcessor: xor, |
|
} |
|
dest, err := tcpServer.Start() |
|
common.Must(err) |
|
defer tcpServer.Close() |
|
|
|
serverPort := tcp.PickPort() |
|
serverConfig := &core.Config{ |
|
App: []*serial.TypedMessage{ |
|
serial.ToTypedMessage(&dns.Config{ |
|
Hosts: map[string]*net.IPOrDomain{ |
|
"google.com": net.NewIPOrDomain(dest.Address), |
|
}, |
|
}), |
|
serial.ToTypedMessage(&router.Config{ |
|
DomainStrategy: router.Config_IpIfNonMatch, |
|
Rule: []*router.RoutingRule{ |
|
{ |
|
Cidr: []*router.CIDR{ |
|
{ |
|
Ip: []byte{127, 0, 0, 0}, |
|
Prefix: 8, |
|
}, |
|
}, |
|
TargetTag: &router.RoutingRule_Tag{ |
|
Tag: "direct", |
|
}, |
|
}, |
|
}, |
|
}), |
|
}, |
|
Inbound: []*core.InboundHandlerConfig{ |
|
{ |
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{ |
|
PortList: &net.PortList{Range: []*net.PortRange{net.SinglePortRange(serverPort)}}, |
|
Listen: net.NewIPOrDomain(net.LocalHostIP), |
|
}), |
|
ProxySettings: serial.ToTypedMessage(&socks.ServerConfig{ |
|
AuthType: socks.AuthType_NO_AUTH, |
|
Accounts: map[string]string{ |
|
"Test Account": "Test Password", |
|
}, |
|
Address: net.NewIPOrDomain(net.LocalHostIP), |
|
UdpEnabled: false, |
|
}), |
|
}, |
|
}, |
|
Outbound: []*core.OutboundHandlerConfig{ |
|
{ |
|
ProxySettings: serial.ToTypedMessage(&blackhole.Config{}), |
|
}, |
|
{ |
|
Tag: "direct", |
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{ |
|
DomainStrategy: freedom.Config_USE_IP, |
|
}), |
|
}, |
|
}, |
|
} |
|
|
|
servers, err := InitializeServerConfigs(serverConfig) |
|
common.Must(err) |
|
defer CloseAllServers(servers) |
|
|
|
{ |
|
noAuthDialer, err := xproxy.SOCKS5("tcp", net.TCPDestination(net.LocalHostIP, serverPort).NetAddr(), nil, xproxy.Direct) |
|
common.Must(err) |
|
conn, err := noAuthDialer.Dial("tcp", fmt.Sprintf("google.com:%d", dest.Port)) |
|
common.Must(err) |
|
defer conn.Close() |
|
|
|
if err := testTCPConn2(conn, 1024, time.Second*5)(); err != nil { |
|
t.Error(err) |
|
} |
|
} |
|
}
|
|
|