2021-05-17 12:33:00 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2021-12-04 06:34:01 +00:00
|
|
|
"github.com/Dreamacro/Clash.Meta/adapter/outbound"
|
|
|
|
C "github.com/Dreamacro/Clash.Meta/constant"
|
2021-05-17 12:33:00 +00:00
|
|
|
|
|
|
|
"github.com/docker/docker/api/types/container"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestClash_Vmess(t *testing.T) {
|
|
|
|
configPath := C.Path.Resolve("vmess.json")
|
|
|
|
|
|
|
|
cfg := &container.Config{
|
|
|
|
Image: ImageVmess,
|
|
|
|
ExposedPorts: defaultExposedPorts,
|
|
|
|
}
|
|
|
|
hostCfg := &container.HostConfig{
|
|
|
|
PortBindings: defaultPortBindings,
|
|
|
|
Binds: []string{fmt.Sprintf("%s:/etc/v2ray/config.json", configPath)},
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := startContainer(cfg, hostCfg, "vmess")
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Cleanup(func() {
|
|
|
|
cleanContainer(id)
|
|
|
|
})
|
|
|
|
|
|
|
|
proxy, err := outbound.NewVmess(outbound.VmessOption{
|
2022-02-27 10:00:04 +00:00
|
|
|
Name: "vmess",
|
|
|
|
Server: localIP.String(),
|
|
|
|
Port: 10002,
|
|
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
|
|
Cipher: "auto",
|
|
|
|
UDP: true,
|
2021-05-17 12:33:00 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
testSuit(t, proxy)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClash_VmessTLS(t *testing.T) {
|
|
|
|
cfg := &container.Config{
|
|
|
|
Image: ImageVmess,
|
|
|
|
ExposedPorts: defaultExposedPorts,
|
|
|
|
}
|
|
|
|
hostCfg := &container.HostConfig{
|
|
|
|
PortBindings: defaultPortBindings,
|
|
|
|
Binds: []string{
|
|
|
|
fmt.Sprintf("%s:/etc/v2ray/config.json", C.Path.Resolve("vmess-tls.json")),
|
|
|
|
fmt.Sprintf("%s:/etc/ssl/v2ray/fullchain.pem", C.Path.Resolve("example.org.pem")),
|
|
|
|
fmt.Sprintf("%s:/etc/ssl/v2ray/privkey.pem", C.Path.Resolve("example.org-key.pem")),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := startContainer(cfg, hostCfg, "vmess-tls")
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
defer cleanContainer(id)
|
|
|
|
|
|
|
|
proxy, err := outbound.NewVmess(outbound.VmessOption{
|
|
|
|
Name: "vmess",
|
|
|
|
Server: localIP.String(),
|
|
|
|
Port: 10002,
|
|
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
|
|
Cipher: "auto",
|
|
|
|
TLS: true,
|
|
|
|
SkipCertVerify: true,
|
|
|
|
ServerName: "example.org",
|
|
|
|
UDP: true,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
testSuit(t, proxy)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClash_VmessHTTP2(t *testing.T) {
|
|
|
|
cfg := &container.Config{
|
|
|
|
Image: ImageVmess,
|
|
|
|
ExposedPorts: defaultExposedPorts,
|
|
|
|
}
|
|
|
|
hostCfg := &container.HostConfig{
|
|
|
|
PortBindings: defaultPortBindings,
|
|
|
|
Binds: []string{
|
|
|
|
fmt.Sprintf("%s:/etc/v2ray/config.json", C.Path.Resolve("vmess-http2.json")),
|
|
|
|
fmt.Sprintf("%s:/etc/ssl/v2ray/fullchain.pem", C.Path.Resolve("example.org.pem")),
|
|
|
|
fmt.Sprintf("%s:/etc/ssl/v2ray/privkey.pem", C.Path.Resolve("example.org-key.pem")),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := startContainer(cfg, hostCfg, "vmess-http2")
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
defer cleanContainer(id)
|
|
|
|
|
|
|
|
proxy, err := outbound.NewVmess(outbound.VmessOption{
|
|
|
|
Name: "vmess",
|
|
|
|
Server: localIP.String(),
|
|
|
|
Port: 10002,
|
|
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
|
|
Cipher: "auto",
|
|
|
|
Network: "h2",
|
|
|
|
TLS: true,
|
|
|
|
SkipCertVerify: true,
|
|
|
|
ServerName: "example.org",
|
|
|
|
UDP: true,
|
|
|
|
HTTP2Opts: outbound.HTTP2Options{
|
|
|
|
Host: []string{"example.org"},
|
|
|
|
Path: "/test",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
testSuit(t, proxy)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClash_VmessHTTP(t *testing.T) {
|
|
|
|
cfg := &container.Config{
|
|
|
|
Image: ImageVmess,
|
|
|
|
ExposedPorts: defaultExposedPorts,
|
|
|
|
}
|
|
|
|
hostCfg := &container.HostConfig{
|
|
|
|
PortBindings: defaultPortBindings,
|
|
|
|
Binds: []string{
|
|
|
|
fmt.Sprintf("%s:/etc/v2ray/config.json", C.Path.Resolve("vmess-http.json")),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := startContainer(cfg, hostCfg, "vmess-http")
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
defer cleanContainer(id)
|
|
|
|
|
|
|
|
proxy, err := outbound.NewVmess(outbound.VmessOption{
|
|
|
|
Name: "vmess",
|
|
|
|
Server: localIP.String(),
|
|
|
|
Port: 10002,
|
|
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
|
|
Cipher: "auto",
|
|
|
|
Network: "http",
|
|
|
|
UDP: true,
|
|
|
|
HTTPOpts: outbound.HTTPOptions{
|
|
|
|
Method: "GET",
|
|
|
|
Path: []string{"/"},
|
|
|
|
Headers: map[string][]string{
|
|
|
|
"Host": {"www.amazon.com"},
|
|
|
|
"User-Agent": {
|
|
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 Edg/84.0.522.49",
|
|
|
|
},
|
|
|
|
"Accept-Encoding": {
|
|
|
|
"gzip, deflate",
|
|
|
|
},
|
|
|
|
"Connection": {
|
|
|
|
"keep-alive",
|
|
|
|
},
|
|
|
|
"Pragma": {"no-cache"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
testSuit(t, proxy)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClash_VmessWebsocket(t *testing.T) {
|
|
|
|
cfg := &container.Config{
|
|
|
|
Image: ImageVmess,
|
|
|
|
ExposedPorts: defaultExposedPorts,
|
|
|
|
}
|
|
|
|
hostCfg := &container.HostConfig{
|
|
|
|
PortBindings: defaultPortBindings,
|
|
|
|
Binds: []string{
|
|
|
|
fmt.Sprintf("%s:/etc/v2ray/config.json", C.Path.Resolve("vmess-ws.json")),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := startContainer(cfg, hostCfg, "vmess-ws")
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
defer cleanContainer(id)
|
|
|
|
|
|
|
|
proxy, err := outbound.NewVmess(outbound.VmessOption{
|
|
|
|
Name: "vmess",
|
|
|
|
Server: localIP.String(),
|
|
|
|
Port: 10002,
|
|
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
|
|
Cipher: "auto",
|
|
|
|
Network: "ws",
|
|
|
|
UDP: true,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
testSuit(t, proxy)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClash_VmessWebsocketTLS(t *testing.T) {
|
|
|
|
cfg := &container.Config{
|
|
|
|
Image: ImageVmess,
|
|
|
|
ExposedPorts: defaultExposedPorts,
|
|
|
|
}
|
|
|
|
hostCfg := &container.HostConfig{
|
|
|
|
PortBindings: defaultPortBindings,
|
|
|
|
Binds: []string{
|
|
|
|
fmt.Sprintf("%s:/etc/v2ray/config.json", C.Path.Resolve("vmess-ws-tls.json")),
|
|
|
|
fmt.Sprintf("%s:/etc/ssl/v2ray/fullchain.pem", C.Path.Resolve("example.org.pem")),
|
|
|
|
fmt.Sprintf("%s:/etc/ssl/v2ray/privkey.pem", C.Path.Resolve("example.org-key.pem")),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := startContainer(cfg, hostCfg, "vmess-ws")
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
defer cleanContainer(id)
|
|
|
|
|
|
|
|
proxy, err := outbound.NewVmess(outbound.VmessOption{
|
|
|
|
Name: "vmess",
|
|
|
|
Server: localIP.String(),
|
|
|
|
Port: 10002,
|
|
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
|
|
Cipher: "auto",
|
|
|
|
Network: "ws",
|
|
|
|
TLS: true,
|
|
|
|
SkipCertVerify: true,
|
|
|
|
UDP: true,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
testSuit(t, proxy)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClash_VmessGrpc(t *testing.T) {
|
|
|
|
cfg := &container.Config{
|
2021-10-16 12:35:06 +00:00
|
|
|
Image: ImageVmess,
|
2021-05-17 12:33:00 +00:00
|
|
|
ExposedPorts: defaultExposedPorts,
|
|
|
|
}
|
|
|
|
hostCfg := &container.HostConfig{
|
|
|
|
PortBindings: defaultPortBindings,
|
|
|
|
Binds: []string{
|
2021-10-16 12:35:06 +00:00
|
|
|
fmt.Sprintf("%s:/etc/v2ray/config.json", C.Path.Resolve("vmess-grpc.json")),
|
2021-05-17 12:33:00 +00:00
|
|
|
fmt.Sprintf("%s:/etc/ssl/v2ray/fullchain.pem", C.Path.Resolve("example.org.pem")),
|
|
|
|
fmt.Sprintf("%s:/etc/ssl/v2ray/privkey.pem", C.Path.Resolve("example.org-key.pem")),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := startContainer(cfg, hostCfg, "vmess-grpc")
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
defer cleanContainer(id)
|
|
|
|
|
|
|
|
proxy, err := outbound.NewVmess(outbound.VmessOption{
|
|
|
|
Name: "vmess",
|
|
|
|
Server: localIP.String(),
|
|
|
|
Port: 10002,
|
|
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
|
|
Cipher: "auto",
|
|
|
|
Network: "grpc",
|
|
|
|
TLS: true,
|
|
|
|
SkipCertVerify: true,
|
|
|
|
UDP: true,
|
|
|
|
ServerName: "example.org",
|
|
|
|
GrpcOpts: outbound.GrpcOptions{
|
2021-08-19 14:11:56 +00:00
|
|
|
GrpcServiceName: "example!",
|
2021-05-17 12:33:00 +00:00
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
testSuit(t, proxy)
|
|
|
|
}
|
2021-07-18 09:23:22 +00:00
|
|
|
|
2021-08-21 17:17:29 +00:00
|
|
|
func TestClash_VmessWebsocket0RTT(t *testing.T) {
|
|
|
|
cfg := &container.Config{
|
2021-08-22 08:16:45 +00:00
|
|
|
Image: ImageVmess,
|
2021-08-21 17:17:29 +00:00
|
|
|
ExposedPorts: defaultExposedPorts,
|
|
|
|
}
|
|
|
|
hostCfg := &container.HostConfig{
|
|
|
|
PortBindings: defaultPortBindings,
|
|
|
|
Binds: []string{
|
2021-08-22 08:16:45 +00:00
|
|
|
fmt.Sprintf("%s:/etc/v2ray/config.json", C.Path.Resolve("vmess-ws-0rtt.json")),
|
2021-08-21 17:17:29 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := startContainer(cfg, hostCfg, "vmess-ws-0rtt")
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
defer cleanContainer(id)
|
|
|
|
|
|
|
|
proxy, err := outbound.NewVmess(outbound.VmessOption{
|
|
|
|
Name: "vmess",
|
|
|
|
Server: localIP.String(),
|
|
|
|
Port: 10002,
|
|
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
|
|
Cipher: "auto",
|
|
|
|
Network: "ws",
|
|
|
|
UDP: true,
|
|
|
|
ServerName: "example.org",
|
|
|
|
WSOpts: outbound.WSOptions{
|
|
|
|
MaxEarlyData: 2048,
|
|
|
|
EarlyDataHeaderName: "Sec-WebSocket-Protocol",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
testSuit(t, proxy)
|
|
|
|
}
|
|
|
|
|
2021-08-22 08:16:45 +00:00
|
|
|
func TestClash_VmessWebsocketXray0RTT(t *testing.T) {
|
|
|
|
cfg := &container.Config{
|
|
|
|
Image: ImageXray,
|
|
|
|
ExposedPorts: defaultExposedPorts,
|
|
|
|
}
|
|
|
|
hostCfg := &container.HostConfig{
|
|
|
|
PortBindings: defaultPortBindings,
|
|
|
|
Binds: []string{
|
|
|
|
fmt.Sprintf("%s:/etc/xray/config.json", C.Path.Resolve("vmess-ws-0rtt.json")),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := startContainer(cfg, hostCfg, "vmess-xray-ws-0rtt")
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
defer cleanContainer(id)
|
|
|
|
|
|
|
|
proxy, err := outbound.NewVmess(outbound.VmessOption{
|
|
|
|
Name: "vmess",
|
|
|
|
Server: localIP.String(),
|
|
|
|
Port: 10002,
|
|
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
|
|
Cipher: "auto",
|
|
|
|
Network: "ws",
|
|
|
|
UDP: true,
|
|
|
|
ServerName: "example.org",
|
|
|
|
WSOpts: outbound.WSOptions{
|
|
|
|
Path: "/?ed=2048",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(t, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
testSuit(t, proxy)
|
|
|
|
}
|
|
|
|
|
2021-07-18 09:23:22 +00:00
|
|
|
func Benchmark_Vmess(b *testing.B) {
|
2021-07-18 09:37:23 +00:00
|
|
|
configPath := C.Path.Resolve("vmess-aead.json")
|
2021-07-18 09:23:22 +00:00
|
|
|
|
|
|
|
cfg := &container.Config{
|
|
|
|
Image: ImageVmess,
|
|
|
|
ExposedPorts: defaultExposedPorts,
|
|
|
|
}
|
|
|
|
hostCfg := &container.HostConfig{
|
|
|
|
PortBindings: defaultPortBindings,
|
|
|
|
Binds: []string{fmt.Sprintf("%s:/etc/v2ray/config.json", configPath)},
|
|
|
|
}
|
|
|
|
|
2021-07-18 09:37:23 +00:00
|
|
|
id, err := startContainer(cfg, hostCfg, "vmess-aead")
|
2021-07-18 09:23:22 +00:00
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(b, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
b.Cleanup(func() {
|
|
|
|
cleanContainer(id)
|
|
|
|
})
|
|
|
|
|
|
|
|
proxy, err := outbound.NewVmess(outbound.VmessOption{
|
|
|
|
Name: "vmess",
|
|
|
|
Server: localIP.String(),
|
|
|
|
Port: 10002,
|
|
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
|
|
Cipher: "auto",
|
2021-07-18 09:37:23 +00:00
|
|
|
AlterID: 0,
|
2021-07-18 09:23:22 +00:00
|
|
|
UDP: true,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
assert.FailNow(b, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
benchmarkProxy(b, proxy)
|
|
|
|
}
|