mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-12 20:31:17 +08:00
201 lines
5.1 KiB
Go
201 lines
5.1 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/docker/docker/api/types/container"
|
|
"github.com/metacubex/mihomo/adapter/outbound"
|
|
C "github.com/metacubex/mihomo/constant"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestMihomo_Trojan(t *testing.T) {
|
|
cfg := &container.Config{
|
|
Image: ImageTrojan,
|
|
ExposedPorts: defaultExposedPorts,
|
|
}
|
|
hostCfg := &container.HostConfig{
|
|
PortBindings: defaultPortBindings,
|
|
Binds: []string{
|
|
fmt.Sprintf("%s:/config/config.json", C.Path.Resolve("trojan.json")),
|
|
fmt.Sprintf("%s:/path/to/certificate.crt", C.Path.Resolve("example.org.pem")),
|
|
fmt.Sprintf("%s:/path/to/private.key", C.Path.Resolve("example.org-key.pem")),
|
|
},
|
|
}
|
|
|
|
id, err := startContainer(cfg, hostCfg, "trojan")
|
|
require.NoError(t, err)
|
|
|
|
t.Cleanup(func() {
|
|
cleanContainer(id)
|
|
})
|
|
|
|
proxy, err := outbound.NewTrojan(outbound.TrojanOption{
|
|
Name: "trojan",
|
|
Server: localIP.String(),
|
|
Port: 10002,
|
|
Password: "password",
|
|
SNI: "example.org",
|
|
SkipCertVerify: true,
|
|
UDP: true,
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
time.Sleep(waitTime)
|
|
testSuit(t, proxy)
|
|
}
|
|
|
|
func TestMihomo_TrojanGrpc(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("trojan-grpc.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, "trojan-grpc")
|
|
require.NoError(t, err)
|
|
t.Cleanup(func() {
|
|
cleanContainer(id)
|
|
})
|
|
|
|
proxy, err := outbound.NewTrojan(outbound.TrojanOption{
|
|
Name: "trojan",
|
|
Server: localIP.String(),
|
|
Port: 10002,
|
|
Password: "example",
|
|
SNI: "example.org",
|
|
SkipCertVerify: true,
|
|
UDP: true,
|
|
Network: "grpc",
|
|
GrpcOpts: outbound.GrpcOptions{
|
|
GrpcServiceName: "example",
|
|
},
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
time.Sleep(waitTime)
|
|
testSuit(t, proxy)
|
|
}
|
|
|
|
func TestMihomo_TrojanWebsocket(t *testing.T) {
|
|
cfg := &container.Config{
|
|
Image: ImageTrojanGo,
|
|
ExposedPorts: defaultExposedPorts,
|
|
}
|
|
hostCfg := &container.HostConfig{
|
|
PortBindings: defaultPortBindings,
|
|
Binds: []string{
|
|
fmt.Sprintf("%s:/etc/trojan-go/config.json", C.Path.Resolve("trojan-ws.json")),
|
|
fmt.Sprintf("%s:/fullchain.pem", C.Path.Resolve("example.org.pem")),
|
|
fmt.Sprintf("%s:/privkey.pem", C.Path.Resolve("example.org-key.pem")),
|
|
},
|
|
}
|
|
|
|
id, err := startContainer(cfg, hostCfg, "trojan-ws")
|
|
require.NoError(t, err)
|
|
t.Cleanup(func() {
|
|
cleanContainer(id)
|
|
})
|
|
|
|
proxy, err := outbound.NewTrojan(outbound.TrojanOption{
|
|
Name: "trojan",
|
|
Server: localIP.String(),
|
|
Port: 10002,
|
|
Password: "example",
|
|
SNI: "example.org",
|
|
SkipCertVerify: true,
|
|
UDP: true,
|
|
Network: "ws",
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
time.Sleep(waitTime)
|
|
testSuit(t, proxy)
|
|
}
|
|
|
|
func TestMihomo_TrojanXTLS(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("trojan-xtls.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, "trojan-xtls")
|
|
if err != nil {
|
|
require.NoError(t, err)
|
|
}
|
|
defer cleanContainer(id)
|
|
|
|
proxy, err := outbound.NewTrojan(outbound.TrojanOption{
|
|
Name: "trojan",
|
|
Server: localIP.String(),
|
|
Port: 10002,
|
|
Password: "example",
|
|
SNI: "example.org",
|
|
SkipCertVerify: true,
|
|
UDP: true,
|
|
Network: "tcp",
|
|
Flow: "xtls-rprx-direct",
|
|
FlowShow: true,
|
|
})
|
|
if err != nil {
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
time.Sleep(waitTime)
|
|
testSuit(t, proxy)
|
|
}
|
|
|
|
func Benchmark_Trojan(b *testing.B) {
|
|
cfg := &container.Config{
|
|
Image: ImageTrojan,
|
|
ExposedPorts: defaultExposedPorts,
|
|
}
|
|
hostCfg := &container.HostConfig{
|
|
PortBindings: defaultPortBindings,
|
|
Binds: []string{
|
|
fmt.Sprintf("%s:/config/config.json", C.Path.Resolve("trojan.json")),
|
|
fmt.Sprintf("%s:/path/to/certificate.crt", C.Path.Resolve("example.org.pem")),
|
|
fmt.Sprintf("%s:/path/to/private.key", C.Path.Resolve("example.org-key.pem")),
|
|
},
|
|
}
|
|
|
|
id, err := startContainer(cfg, hostCfg, "trojan-bench")
|
|
require.NoError(b, err)
|
|
|
|
b.Cleanup(func() {
|
|
cleanContainer(id)
|
|
})
|
|
|
|
proxy, err := outbound.NewTrojan(outbound.TrojanOption{
|
|
Name: "trojan",
|
|
Server: localIP.String(),
|
|
Port: 10002,
|
|
Password: "password",
|
|
SNI: "example.org",
|
|
SkipCertVerify: true,
|
|
UDP: true,
|
|
})
|
|
require.NoError(b, err)
|
|
|
|
require.True(b, TCPing(net.JoinHostPort(localIP.String(), "10002")))
|
|
benchmarkProxy(b, proxy)
|
|
}
|