|
@@ -7,6 +7,7 @@ import (
|
|
|
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
|
"github.com/sagernet/sing-box/option"
|
|
|
+ "github.com/sagernet/sing-box/transport/vless"
|
|
|
|
|
|
"github.com/spyzhov/ajson"
|
|
|
"github.com/stretchr/testify/require"
|
|
@@ -28,8 +29,9 @@ func TestVLESS(t *testing.T) {
|
|
|
|
|
|
startDockerContainer(t, DockerOptions{
|
|
|
Image: ImageV2RayCore,
|
|
|
- Ports: []uint16{serverPort, testPort},
|
|
|
+ Ports: []uint16{serverPort},
|
|
|
EntryPoint: "v2ray",
|
|
|
+ Cmd: []string{"run"},
|
|
|
Stdin: content,
|
|
|
})
|
|
|
|
|
@@ -58,36 +60,48 @@ func TestVLESS(t *testing.T) {
|
|
|
},
|
|
|
},
|
|
|
})
|
|
|
- testSuit(t, clientPort, testPort)
|
|
|
+ testTCP(t, clientPort, testPort)
|
|
|
}
|
|
|
|
|
|
func TestVLESSXRay(t *testing.T) {
|
|
|
- testVLESSXray(t, "")
|
|
|
+ t.Run("origin", func(t *testing.T) {
|
|
|
+ testVLESSXray(t, "", "")
|
|
|
+ })
|
|
|
+ t.Run("xudp", func(t *testing.T) {
|
|
|
+ testVLESSXray(t, "xudp", "")
|
|
|
+ })
|
|
|
+ t.Run("vision", func(t *testing.T) {
|
|
|
+ testVLESSXray(t, "", vless.FlowVision)
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
-func TestVLESSXUDP(t *testing.T) {
|
|
|
- testVLESSXray(t, "xudp")
|
|
|
-}
|
|
|
+func testVLESSXray(t *testing.T, packetEncoding string, flow string) {
|
|
|
+ _, certPem, keyPem := createSelfSignedCertificate(t, "example.org")
|
|
|
|
|
|
-func testVLESSXray(t *testing.T, packetEncoding string) {
|
|
|
- content, err := os.ReadFile("config/vless-server.json")
|
|
|
+ content, err := os.ReadFile("config/vless-tls-server.json")
|
|
|
require.NoError(t, err)
|
|
|
config, err := ajson.Unmarshal(content)
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
- user := newUUID()
|
|
|
+ userID := newUUID()
|
|
|
inbound := config.MustKey("inbounds").MustIndex(0)
|
|
|
inbound.MustKey("port").SetNumeric(float64(serverPort))
|
|
|
- inbound.MustKey("settings").MustKey("clients").MustIndex(0).MustKey("id").SetString(user.String())
|
|
|
+ user := inbound.MustKey("settings").MustKey("clients").MustIndex(0)
|
|
|
+ user.MustKey("id").SetString(userID.String())
|
|
|
+ user.MustKey("flow").SetString(flow)
|
|
|
|
|
|
content, err = ajson.Marshal(config)
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
startDockerContainer(t, DockerOptions{
|
|
|
Image: ImageXRayCore,
|
|
|
- Ports: []uint16{serverPort, testPort},
|
|
|
+ Ports: []uint16{serverPort},
|
|
|
EntryPoint: "xray",
|
|
|
Stdin: content,
|
|
|
+ Bind: map[string]string{
|
|
|
+ certPem: "/path/to/certificate.crt",
|
|
|
+ keyPem: "/path/to/private.key",
|
|
|
+ },
|
|
|
})
|
|
|
|
|
|
startInstance(t, option.Options{
|
|
@@ -101,17 +115,411 @@ func testVLESSXray(t *testing.T, packetEncoding string) {
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ Type: C.TypeTrojan,
|
|
|
+ Tag: "trojan",
|
|
|
+ TrojanOptions: option.TrojanInboundOptions{
|
|
|
+ ListenOptions: option.ListenOptions{
|
|
|
+ Listen: option.ListenAddress(netip.IPv4Unspecified()),
|
|
|
+ ListenPort: otherPort,
|
|
|
+ },
|
|
|
+ Users: []option.TrojanUser{
|
|
|
+ {
|
|
|
+ Name: "sekai",
|
|
|
+ Password: userID.String(),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ TLS: &option.InboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ KeyPath: keyPem,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
},
|
|
|
Outbounds: []option.Outbound{
|
|
|
+ {
|
|
|
+ Type: C.TypeTrojan,
|
|
|
+ TrojanOptions: option.TrojanOutboundOptions{
|
|
|
+ ServerOptions: option.ServerOptions{
|
|
|
+ Server: "host.docker.internal",
|
|
|
+ ServerPort: otherPort,
|
|
|
+ },
|
|
|
+ Password: userID.String(),
|
|
|
+ TLS: &option.OutboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ },
|
|
|
+ DialerOptions: option.DialerOptions{
|
|
|
+ Detour: "vless",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
{
|
|
|
Type: C.TypeVLESS,
|
|
|
+ Tag: "vless",
|
|
|
VLESSOptions: option.VLESSOutboundOptions{
|
|
|
ServerOptions: option.ServerOptions{
|
|
|
Server: "127.0.0.1",
|
|
|
ServerPort: serverPort,
|
|
|
},
|
|
|
- UUID: user.String(),
|
|
|
+ UUID: userID.String(),
|
|
|
+ Flow: flow,
|
|
|
PacketEncoding: packetEncoding,
|
|
|
+ TLS: &option.OutboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ Type: C.TypeDirect,
|
|
|
+ Tag: "direct",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ Route: &option.RouteOptions{
|
|
|
+ Rules: []option.Rule{
|
|
|
+ {
|
|
|
+ DefaultOptions: option.DefaultRule{
|
|
|
+ Inbound: []string{"trojan"},
|
|
|
+ Outbound: "direct",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ })
|
|
|
+
|
|
|
+ testTCP(t, clientPort, testPort)
|
|
|
+}
|
|
|
+
|
|
|
+func TestVLESSSelf(t *testing.T) {
|
|
|
+ t.Run("origin", func(t *testing.T) {
|
|
|
+ testVLESSSelf(t, "")
|
|
|
+ })
|
|
|
+ t.Run("vision", func(t *testing.T) {
|
|
|
+ testVLESSSelf(t, vless.FlowVision)
|
|
|
+ })
|
|
|
+ t.Run("vision-tls", func(t *testing.T) {
|
|
|
+ testVLESSSelfTLS(t, vless.FlowVision)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+func testVLESSSelf(t *testing.T, flow string) {
|
|
|
+ _, 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{
|
|
|
+ Listen: option.ListenAddress(netip.IPv4Unspecified()),
|
|
|
+ ListenPort: clientPort,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ Type: C.TypeVLESS,
|
|
|
+ VLESSOptions: option.VLESSInboundOptions{
|
|
|
+ ListenOptions: option.ListenOptions{
|
|
|
+ Listen: option.ListenAddress(netip.IPv4Unspecified()),
|
|
|
+ ListenPort: serverPort,
|
|
|
+ },
|
|
|
+ Users: []option.VLESSUser{
|
|
|
+ {
|
|
|
+ Name: "sekai",
|
|
|
+ UUID: userUUID.String(),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ TLS: &option.InboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ KeyPath: keyPem,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ 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: flow,
|
|
|
+ TLS: &option.OutboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ Route: &option.RouteOptions{
|
|
|
+ Rules: []option.Rule{
|
|
|
+ {
|
|
|
+ DefaultOptions: option.DefaultRule{
|
|
|
+ Inbound: []string{"mixed-in"},
|
|
|
+ Outbound: "vless-out",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ })
|
|
|
+ testSuit(t, clientPort, testPort)
|
|
|
+}
|
|
|
+
|
|
|
+func testVLESSSelfTLS(t *testing.T, flow string) {
|
|
|
+ _, 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{
|
|
|
+ Listen: option.ListenAddress(netip.IPv4Unspecified()),
|
|
|
+ ListenPort: clientPort,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ Type: C.TypeVLESS,
|
|
|
+ VLESSOptions: option.VLESSInboundOptions{
|
|
|
+ ListenOptions: option.ListenOptions{
|
|
|
+ Listen: option.ListenAddress(netip.IPv4Unspecified()),
|
|
|
+ ListenPort: serverPort,
|
|
|
+ },
|
|
|
+ Users: []option.VLESSUser{
|
|
|
+ {
|
|
|
+ Name: "sekai",
|
|
|
+ UUID: userUUID.String(),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ TLS: &option.InboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ KeyPath: keyPem,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ Type: C.TypeTrojan,
|
|
|
+ Tag: "trojan",
|
|
|
+ TrojanOptions: option.TrojanInboundOptions{
|
|
|
+ ListenOptions: option.ListenOptions{
|
|
|
+ Listen: option.ListenAddress(netip.IPv4Unspecified()),
|
|
|
+ ListenPort: otherPort,
|
|
|
+ },
|
|
|
+ Users: []option.TrojanUser{
|
|
|
+ {
|
|
|
+ Name: "sekai",
|
|
|
+ Password: userUUID.String(),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ TLS: &option.InboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ KeyPath: keyPem,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ 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(),
|
|
|
+ TLS: &option.OutboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ },
|
|
|
+ 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: flow,
|
|
|
+ TLS: &option.OutboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ Route: &option.RouteOptions{
|
|
|
+ Rules: []option.Rule{
|
|
|
+ {
|
|
|
+ DefaultOptions: option.DefaultRule{
|
|
|
+ Inbound: []string{"mixed-in"},
|
|
|
+ Outbound: "trojan-out",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ })
|
|
|
+ testSuit(t, clientPort, testPort)
|
|
|
+}
|
|
|
+
|
|
|
+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{
|
|
|
+ Listen: option.ListenAddress(netip.IPv4Unspecified()),
|
|
|
+ ListenPort: clientPort,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ Type: C.TypeVLESS,
|
|
|
+ VLESSOptions: option.VLESSInboundOptions{
|
|
|
+ ListenOptions: option.ListenOptions{
|
|
|
+ Listen: option.ListenAddress(netip.IPv4Unspecified()),
|
|
|
+ ListenPort: serverPort,
|
|
|
+ },
|
|
|
+ Users: []option.VLESSUser{
|
|
|
+ {
|
|
|
+ Name: "sekai",
|
|
|
+ UUID: userUUID.String(),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ TLS: &option.InboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "google.com",
|
|
|
+ Reality: &option.InboundRealityOptions{
|
|
|
+ Enabled: true,
|
|
|
+ Handshake: option.InboundRealityHandshakeOptions{
|
|
|
+ ServerOptions: option.ServerOptions{
|
|
|
+ Server: "google.com",
|
|
|
+ ServerPort: 443,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ShortID: []string{"0123456789abcdef"},
|
|
|
+ PrivateKey: "UuMBgl7MXTPx9inmQp2UC7Jcnwc6XYbwDNebonM-FCc",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ Type: C.TypeTrojan,
|
|
|
+ Tag: "trojan",
|
|
|
+ TrojanOptions: option.TrojanInboundOptions{
|
|
|
+ ListenOptions: option.ListenOptions{
|
|
|
+ Listen: option.ListenAddress(netip.IPv4Unspecified()),
|
|
|
+ ListenPort: otherPort,
|
|
|
+ },
|
|
|
+ Users: []option.TrojanUser{
|
|
|
+ {
|
|
|
+ Name: "sekai",
|
|
|
+ Password: userUUID.String(),
|
|
|
+ },
|
|
|
+ },
|
|
|
+ TLS: &option.InboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ KeyPath: keyPem,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ 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(),
|
|
|
+ TLS: &option.OutboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "example.org",
|
|
|
+ CertificatePath: certPem,
|
|
|
+ },
|
|
|
+ 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,
|
|
|
+ TLS: &option.OutboundTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ServerName: "google.com",
|
|
|
+ Reality: &option.OutboundRealityOptions{
|
|
|
+ Enabled: true,
|
|
|
+ ShortID: "0123456789abcdef",
|
|
|
+ PublicKey: "jNXHt1yRo0vDuchQlIP6Z0ZvjT3KtzVI-T4E7RoLJS0",
|
|
|
+ },
|
|
|
+ UTLS: &option.OutboundUTLSOptions{
|
|
|
+ Enabled: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ Route: &option.RouteOptions{
|
|
|
+ Rules: []option.Rule{
|
|
|
+ {
|
|
|
+ DefaultOptions: option.DefaultRule{
|
|
|
+ Inbound: []string{"mixed-in"},
|
|
|
+ Outbound: "trojan-out",
|
|
|
+ },
|
|
|
},
|
|
|
},
|
|
|
},
|