| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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()
- }
|