mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-02 18:14:01 +00:00
132 lines
3.4 KiB
Go
132 lines
3.4 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/Dreamacro/clash/adapter/outbound"
|
|
C "github.com/Dreamacro/clash/constant"
|
|
"github.com/docker/docker/api/types/container"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// TODO: fix udp test
|
|
func TestClash_VlessTLS(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("vless-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, "vless-tls")
|
|
if err != nil {
|
|
assert.FailNow(t, err.Error())
|
|
}
|
|
defer cleanContainer(id)
|
|
|
|
proxy, err := outbound.NewVless(outbound.VlessOption{
|
|
Name: "vless",
|
|
Server: localIP.String(),
|
|
Port: 10002,
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
TLS: true,
|
|
SkipCertVerify: true,
|
|
ServerName: "example.org",
|
|
UDP: true,
|
|
})
|
|
if err != nil {
|
|
assert.FailNow(t, err.Error())
|
|
}
|
|
|
|
time.Sleep(waitTime)
|
|
testSuit(t, proxy)
|
|
}
|
|
|
|
// TODO: fix udp test
|
|
func TestClash_VlessXTLS(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("vless-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, "vless-xtls")
|
|
if err != nil {
|
|
assert.FailNow(t, err.Error())
|
|
}
|
|
defer cleanContainer(id)
|
|
|
|
proxy, err := outbound.NewVless(outbound.VlessOption{
|
|
Name: "vless",
|
|
Server: localIP.String(),
|
|
Port: 10002,
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
TLS: true,
|
|
SkipCertVerify: true,
|
|
ServerName: "example.org",
|
|
UDP: true,
|
|
Flow: "xtls-rprx-direct",
|
|
FlowShow: true,
|
|
})
|
|
if err != nil {
|
|
assert.FailNow(t, err.Error())
|
|
}
|
|
|
|
time.Sleep(waitTime)
|
|
testSuit(t, proxy)
|
|
}
|
|
|
|
// TODO: fix udp test
|
|
func TestClash_VlessWS(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("vless-ws.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, "vless-ws")
|
|
if err != nil {
|
|
assert.FailNow(t, err.Error())
|
|
}
|
|
defer cleanContainer(id)
|
|
|
|
proxy, err := outbound.NewVless(outbound.VlessOption{
|
|
Name: "vless",
|
|
Server: localIP.String(),
|
|
Port: 10002,
|
|
UUID: "b831381d-6324-4d53-ad4f-8cda48b30811",
|
|
TLS: true,
|
|
SkipCertVerify: true,
|
|
ServerName: "example.org",
|
|
Network: "ws",
|
|
UDP: true,
|
|
})
|
|
if err != nil {
|
|
assert.FailNow(t, err.Error())
|
|
}
|
|
|
|
time.Sleep(waitTime)
|
|
testSuit(t, proxy)
|
|
}
|