mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-31 09:49:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package core_test
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/golang/protobuf/proto"
 | |
| 
 | |
| 	. "github.com/v2fly/v2ray-core/v4"
 | |
| 	"github.com/v2fly/v2ray-core/v4/app/dispatcher"
 | |
| 	"github.com/v2fly/v2ray-core/v4/app/proxyman"
 | |
| 	"github.com/v2fly/v2ray-core/v4/common"
 | |
| 	"github.com/v2fly/v2ray-core/v4/common/net"
 | |
| 	"github.com/v2fly/v2ray-core/v4/common/protocol"
 | |
| 	"github.com/v2fly/v2ray-core/v4/common/serial"
 | |
| 	"github.com/v2fly/v2ray-core/v4/common/uuid"
 | |
| 	"github.com/v2fly/v2ray-core/v4/features/dns"
 | |
| 	"github.com/v2fly/v2ray-core/v4/features/dns/localdns"
 | |
| 	_ "github.com/v2fly/v2ray-core/v4/main/distro/all"
 | |
| 	"github.com/v2fly/v2ray-core/v4/proxy/dokodemo"
 | |
| 	"github.com/v2fly/v2ray-core/v4/proxy/vmess"
 | |
| 	"github.com/v2fly/v2ray-core/v4/proxy/vmess/outbound"
 | |
| 	"github.com/v2fly/v2ray-core/v4/testing/servers/tcp"
 | |
| )
 | |
| 
 | |
| func TestV2RayDependency(t *testing.T) {
 | |
| 	instance := new(Instance)
 | |
| 
 | |
| 	wait := make(chan bool, 1)
 | |
| 	instance.RequireFeatures(func(d dns.Client) {
 | |
| 		if d == nil {
 | |
| 			t.Error("expected dns client fulfilled, but actually nil")
 | |
| 		}
 | |
| 		wait <- true
 | |
| 	})
 | |
| 	instance.AddFeature(localdns.New())
 | |
| 	<-wait
 | |
| }
 | |
| 
 | |
| func TestV2RayClose(t *testing.T) {
 | |
| 	port := tcp.PickPort()
 | |
| 
 | |
| 	userID := uuid.New()
 | |
| 	config := &Config{
 | |
| 		App: []*serial.TypedMessage{
 | |
| 			serial.ToTypedMessage(&dispatcher.Config{}),
 | |
| 			serial.ToTypedMessage(&proxyman.InboundConfig{}),
 | |
| 			serial.ToTypedMessage(&proxyman.OutboundConfig{}),
 | |
| 		},
 | |
| 		Inbound: []*InboundHandlerConfig{
 | |
| 			{
 | |
| 				ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
 | |
| 					PortRange: net.SinglePortRange(port),
 | |
| 					Listen:    net.NewIPOrDomain(net.LocalHostIP),
 | |
| 				}),
 | |
| 				ProxySettings: serial.ToTypedMessage(&dokodemo.Config{
 | |
| 					Address: net.NewIPOrDomain(net.LocalHostIP),
 | |
| 					Port:    uint32(0),
 | |
| 					NetworkList: &net.NetworkList{
 | |
| 						Network: []net.Network{net.Network_TCP, net.Network_UDP},
 | |
| 					},
 | |
| 				}),
 | |
| 			},
 | |
| 		},
 | |
| 		Outbound: []*OutboundHandlerConfig{
 | |
| 			{
 | |
| 				ProxySettings: serial.ToTypedMessage(&outbound.Config{
 | |
| 					Receiver: []*protocol.ServerEndpoint{
 | |
| 						{
 | |
| 							Address: net.NewIPOrDomain(net.LocalHostIP),
 | |
| 							Port:    uint32(0),
 | |
| 							User: []*protocol.User{
 | |
| 								{
 | |
| 									Account: serial.ToTypedMessage(&vmess.Account{
 | |
| 										Id: userID.String(),
 | |
| 									}),
 | |
| 								},
 | |
| 							},
 | |
| 						},
 | |
| 					},
 | |
| 				}),
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	cfgBytes, err := proto.Marshal(config)
 | |
| 	common.Must(err)
 | |
| 
 | |
| 	server, err := StartInstance("protobuf", cfgBytes)
 | |
| 	common.Must(err)
 | |
| 	server.Close()
 | |
| }
 | 
