| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 | package freedomimport (	"bytes"	"fmt"	"net"	"testing"	"golang.org/x/net/proxy"	"github.com/v2ray/v2ray-core/app"	"github.com/v2ray/v2ray-core/common/alloc"	v2net "github.com/v2ray/v2ray-core/common/net"	v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"	"github.com/v2ray/v2ray-core/proxy/common/connhandler"	_ "github.com/v2ray/v2ray-core/proxy/socks"	"github.com/v2ray/v2ray-core/proxy/socks/json"	proxytesting "github.com/v2ray/v2ray-core/proxy/testing"	proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks"	"github.com/v2ray/v2ray-core/shell/point"	"github.com/v2ray/v2ray-core/shell/point/testing/mocks"	v2testing "github.com/v2ray/v2ray-core/testing"	"github.com/v2ray/v2ray-core/testing/assert"	"github.com/v2ray/v2ray-core/testing/servers/tcp"	"github.com/v2ray/v2ray-core/testing/servers/udp")func TestUDPSend(t *testing.T) {	v2testing.Current(t)	data2Send := "Data to be sent to remote"	udpServer := &udp.Server{		Port: 0,		MsgProcessor: func(data []byte) []byte {			buffer := make([]byte, 0, 2048)			buffer = append(buffer, []byte("Processed: ")...)			buffer = append(buffer, data...)			return buffer		},	}	udpServerAddr, err := udpServer.Start()	assert.Error(err).IsNil()	connOutput := bytes.NewBuffer(make([]byte, 0, 1024))	ich := &proxymocks.InboundConnectionHandler{		ConnInput:  bytes.NewReader([]byte("Not Used")),		ConnOutput: connOutput,	}	protocol, err := proxytesting.RegisterInboundConnectionHandlerCreator("mock_ich", func(space app.Space, config interface{}) (connhandler.InboundConnectionHandler, error) {		ich.Space = space		return ich, nil	})	assert.Error(err).IsNil()	pointPort := v2nettesting.PickPort()	config := mocks.Config{		PortValue: pointPort,		InboundConfigValue: &mocks.ConnectionConfig{			ProtocolValue: protocol,			SettingsValue: nil,		},		OutboundConfigValue: &mocks.ConnectionConfig{			ProtocolValue: "freedom",			SettingsValue: nil,		},	}	point, err := point.NewPoint(&config)	assert.Error(err).IsNil()	err = point.Start()	assert.Error(err).IsNil()	data2SendBuffer := alloc.NewBuffer().Clear()	data2SendBuffer.Append([]byte(data2Send))	ich.Communicate(v2net.NewPacket(udpServerAddr, data2SendBuffer, false))	assert.Bytes(connOutput.Bytes()).Equals([]byte("Processed: Data to be sent to remote"))}func TestSocksTcpConnect(t *testing.T) {	v2testing.Current(t)	port := v2nettesting.PickPort()	data2Send := "Data to be sent to remote"	tcpServer := &tcp.Server{		Port: port,		MsgProcessor: func(data []byte) []byte {			buffer := make([]byte, 0, 2048)			buffer = append(buffer, []byte("Processed: ")...)			buffer = append(buffer, data...)			return buffer		},	}	_, err := tcpServer.Start()	assert.Error(err).IsNil()	pointPort := v2nettesting.PickPort()	config := mocks.Config{		PortValue: pointPort,		InboundConfigValue: &mocks.ConnectionConfig{			ProtocolValue: "socks",			SettingsValue: &json.SocksConfig{				AuthMethod: "auth",			},		},		OutboundConfigValue: &mocks.ConnectionConfig{			ProtocolValue: "freedom",			SettingsValue: nil,		},	}	point, err := point.NewPoint(&config)	assert.Error(err).IsNil()	err = point.Start()	assert.Error(err).IsNil()	socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", pointPort), nil, proxy.Direct)	assert.Error(err).IsNil()	targetServer := fmt.Sprintf("127.0.0.1:%d", port)	conn, err := socks5Client.Dial("tcp", targetServer)	assert.Error(err).IsNil()	conn.Write([]byte(data2Send))	if tcpConn, ok := conn.(*net.TCPConn); ok {		tcpConn.CloseWrite()	}	dataReturned, err := v2net.ReadFrom(conn, nil)	assert.Error(err).IsNil()	conn.Close()	assert.Bytes(dataReturned.Value).Equals([]byte("Processed: Data to be sent to remote"))}
 |