123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package main
- import (
- "net/netip"
- "os"
- "testing"
- C "github.com/sagernet/sing-box/constant"
- "github.com/sagernet/sing-box/option"
- "github.com/spyzhov/ajson"
- "github.com/stretchr/testify/require"
- )
- func TestVLESS(t *testing.T) {
- content, err := os.ReadFile("config/vless-server.json")
- require.NoError(t, err)
- config, err := ajson.Unmarshal(content)
- require.NoError(t, err)
- user := 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())
- content, err = ajson.Marshal(config)
- require.NoError(t, err)
- startDockerContainer(t, DockerOptions{
- Image: ImageV2RayCore,
- Ports: []uint16{serverPort, testPort},
- EntryPoint: "v2ray",
- Stdin: content,
- })
- startInstance(t, option.Options{
- Inbounds: []option.Inbound{
- {
- Type: C.TypeMixed,
- MixedOptions: option.HTTPMixedInboundOptions{
- ListenOptions: option.ListenOptions{
- Listen: option.ListenAddress(netip.IPv4Unspecified()),
- ListenPort: clientPort,
- },
- },
- },
- },
- Outbounds: []option.Outbound{
- {
- Type: C.TypeVLESS,
- VLESSOptions: option.VLESSOutboundOptions{
- ServerOptions: option.ServerOptions{
- Server: "127.0.0.1",
- ServerPort: serverPort,
- },
- UUID: user.String(),
- },
- },
- },
- })
- testSuit(t, clientPort, testPort)
- }
- func TestVLESSXRay(t *testing.T) {
- testVLESSXray(t, "")
- }
- func TestVLESSXUDP(t *testing.T) {
- testVLESSXray(t, "xudp")
- }
- func testVLESSXray(t *testing.T, packetEncoding string) {
- content, err := os.ReadFile("config/vless-server.json")
- require.NoError(t, err)
- config, err := ajson.Unmarshal(content)
- require.NoError(t, err)
- user := 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())
- content, err = ajson.Marshal(config)
- require.NoError(t, err)
- startDockerContainer(t, DockerOptions{
- Image: ImageXRayCore,
- Ports: []uint16{serverPort, testPort},
- EntryPoint: "xray",
- Stdin: content,
- })
- startInstance(t, option.Options{
- Inbounds: []option.Inbound{
- {
- Type: C.TypeMixed,
- MixedOptions: option.HTTPMixedInboundOptions{
- ListenOptions: option.ListenOptions{
- Listen: option.ListenAddress(netip.IPv4Unspecified()),
- ListenPort: clientPort,
- },
- },
- },
- },
- Outbounds: []option.Outbound{
- {
- Type: C.TypeVLESS,
- VLESSOptions: option.VLESSOutboundOptions{
- ServerOptions: option.ServerOptions{
- Server: "127.0.0.1",
- ServerPort: serverPort,
- },
- UUID: user.String(),
- PacketEncoding: packetEncoding,
- },
- },
- },
- })
- testSuit(t, clientPort, testPort)
- }
|