| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package socks
- import (
- "bytes"
- "io/ioutil"
- "net"
- "testing"
- "golang.org/x/net/proxy"
- "github.com/v2ray/v2ray-core"
- "github.com/v2ray/v2ray-core/testing/mocks"
- "github.com/v2ray/v2ray-core/testing/unit"
- )
- func TestSocksTcpConnect(t *testing.T) {
- assert := unit.Assert(t)
- port := uint16(12385)
- och := &mocks.OutboundConnectionHandler{
- Data2Send: bytes.NewBuffer(make([]byte, 0, 1024)),
- Data2Return: []byte("The data to be returned to socks server."),
- }
- core.RegisterOutboundConnectionHandlerFactory("mock_och", och)
- config := mocks.Config{
- PortValue: port,
- InboundConfigValue: &mocks.ConnectionConfig{
- ProtocolValue: "socks",
- ContentValue: []byte("{\"auth\": \"noauth\"}"),
- },
- OutboundConfigValue: &mocks.ConnectionConfig{
- ProtocolValue: "mock_och",
- ContentValue: nil,
- },
- }
- point, err := core.NewPoint(&config)
- assert.Error(err).IsNil()
- err = point.Start()
- assert.Error(err).IsNil()
- socks5Client, err := proxy.SOCKS5("tcp", "127.0.0.1:12385", nil, proxy.Direct)
- assert.Error(err).IsNil()
- conn, err := socks5Client.Dial("tcp", "google.com:80")
- assert.Error(err).IsNil()
- data2Send := "The data to be sent to remote server."
- conn.Write([]byte(data2Send))
- if tcpConn, ok := conn.(*net.TCPConn); ok {
- tcpConn.CloseWrite()
- }
- dataReturned, err := ioutil.ReadAll(conn)
- assert.Error(err).IsNil()
- conn.Close()
- assert.Bytes([]byte(data2Send)).Equals(och.Data2Send.Bytes())
- assert.Bytes(dataReturned).Equals(och.Data2Return)
- }
|