Files
v2ray_simple/tcp_test.go
e1732a364fed f28f0d0bee 修订代码, 默认loglevel 改为 Log_info.
对一般用户而言,还是需要使用Info等级 来了解一下 一般的 日志情况,等到使用熟练之后,且确认运行没有错误后, 可以自行调为 warning 来提升性能

发现 bubble包 还自己引入了 命令行参数,这十分不可取,所以我们还是直接使用其代码。

将其它包中 的 命令行参数 统一 移动 到 cmd/verysimple 中;tls lazy 特性因为还在 调试阶段,所以 命令行参数 仍然放到 v2ray_simple 包中。
2022-04-26 13:22:18 +08:00

170 lines
3.7 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package v2ray_simple
import (
"crypto/tls"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"testing"
"github.com/e1732a364fed/v2ray_simple/netLayer"
"github.com/e1732a364fed/v2ray_simple/proxy"
"github.com/e1732a364fed/v2ray_simple/utils"
)
func TestTCP_vless(t *testing.T) {
testTCP(t, "vless", 0, "tcp", false)
}
func TestTCP_trojan(t *testing.T) {
testTCP(t, "trojan", 0, "tcp", false)
}
func TestTCP_trojan_mux(t *testing.T) {
testTCP(t, "trojan", 0, "tcp", true)
}
//tcp测试我们直接使用http请求来测试
func testTCP(t *testing.T, protocol string, version int, network string, innermux bool) {
utils.LogLevel = utils.Log_debug
utils.InitLog()
var testClientConfFormatStr = `
[[listen]]
protocol = "http"
host = "127.0.0.1"
port = %s
[[dial]]
protocol = "%s"
uuid = "a684455c-b14f-11ea-bf0d-42010aaa0003"
host = "127.0.0.1"
port = %s
version = %d
insecure = true
network = "%s"
`
if innermux {
testClientConfFormatStr += "use_mux = true"
}
const testServerConfFormatStr = `
[[listen]]
protocol = "%s"
uuid = "a684455c-b14f-11ea-bf0d-42010aaa0003"
host = "127.0.0.1"
port = %s
version = %d
insecure = true
cert = "cert.pem"
key = "cert.key"
network = "%s"
[[dial]]
protocol = "direct"
`
clientListenPort := netLayer.RandPortStr(true, false)
clientDialPort := netLayer.RandPortStr(true, false)
testClientConfStr := fmt.Sprintf(testClientConfFormatStr, clientListenPort, protocol, clientDialPort, version, network)
testServerConfStr := fmt.Sprintf(testServerConfFormatStr, protocol, clientDialPort, version, network)
clientConf, err := proxy.LoadTomlConfStr(testClientConfStr)
if err != nil {
t.Log(err)
t.FailNow()
}
serverConf, err := proxy.LoadTomlConfStr(testServerConfStr)
if err != nil {
t.Log(err)
t.FailNow()
}
//先建立服务端监听和客户端监听最后自定义dns查询 并导向 客户端的 dokodemo监听端口
//http in
clientEndInServer, err := proxy.NewServer(clientConf.Listen[0])
if err != nil {
t.Log("can not create clientEndInServer: ", err)
t.FailNow()
}
// vless out
clientEndOutClient, err := proxy.NewClient(clientConf.Dial[0])
if err != nil {
t.Log("can not create clientEndOutClient: ", err)
t.FailNow()
}
//vless in
serverEndInServer, err := proxy.NewServer(serverConf.Listen[0])
if err != nil {
t.Log("can not create serverEndInServer: ", err)
t.FailNow()
}
// direct out
serverEndOutClient, err := proxy.NewClient(serverConf.Dial[0])
if err != nil {
t.Log("can not create serverEndOutClient: ", err)
t.FailNow()
}
ListenSer(clientEndInServer, clientEndOutClient, nil)
ListenSer(serverEndInServer, serverEndOutClient, nil)
proxyurl := "http://127.0.0.1:" + clientListenPort
url_proxy, e2 := url.Parse(proxyurl)
if e2 != nil {
fmt.Println("proxyurl given was wrong,", proxyurl, e2)
return
}
client := &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyURL(url_proxy),
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
},
}
tryGetHttp(t, client, "http://captive.apple.com")
tryGetHttp(t, client, "http://www.msftconnecttest.com/connecttest.txt")
//联通性测试 可参考 https://imldy.cn/posts/99d42f85/
// 用这种 captive 测试 不容易遇到 网站无法在 某些地区 如 github action 所在的地区 访问 或者卡顿等情况.
}
func tryGetHttp(t *testing.T, client *http.Client, path string) {
t.Log("start dial", path)
resp, err := client.Get(path)
if err != nil {
t.Log("get http failed", err)
t.FailNow()
}
t.Log("Got response, start read")
bs, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Log("get http failed read", err)
t.FailNow()
}
resp.Body.Close()
t.Log("got len", len(bs))
if len(bs) > 5 {
t.Log("first 5:", string(bs[:5]))
} else {
t.Log("all:", bs)
}
}