mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-31 09:49:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			237 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			237 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package scenarios
 | |
| 
 | |
| import (
 | |
| 	"net"
 | |
| 	"testing"
 | |
| 
 | |
| 	"v2ray.com/core"
 | |
| 	"v2ray.com/core/app/log"
 | |
| 	"v2ray.com/core/app/proxyman"
 | |
| 	v2net "v2ray.com/core/common/net"
 | |
| 	"v2ray.com/core/common/protocol"
 | |
| 	"v2ray.com/core/common/serial"
 | |
| 	"v2ray.com/core/common/uuid"
 | |
| 	"v2ray.com/core/proxy/dokodemo"
 | |
| 	"v2ray.com/core/proxy/freedom"
 | |
| 	"v2ray.com/core/proxy/vmess"
 | |
| 	"v2ray.com/core/proxy/vmess/inbound"
 | |
| 	"v2ray.com/core/proxy/vmess/outbound"
 | |
| 	"v2ray.com/core/testing/assert"
 | |
| 	"v2ray.com/core/testing/servers/tcp"
 | |
| 	"v2ray.com/core/testing/servers/udp"
 | |
| )
 | |
| 
 | |
| func TestDokodemoTCP(t *testing.T) {
 | |
| 	assert := assert.On(t)
 | |
| 
 | |
| 	tcpServer := tcp.Server{
 | |
| 		MsgProcessor: xor,
 | |
| 	}
 | |
| 	dest, err := tcpServer.Start()
 | |
| 	assert.Error(err).IsNil()
 | |
| 	defer tcpServer.Close()
 | |
| 
 | |
| 	userID := protocol.NewID(uuid.New())
 | |
| 	serverPort := pickPort()
 | |
| 	serverConfig := &core.Config{
 | |
| 		Inbound: []*proxyman.InboundHandlerConfig{
 | |
| 			{
 | |
| 				ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
 | |
| 					PortRange: v2net.SinglePortRange(serverPort),
 | |
| 					Listen:    v2net.NewIPOrDomain(v2net.LocalHostIP),
 | |
| 				}),
 | |
| 				ProxySettings: serial.ToTypedMessage(&inbound.Config{
 | |
| 					User: []*protocol.User{
 | |
| 						{
 | |
| 							Account: serial.ToTypedMessage(&vmess.Account{
 | |
| 								Id: userID.String(),
 | |
| 							}),
 | |
| 						},
 | |
| 					},
 | |
| 				}),
 | |
| 			},
 | |
| 		},
 | |
| 		Outbound: []*proxyman.OutboundHandlerConfig{
 | |
| 			{
 | |
| 				ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
 | |
| 			},
 | |
| 		},
 | |
| 		App: []*serial.TypedMessage{
 | |
| 			serial.ToTypedMessage(&log.Config{
 | |
| 				ErrorLogLevel: log.LogLevel_Debug,
 | |
| 				ErrorLogType:  log.LogType_Console,
 | |
| 			}),
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	clientPort := uint32(pickPort())
 | |
| 	clientPortRange := uint32(5)
 | |
| 	clientConfig := &core.Config{
 | |
| 		Inbound: []*proxyman.InboundHandlerConfig{
 | |
| 			{
 | |
| 				ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
 | |
| 					PortRange: &v2net.PortRange{From: clientPort, To: clientPort + clientPortRange},
 | |
| 					Listen:    v2net.NewIPOrDomain(v2net.LocalHostIP),
 | |
| 				}),
 | |
| 				ProxySettings: serial.ToTypedMessage(&dokodemo.Config{
 | |
| 					Address: v2net.NewIPOrDomain(dest.Address),
 | |
| 					Port:    uint32(dest.Port),
 | |
| 					NetworkList: &v2net.NetworkList{
 | |
| 						Network: []v2net.Network{v2net.Network_TCP},
 | |
| 					},
 | |
| 				}),
 | |
| 			},
 | |
| 		},
 | |
| 		Outbound: []*proxyman.OutboundHandlerConfig{
 | |
| 			{
 | |
| 				ProxySettings: serial.ToTypedMessage(&outbound.Config{
 | |
| 					Receiver: []*protocol.ServerEndpoint{
 | |
| 						{
 | |
| 							Address: v2net.NewIPOrDomain(v2net.LocalHostIP),
 | |
| 							Port:    uint32(serverPort),
 | |
| 							User: []*protocol.User{
 | |
| 								{
 | |
| 									Account: serial.ToTypedMessage(&vmess.Account{
 | |
| 										Id: userID.String(),
 | |
| 									}),
 | |
| 								},
 | |
| 							},
 | |
| 						},
 | |
| 					},
 | |
| 				}),
 | |
| 			},
 | |
| 		},
 | |
| 		App: []*serial.TypedMessage{
 | |
| 			serial.ToTypedMessage(&log.Config{
 | |
| 				ErrorLogLevel: log.LogLevel_Debug,
 | |
| 				ErrorLogType:  log.LogType_Console,
 | |
| 			}),
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	servers, err := InitializeServerConfigs(serverConfig, clientConfig)
 | |
| 	assert.Error(err).IsNil()
 | |
| 
 | |
| 	for port := clientPort; port <= clientPort+clientPortRange; port++ {
 | |
| 		conn, err := net.DialTCP("tcp", nil, &net.TCPAddr{
 | |
| 			IP:   []byte{127, 0, 0, 1},
 | |
| 			Port: int(port),
 | |
| 		})
 | |
| 		assert.Error(err).IsNil()
 | |
| 
 | |
| 		payload := "dokodemo request."
 | |
| 		nBytes, err := conn.Write([]byte(payload))
 | |
| 		assert.Error(err).IsNil()
 | |
| 		assert.Int(nBytes).Equals(len(payload))
 | |
| 
 | |
| 		response := make([]byte, 1024)
 | |
| 		nBytes, err = conn.Read(response)
 | |
| 		assert.Error(err).IsNil()
 | |
| 		assert.Bytes(response[:nBytes]).Equals(xor([]byte(payload)))
 | |
| 		assert.Error(conn.Close()).IsNil()
 | |
| 	}
 | |
| 
 | |
| 	CloseAllServers(servers)
 | |
| }
 | |
| 
 | |
| func TestDokodemoUDP(t *testing.T) {
 | |
| 	assert := assert.On(t)
 | |
| 
 | |
| 	udpServer := udp.Server{
 | |
| 		MsgProcessor: xor,
 | |
| 	}
 | |
| 	dest, err := udpServer.Start()
 | |
| 	assert.Error(err).IsNil()
 | |
| 	defer udpServer.Close()
 | |
| 
 | |
| 	userID := protocol.NewID(uuid.New())
 | |
| 	serverPort := pickPort()
 | |
| 	serverConfig := &core.Config{
 | |
| 		Inbound: []*proxyman.InboundHandlerConfig{
 | |
| 			{
 | |
| 				ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
 | |
| 					PortRange: v2net.SinglePortRange(serverPort),
 | |
| 					Listen:    v2net.NewIPOrDomain(v2net.LocalHostIP),
 | |
| 				}),
 | |
| 				ProxySettings: serial.ToTypedMessage(&inbound.Config{
 | |
| 					User: []*protocol.User{
 | |
| 						{
 | |
| 							Account: serial.ToTypedMessage(&vmess.Account{
 | |
| 								Id: userID.String(),
 | |
| 							}),
 | |
| 						},
 | |
| 					},
 | |
| 				}),
 | |
| 			},
 | |
| 		},
 | |
| 		Outbound: []*proxyman.OutboundHandlerConfig{
 | |
| 			{
 | |
| 				ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	clientPort := uint32(pickPort())
 | |
| 	clientPortRange := uint32(5)
 | |
| 	clientConfig := &core.Config{
 | |
| 		Inbound: []*proxyman.InboundHandlerConfig{
 | |
| 			{
 | |
| 				ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
 | |
| 					PortRange: &v2net.PortRange{From: clientPort, To: clientPort + clientPortRange},
 | |
| 					Listen:    v2net.NewIPOrDomain(v2net.LocalHostIP),
 | |
| 				}),
 | |
| 				ProxySettings: serial.ToTypedMessage(&dokodemo.Config{
 | |
| 					Address: v2net.NewIPOrDomain(dest.Address),
 | |
| 					Port:    uint32(dest.Port),
 | |
| 					NetworkList: &v2net.NetworkList{
 | |
| 						Network: []v2net.Network{v2net.Network_UDP},
 | |
| 					},
 | |
| 				}),
 | |
| 			},
 | |
| 		},
 | |
| 		Outbound: []*proxyman.OutboundHandlerConfig{
 | |
| 			{
 | |
| 				ProxySettings: serial.ToTypedMessage(&outbound.Config{
 | |
| 					Receiver: []*protocol.ServerEndpoint{
 | |
| 						{
 | |
| 							Address: v2net.NewIPOrDomain(v2net.LocalHostIP),
 | |
| 							Port:    uint32(serverPort),
 | |
| 							User: []*protocol.User{
 | |
| 								{
 | |
| 									Account: serial.ToTypedMessage(&vmess.Account{
 | |
| 										Id: userID.String(),
 | |
| 									}),
 | |
| 								},
 | |
| 							},
 | |
| 						},
 | |
| 					},
 | |
| 				}),
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	servers, err := InitializeServerConfigs(serverConfig, clientConfig)
 | |
| 	assert.Error(err).IsNil()
 | |
| 
 | |
| 	for port := clientPort; port <= clientPort+clientPortRange; port++ {
 | |
| 		conn, err := net.DialUDP("udp", nil, &net.UDPAddr{
 | |
| 			IP:   []byte{127, 0, 0, 1},
 | |
| 			Port: int(port),
 | |
| 		})
 | |
| 		assert.Error(err).IsNil()
 | |
| 
 | |
| 		payload := "dokodemo request."
 | |
| 		nBytes, err := conn.Write([]byte(payload))
 | |
| 		assert.Error(err).IsNil()
 | |
| 		assert.Int(nBytes).Equals(len(payload))
 | |
| 
 | |
| 		response := make([]byte, 1024)
 | |
| 		nBytes, err = conn.Read(response)
 | |
| 		assert.Error(err).IsNil()
 | |
| 		assert.Bytes(response[:nBytes]).Equals(xor([]byte(payload)))
 | |
| 		assert.Error(conn.Close()).IsNil()
 | |
| 	}
 | |
| 
 | |
| 	CloseAllServers(servers)
 | |
| }
 | 
