sing-box/test/direct_test.go

74 lines
1.6 KiB
Go
Raw Normal View History

2022-08-23 13:07:35 +00:00
package main
import (
"net/netip"
"testing"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/option"
2024-11-18 10:59:19 +00:00
"github.com/sagernet/sing/common"
"github.com/sagernet/sing/common/json/badoption"
2022-08-23 13:07:35 +00:00
)
2023-07-11 06:03:55 +00:00
// Since this is a feature one-off added by outsiders, I won't address these anymore.
func _TestProxyProtocol(t *testing.T) {
2022-08-23 13:07:35 +00:00
startInstance(t, option.Options{
2024-11-18 10:59:19 +00:00
Inbounds: []option.Inbound{
2022-08-23 13:07:35 +00:00
{
Type: C.TypeMixed,
Tag: "mixed-in",
2024-11-18 10:59:19 +00:00
Options: &option.HTTPMixedInboundOptions{
2022-08-23 13:07:35 +00:00
ListenOptions: option.ListenOptions{
2024-11-18 10:59:19 +00:00
Listen: common.Ptr(badoption.Addr(netip.IPv4Unspecified())),
2022-08-23 13:07:35 +00:00
ListenPort: clientPort,
},
},
},
{
Type: C.TypeDirect,
2024-11-18 10:59:19 +00:00
Options: &option.DirectInboundOptions{
2022-08-23 13:07:35 +00:00
ListenOptions: option.ListenOptions{
2024-11-18 10:59:19 +00:00
Listen: common.Ptr(badoption.Addr(netip.IPv4Unspecified())),
2022-08-23 13:07:35 +00:00
ListenPort: serverPort,
ProxyProtocol: true,
},
},
},
},
2024-11-18 10:59:19 +00:00
Outbounds: []option.Outbound{
2022-08-23 13:07:35 +00:00
{
Type: C.TypeDirect,
},
{
Type: C.TypeDirect,
2023-07-11 06:03:55 +00:00
Tag: "proxy-out",
2024-11-18 10:59:19 +00:00
Options: &option.DirectOutboundOptions{
2022-08-23 13:07:35 +00:00
OverrideAddress: "127.0.0.1",
OverridePort: serverPort,
ProxyProtocol: 2,
},
},
},
Route: &option.RouteOptions{
Rules: []option.Rule{
{
2024-10-21 15:38:34 +00:00
Type: C.RuleTypeDefault,
2022-08-23 13:07:35 +00:00
DefaultOptions: option.DefaultRule{
2024-10-21 15:38:34 +00:00
RawDefaultRule: option.RawDefaultRule{
Inbound: []string{"mixed-in"},
},
RuleAction: option.RuleAction{
Action: C.RuleActionTypeRoute,
RouteOptions: option.RouteActionOptions{
Outbound: "proxy-out",
},
},
2022-08-23 13:07:35 +00:00
},
},
},
},
})
testSuit(t, clientPort, testPort)
}