sing-box/test/tfo_test.go

84 lines
1.9 KiB
Go
Raw Normal View History

2022-10-05 21:02:44 +08:00
package main
import (
"net/netip"
"testing"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/option"
"github.com/sagernet/sing-shadowsocks/shadowaead"
2024-11-07 21:44:04 +08:00
"github.com/sagernet/sing/common"
"github.com/sagernet/sing/common/json/badoption"
2022-10-05 21:02:44 +08:00
)
func TestTCPSlowOpen(t *testing.T) {
method := shadowaead.List[0]
password := mkBase64(t, 16)
startInstance(t, option.Options{
2024-11-07 21:44:04 +08:00
LegacyInbounds: []option.LegacyInbound{
2022-10-05 21:02:44 +08:00
{
Type: C.TypeMixed,
Tag: "mixed-in",
MixedOptions: option.HTTPMixedInboundOptions{
ListenOptions: option.ListenOptions{
2024-11-07 21:44:04 +08:00
Listen: common.Ptr(badoption.Addr(netip.IPv4Unspecified())),
2022-10-05 21:02:44 +08:00
ListenPort: clientPort,
},
},
},
{
Type: C.TypeShadowsocks,
ShadowsocksOptions: option.ShadowsocksInboundOptions{
ListenOptions: option.ListenOptions{
2024-11-07 21:44:04 +08:00
Listen: common.Ptr(badoption.Addr(netip.IPv4Unspecified())),
2022-10-05 21:02:44 +08:00
ListenPort: serverPort,
TCPFastOpen: true,
},
Method: method,
Password: password,
},
},
},
2024-11-02 00:39:02 +08:00
LegacyOutbounds: []option.LegacyOutbound{
2022-10-05 21:02:44 +08:00
{
Type: C.TypeDirect,
},
{
Type: C.TypeShadowsocks,
Tag: "ss-out",
ShadowsocksOptions: option.ShadowsocksOutboundOptions{
ServerOptions: option.ServerOptions{
Server: "127.0.0.1",
ServerPort: serverPort,
},
DialerOptions: option.DialerOptions{
TCPFastOpen: true,
},
Method: method,
Password: password,
},
},
},
Route: &option.RouteOptions{
Rules: []option.Rule{
{
2024-10-21 23:38:34 +08:00
Type: C.RuleTypeDefault,
2022-10-05 21:02:44 +08:00
DefaultOptions: option.DefaultRule{
2024-10-21 23:38:34 +08:00
RawDefaultRule: option.RawDefaultRule{
Inbound: []string{"mixed-in"},
},
RuleAction: option.RuleAction{
Action: C.RuleActionTypeRoute,
RouteOptions: option.RouteActionOptions{
Outbound: "ss-out",
},
},
2022-10-05 21:02:44 +08:00
},
},
},
},
})
testSuit(t, clientPort, testPort)
}