mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 10:26:01 -05:00
74 lines
1.8 KiB
Go
74 lines
1.8 KiB
Go
package freedom
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"testing"
|
|
|
|
"golang.org/x/net/proxy"
|
|
|
|
v2io "github.com/v2ray/v2ray-core/common/io"
|
|
v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"
|
|
_ "github.com/v2ray/v2ray-core/proxy/socks"
|
|
"github.com/v2ray/v2ray-core/shell/point"
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
"github.com/v2ray/v2ray-core/testing/servers/tcp"
|
|
)
|
|
|
|
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 := &point.Config{
|
|
Port: pointPort,
|
|
InboundConfig: &point.ConnectionConfig{
|
|
Protocol: "socks",
|
|
Settings: []byte(`{"auth": "noauth"}`),
|
|
},
|
|
OutboundConfig: &point.ConnectionConfig{
|
|
Protocol: "freedom",
|
|
Settings: 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 := v2io.ReadFrom(conn, nil)
|
|
assert.Error(err).IsNil()
|
|
conn.Close()
|
|
|
|
assert.Bytes(dataReturned.Value).Equals([]byte("Processed: Data to be sent to remote"))
|
|
}
|