2023-02-28 04:29:02 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/netip"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
|
|
|
"github.com/sagernet/sing-box/transport/vless"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestVLESSVisionReality(t *testing.T) {
|
|
|
|
_, certPem, keyPem := createSelfSignedCertificate(t, "example.org")
|
|
|
|
|
|
|
|
userUUID := newUUID()
|
|
|
|
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()),
|
2023-02-28 04:29:02 +00:00
|
|
|
ListenPort: clientPort,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: C.TypeVLESS,
|
|
|
|
VLESSOptions: option.VLESSInboundOptions{
|
|
|
|
ListenOptions: option.ListenOptions{
|
2023-03-19 12:46:22 +00:00
|
|
|
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
|
2023-02-28 04:29:02 +00:00
|
|
|
ListenPort: serverPort,
|
|
|
|
},
|
|
|
|
Users: []option.VLESSUser{
|
|
|
|
{
|
|
|
|
Name: "sekai",
|
|
|
|
UUID: userUUID.String(),
|
2023-03-01 16:31:56 +00:00
|
|
|
Flow: vless.FlowVision,
|
2023-02-28 04:29:02 +00:00
|
|
|
},
|
|
|
|
},
|
2023-12-11 10:36:06 +00:00
|
|
|
InboundTLSOptionsContainer: option.InboundTLSOptionsContainer{
|
|
|
|
TLS: &option.InboundTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ServerName: "google.com",
|
|
|
|
Reality: &option.InboundRealityOptions{
|
|
|
|
Enabled: true,
|
|
|
|
Handshake: option.InboundRealityHandshakeOptions{
|
|
|
|
ServerOptions: option.ServerOptions{
|
|
|
|
Server: "google.com",
|
|
|
|
ServerPort: 443,
|
|
|
|
},
|
2023-02-28 04:29:02 +00:00
|
|
|
},
|
2023-12-11 10:36:06 +00:00
|
|
|
ShortID: []string{"0123456789abcdef"},
|
|
|
|
PrivateKey: "UuMBgl7MXTPx9inmQp2UC7Jcnwc6XYbwDNebonM-FCc",
|
2023-02-28 04:29:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: C.TypeTrojan,
|
|
|
|
Tag: "trojan",
|
|
|
|
TrojanOptions: option.TrojanInboundOptions{
|
|
|
|
ListenOptions: option.ListenOptions{
|
2023-03-19 12:46:22 +00:00
|
|
|
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
|
2023-02-28 04:29:02 +00:00
|
|
|
ListenPort: otherPort,
|
|
|
|
},
|
|
|
|
Users: []option.TrojanUser{
|
|
|
|
{
|
|
|
|
Name: "sekai",
|
|
|
|
Password: userUUID.String(),
|
|
|
|
},
|
|
|
|
},
|
2023-12-11 10:36:06 +00:00
|
|
|
InboundTLSOptionsContainer: option.InboundTLSOptionsContainer{
|
|
|
|
TLS: &option.InboundTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ServerName: "example.org",
|
|
|
|
CertificatePath: certPem,
|
|
|
|
KeyPath: keyPem,
|
|
|
|
},
|
2023-02-28 04:29:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Outbounds: []option.Outbound{
|
|
|
|
{
|
|
|
|
Type: C.TypeDirect,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: C.TypeTrojan,
|
|
|
|
Tag: "trojan-out",
|
|
|
|
TrojanOptions: option.TrojanOutboundOptions{
|
|
|
|
ServerOptions: option.ServerOptions{
|
|
|
|
Server: "127.0.0.1",
|
|
|
|
ServerPort: otherPort,
|
|
|
|
},
|
|
|
|
Password: userUUID.String(),
|
2023-12-11 10:36:06 +00:00
|
|
|
OutboundTLSOptionsContainer: option.OutboundTLSOptionsContainer{
|
|
|
|
TLS: &option.OutboundTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ServerName: "example.org",
|
|
|
|
CertificatePath: certPem,
|
|
|
|
},
|
2023-02-28 04:29:02 +00:00
|
|
|
},
|
|
|
|
DialerOptions: option.DialerOptions{
|
|
|
|
Detour: "vless-out",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: C.TypeVLESS,
|
|
|
|
Tag: "vless-out",
|
|
|
|
VLESSOptions: option.VLESSOutboundOptions{
|
|
|
|
ServerOptions: option.ServerOptions{
|
|
|
|
Server: "127.0.0.1",
|
|
|
|
ServerPort: serverPort,
|
|
|
|
},
|
|
|
|
UUID: userUUID.String(),
|
|
|
|
Flow: vless.FlowVision,
|
2023-12-11 10:36:06 +00:00
|
|
|
OutboundTLSOptionsContainer: option.OutboundTLSOptionsContainer{
|
|
|
|
TLS: &option.OutboundTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ServerName: "google.com",
|
|
|
|
Reality: &option.OutboundRealityOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ShortID: "0123456789abcdef",
|
|
|
|
PublicKey: "jNXHt1yRo0vDuchQlIP6Z0ZvjT3KtzVI-T4E7RoLJS0",
|
|
|
|
},
|
|
|
|
UTLS: &option.OutboundUTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
},
|
2023-02-28 04:29:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Route: &option.RouteOptions{
|
|
|
|
Rules: []option.Rule{
|
|
|
|
{
|
|
|
|
DefaultOptions: option.DefaultRule{
|
|
|
|
Inbound: []string{"mixed-in"},
|
|
|
|
Outbound: "trojan-out",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
testSuit(t, clientPort, testPort)
|
|
|
|
}
|
|
|
|
|
2023-04-18 06:59:44 +00:00
|
|
|
func TestVLESSVisionRealityPlain(t *testing.T) {
|
|
|
|
userUUID := newUUID()
|
|
|
|
startInstance(t, option.Options{
|
|
|
|
Inbounds: []option.Inbound{
|
|
|
|
{
|
|
|
|
Type: C.TypeMixed,
|
|
|
|
Tag: "mixed-in",
|
|
|
|
MixedOptions: option.HTTPMixedInboundOptions{
|
|
|
|
ListenOptions: option.ListenOptions{
|
|
|
|
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
|
|
|
|
ListenPort: clientPort,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: C.TypeVLESS,
|
|
|
|
VLESSOptions: option.VLESSInboundOptions{
|
|
|
|
ListenOptions: option.ListenOptions{
|
|
|
|
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
|
|
|
|
ListenPort: serverPort,
|
|
|
|
},
|
|
|
|
Users: []option.VLESSUser{
|
|
|
|
{
|
|
|
|
Name: "sekai",
|
|
|
|
UUID: userUUID.String(),
|
|
|
|
Flow: vless.FlowVision,
|
|
|
|
},
|
|
|
|
},
|
2023-12-11 10:36:06 +00:00
|
|
|
InboundTLSOptionsContainer: option.InboundTLSOptionsContainer{
|
|
|
|
TLS: &option.InboundTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ServerName: "google.com",
|
|
|
|
Reality: &option.InboundRealityOptions{
|
|
|
|
Enabled: true,
|
|
|
|
Handshake: option.InboundRealityHandshakeOptions{
|
|
|
|
ServerOptions: option.ServerOptions{
|
|
|
|
Server: "google.com",
|
|
|
|
ServerPort: 443,
|
|
|
|
},
|
2023-04-18 06:59:44 +00:00
|
|
|
},
|
2023-12-11 10:36:06 +00:00
|
|
|
ShortID: []string{"0123456789abcdef"},
|
|
|
|
PrivateKey: "UuMBgl7MXTPx9inmQp2UC7Jcnwc6XYbwDNebonM-FCc",
|
2023-04-18 06:59:44 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Outbounds: []option.Outbound{
|
|
|
|
{
|
|
|
|
Type: C.TypeDirect,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: C.TypeVLESS,
|
|
|
|
Tag: "vless-out",
|
|
|
|
VLESSOptions: option.VLESSOutboundOptions{
|
|
|
|
ServerOptions: option.ServerOptions{
|
|
|
|
Server: "127.0.0.1",
|
|
|
|
ServerPort: serverPort,
|
|
|
|
},
|
|
|
|
UUID: userUUID.String(),
|
|
|
|
Flow: vless.FlowVision,
|
2023-12-11 10:36:06 +00:00
|
|
|
OutboundTLSOptionsContainer: option.OutboundTLSOptionsContainer{
|
|
|
|
TLS: &option.OutboundTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ServerName: "google.com",
|
|
|
|
Reality: &option.OutboundRealityOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ShortID: "0123456789abcdef",
|
|
|
|
PublicKey: "jNXHt1yRo0vDuchQlIP6Z0ZvjT3KtzVI-T4E7RoLJS0",
|
|
|
|
},
|
|
|
|
UTLS: &option.OutboundUTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
},
|
2023-04-18 06:59:44 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Route: &option.RouteOptions{
|
|
|
|
Rules: []option.Rule{
|
|
|
|
{
|
|
|
|
DefaultOptions: option.DefaultRule{
|
|
|
|
Inbound: []string{"mixed-in"},
|
|
|
|
Outbound: "vless-out",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
testSuit(t, clientPort, testPort)
|
|
|
|
}
|
|
|
|
|
2023-02-28 04:29:02 +00:00
|
|
|
func TestVLESSRealityTransport(t *testing.T) {
|
|
|
|
t.Run("grpc", func(t *testing.T) {
|
|
|
|
testVLESSRealityTransport(t, &option.V2RayTransportOptions{
|
|
|
|
Type: C.V2RayTransportTypeGRPC,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
t.Run("websocket", func(t *testing.T) {
|
|
|
|
testVLESSRealityTransport(t, &option.V2RayTransportOptions{
|
|
|
|
Type: C.V2RayTransportTypeWebsocket,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
t.Run("h2", func(t *testing.T) {
|
|
|
|
testVLESSRealityTransport(t, &option.V2RayTransportOptions{
|
|
|
|
Type: C.V2RayTransportTypeHTTP,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func testVLESSRealityTransport(t *testing.T, transport *option.V2RayTransportOptions) {
|
|
|
|
userUUID := newUUID()
|
|
|
|
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()),
|
2023-02-28 04:29:02 +00:00
|
|
|
ListenPort: clientPort,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: C.TypeVLESS,
|
|
|
|
VLESSOptions: option.VLESSInboundOptions{
|
|
|
|
ListenOptions: option.ListenOptions{
|
2023-03-19 12:46:22 +00:00
|
|
|
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
|
2023-02-28 04:29:02 +00:00
|
|
|
ListenPort: serverPort,
|
|
|
|
},
|
|
|
|
Users: []option.VLESSUser{
|
|
|
|
{
|
|
|
|
Name: "sekai",
|
|
|
|
UUID: userUUID.String(),
|
|
|
|
},
|
|
|
|
},
|
2023-12-11 10:36:06 +00:00
|
|
|
InboundTLSOptionsContainer: option.InboundTLSOptionsContainer{
|
|
|
|
TLS: &option.InboundTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ServerName: "google.com",
|
|
|
|
Reality: &option.InboundRealityOptions{
|
|
|
|
Enabled: true,
|
|
|
|
Handshake: option.InboundRealityHandshakeOptions{
|
|
|
|
ServerOptions: option.ServerOptions{
|
|
|
|
Server: "google.com",
|
|
|
|
ServerPort: 443,
|
|
|
|
},
|
2023-02-28 04:29:02 +00:00
|
|
|
},
|
2023-12-11 10:36:06 +00:00
|
|
|
ShortID: []string{"0123456789abcdef"},
|
|
|
|
PrivateKey: "UuMBgl7MXTPx9inmQp2UC7Jcnwc6XYbwDNebonM-FCc",
|
2023-02-28 04:29:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Transport: transport,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Outbounds: []option.Outbound{
|
|
|
|
{
|
|
|
|
Type: C.TypeDirect,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: C.TypeVLESS,
|
|
|
|
Tag: "vless-out",
|
|
|
|
VLESSOptions: option.VLESSOutboundOptions{
|
|
|
|
ServerOptions: option.ServerOptions{
|
|
|
|
Server: "127.0.0.1",
|
|
|
|
ServerPort: serverPort,
|
|
|
|
},
|
|
|
|
UUID: userUUID.String(),
|
2023-12-11 10:36:06 +00:00
|
|
|
OutboundTLSOptionsContainer: option.OutboundTLSOptionsContainer{
|
|
|
|
TLS: &option.OutboundTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ServerName: "google.com",
|
|
|
|
Reality: &option.OutboundRealityOptions{
|
|
|
|
Enabled: true,
|
|
|
|
ShortID: "0123456789abcdef",
|
|
|
|
PublicKey: "jNXHt1yRo0vDuchQlIP6Z0ZvjT3KtzVI-T4E7RoLJS0",
|
|
|
|
},
|
|
|
|
UTLS: &option.OutboundUTLSOptions{
|
|
|
|
Enabled: true,
|
|
|
|
},
|
2023-02-28 04:29:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Transport: transport,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Route: &option.RouteOptions{
|
|
|
|
Rules: []option.Rule{
|
|
|
|
{
|
|
|
|
DefaultOptions: option.DefaultRule{
|
|
|
|
Inbound: []string{"mixed-in"},
|
2023-04-18 06:59:44 +00:00
|
|
|
Outbound: "vless-out",
|
2023-02-28 04:29:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
testSuit(t, clientPort, testPort)
|
|
|
|
}
|