sing-box/test/mux_test.go

173 lines
3.8 KiB
Go
Raw Normal View History

2022-07-29 16:29:22 +00:00
package main
import (
"net/netip"
"testing"
2022-08-03 13:51:34 +00:00
"github.com/sagernet/sing-box/common/mux"
2022-07-29 16:29:22 +00:00
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/option"
"github.com/sagernet/sing-shadowsocks/shadowaead_2022"
2022-08-04 02:38:20 +00:00
2023-04-09 07:37:06 +00:00
"github.com/gofrs/uuid/v5"
2022-07-29 16:29:22 +00:00
)
2022-08-04 02:38:20 +00:00
var muxProtocols = []mux.Protocol{
mux.ProtocolYAMux,
mux.ProtocolSMux,
}
2022-09-23 05:14:31 +00:00
func TestVMessSMux(t *testing.T) {
2023-04-20 03:16:22 +00:00
testVMessMux(t, option.MultiplexOptions{
Enabled: true,
Protocol: mux.ProtocolSMux.String(),
})
2022-08-03 13:51:34 +00:00
}
2022-09-23 05:14:31 +00:00
func TestShadowsocksMux(t *testing.T) {
2022-08-04 02:38:20 +00:00
for _, protocol := range muxProtocols {
t.Run(protocol.String(), func(t *testing.T) {
2023-04-20 03:16:22 +00:00
testShadowsocksMux(t, option.MultiplexOptions{
Enabled: true,
Protocol: protocol.String(),
})
2022-08-04 02:38:20 +00:00
})
}
}
2023-04-20 03:16:22 +00:00
func TestShadowsockH2Mux(t *testing.T) {
testShadowsocksMux(t, option.MultiplexOptions{
Enabled: true,
Protocol: mux.ProtocolH2Mux.String(),
Padding: true,
})
}
func TestShadowsockSMuxPadding(t *testing.T) {
testShadowsocksMux(t, option.MultiplexOptions{
Enabled: true,
Protocol: mux.ProtocolSMux.String(),
Padding: true,
})
}
func testShadowsocksMux(t *testing.T, options option.MultiplexOptions) {
2022-07-29 16:29:22 +00:00
method := shadowaead_2022.List[0]
password := mkBase64(t, 16)
startInstance(t, option.Options{
Inbounds: []option.Inbound{
{
Type: C.TypeMixed,
Tag: "mixed-in",
MixedOptions: option.HTTPMixedInboundOptions{
ListenOptions: option.ListenOptions{
2023-03-19 12:46:22 +00:00
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
2022-07-29 16:29:22 +00:00
ListenPort: clientPort,
},
},
},
{
Type: C.TypeShadowsocks,
ShadowsocksOptions: option.ShadowsocksInboundOptions{
ListenOptions: option.ListenOptions{
2023-03-19 12:46:22 +00:00
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
2022-07-29 16:29:22 +00:00
ListenPort: serverPort,
},
Method: method,
Password: password,
},
},
},
Outbounds: []option.Outbound{
{
Type: C.TypeDirect,
},
{
Type: C.TypeShadowsocks,
Tag: "ss-out",
ShadowsocksOptions: option.ShadowsocksOutboundOptions{
ServerOptions: option.ServerOptions{
Server: "127.0.0.1",
ServerPort: serverPort,
},
2023-04-20 03:16:22 +00:00
Method: method,
Password: password,
MultiplexOptions: &options,
2022-07-29 16:29:22 +00:00
},
},
},
Route: &option.RouteOptions{
Rules: []option.Rule{
{
DefaultOptions: option.DefaultRule{
Inbound: []string{"mixed-in"},
Outbound: "ss-out",
},
},
},
},
})
testSuit(t, clientPort, testPort)
}
2022-08-04 02:38:20 +00:00
2023-04-20 03:16:22 +00:00
func testVMessMux(t *testing.T, options option.MultiplexOptions) {
2022-08-04 02:38:20 +00:00
user, _ := uuid.NewV4()
startInstance(t, option.Options{
Inbounds: []option.Inbound{
{
Type: C.TypeMixed,
Tag: "mixed-in",
MixedOptions: option.HTTPMixedInboundOptions{
ListenOptions: option.ListenOptions{
2023-03-19 12:46:22 +00:00
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
2022-08-04 02:38:20 +00:00
ListenPort: clientPort,
},
},
},
{
Type: C.TypeVMess,
VMessOptions: option.VMessInboundOptions{
ListenOptions: option.ListenOptions{
2023-03-19 12:46:22 +00:00
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
2022-08-04 02:38:20 +00:00
ListenPort: serverPort,
},
Users: []option.VMessUser{
{
UUID: user.String(),
},
},
},
},
},
Outbounds: []option.Outbound{
{
Type: C.TypeDirect,
},
{
Type: C.TypeVMess,
Tag: "vmess-out",
VMessOptions: option.VMessOutboundOptions{
ServerOptions: option.ServerOptions{
Server: "127.0.0.1",
ServerPort: serverPort,
},
2023-04-20 03:16:22 +00:00
Security: "auto",
UUID: user.String(),
Multiplex: &options,
2022-08-04 02:38:20 +00:00
},
},
},
Route: &option.RouteOptions{
Rules: []option.Rule{
{
DefaultOptions: option.DefaultRule{
Inbound: []string{"mixed-in"},
Outbound: "vmess-out",
},
},
},
},
})
testSuit(t, clientPort, testPort)
}