1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-05 13:35:23 +00:00
v2fly/proxy/socks/socks_test.go

282 lines
7.2 KiB
Go
Raw Normal View History

2015-09-11 12:12:09 +00:00
package socks
import (
2015-09-19 13:35:20 +00:00
"bytes"
2015-11-01 20:32:08 +00:00
"fmt"
2015-09-19 13:35:20 +00:00
"io/ioutil"
"net"
2015-09-11 12:12:09 +00:00
"testing"
2015-09-19 13:35:20 +00:00
"golang.org/x/net/proxy"
2015-11-01 20:32:08 +00:00
v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
2015-12-06 17:21:15 +00:00
"github.com/v2ray/v2ray-core/proxy/socks/json"
proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks"
2015-11-29 13:45:32 +00:00
"github.com/v2ray/v2ray-core/shell/point"
2015-12-06 15:41:41 +00:00
"github.com/v2ray/v2ray-core/shell/point/testing/mocks"
v2testing "github.com/v2ray/v2ray-core/testing"
"github.com/v2ray/v2ray-core/testing/assert"
2015-09-11 12:12:09 +00:00
)
func TestSocksTcpConnect(t *testing.T) {
v2testing.Current(t)
2015-11-01 20:32:08 +00:00
port := v2nettesting.PickPort()
2015-09-19 13:35:20 +00:00
connInput := []byte("The data to be returned to socks server.")
connOutput := bytes.NewBuffer(make([]byte, 0, 1024))
och := &proxymocks.OutboundConnectionHandler{
ConnOutput: connOutput,
ConnInput: bytes.NewReader(connInput),
2015-09-19 13:35:20 +00:00
}
connhandler.RegisterOutboundConnectionHandlerFactory("mock_och", och)
2015-09-19 13:35:20 +00:00
config := mocks.Config{
PortValue: port,
InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks",
2015-10-06 21:11:08 +00:00
SettingsValue: &json.SocksConfig{
AuthMethod: "noauth",
},
2015-09-19 13:35:20 +00:00
},
OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "mock_och",
2015-10-06 21:11:08 +00:00
SettingsValue: nil,
2015-09-19 13:35:20 +00:00
},
}
2015-10-14 12:56:11 +00:00
point, err := point.NewPoint(&config)
2015-09-19 13:35:20 +00:00
assert.Error(err).IsNil()
err = point.Start()
assert.Error(err).IsNil()
2015-11-01 20:32:08 +00:00
socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", port), nil, proxy.Direct)
2015-09-19 13:35:20 +00:00
assert.Error(err).IsNil()
2015-09-19 13:42:46 +00:00
targetServer := "google.com:80"
conn, err := socks5Client.Dial("tcp", targetServer)
2015-09-19 13:35:20 +00:00
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(connOutput.Bytes())
assert.Bytes(dataReturned).Equals(connInput)
2015-12-02 15:41:19 +00:00
assert.StringLiteral(targetServer).Equals(och.Destination.Address().String())
2015-09-19 13:42:46 +00:00
}
func TestSocksTcpConnectWithUserPass(t *testing.T) {
v2testing.Current(t)
2015-11-01 20:32:08 +00:00
port := v2nettesting.PickPort()
2015-09-19 13:42:46 +00:00
connInput := []byte("The data to be returned to socks server.")
connOutput := bytes.NewBuffer(make([]byte, 0, 1024))
och := &proxymocks.OutboundConnectionHandler{
ConnInput: bytes.NewReader(connInput),
ConnOutput: connOutput,
2015-09-19 13:42:46 +00:00
}
connhandler.RegisterOutboundConnectionHandlerFactory("mock_och", och)
2015-09-19 13:42:46 +00:00
config := mocks.Config{
PortValue: port,
InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks",
2015-10-06 21:11:08 +00:00
SettingsValue: &json.SocksConfig{
2015-10-10 20:31:25 +00:00
AuthMethod: "password",
2015-11-03 21:09:07 +00:00
Accounts: json.SocksAccountMap{
"userx": "passy",
2015-10-10 13:51:35 +00:00
},
2015-10-06 21:11:08 +00:00
},
2015-09-19 13:42:46 +00:00
},
OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "mock_och",
2015-10-06 21:11:08 +00:00
SettingsValue: nil,
2015-09-19 13:42:46 +00:00
},
}
2015-10-14 12:56:11 +00:00
point, err := point.NewPoint(&config)
2015-09-19 13:42:46 +00:00
assert.Error(err).IsNil()
err = point.Start()
assert.Error(err).IsNil()
2015-11-01 20:32:08 +00:00
socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", port), &proxy.Auth{"userx", "passy"}, proxy.Direct)
2015-09-19 13:42:46 +00:00
assert.Error(err).IsNil()
targetServer := "1.2.3.4:443"
conn, err := socks5Client.Dial("tcp", targetServer)
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(connOutput.Bytes())
assert.Bytes(dataReturned).Equals(connInput)
2015-12-02 15:41:19 +00:00
assert.StringLiteral(targetServer).Equals(och.Destination.Address().String())
2015-09-11 12:12:09 +00:00
}
2015-10-03 22:44:27 +00:00
func TestSocksTcpConnectWithWrongUserPass(t *testing.T) {
v2testing.Current(t)
2015-11-01 20:32:08 +00:00
port := v2nettesting.PickPort()
connInput := []byte("The data to be returned to socks server.")
connOutput := bytes.NewBuffer(make([]byte, 0, 1024))
och := &proxymocks.OutboundConnectionHandler{
ConnInput: bytes.NewReader(connInput),
ConnOutput: connOutput,
}
connhandler.RegisterOutboundConnectionHandlerFactory("mock_och", och)
config := mocks.Config{
PortValue: port,
InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks",
SettingsValue: &json.SocksConfig{
AuthMethod: "password",
2015-11-03 21:09:07 +00:00
Accounts: json.SocksAccountMap{
"userx": "passy",
},
},
},
OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "mock_och",
SettingsValue: nil,
},
}
2015-10-14 12:56:11 +00:00
point, err := point.NewPoint(&config)
assert.Error(err).IsNil()
err = point.Start()
assert.Error(err).IsNil()
2015-11-01 20:32:08 +00:00
socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", port), &proxy.Auth{"userx", "passz"}, proxy.Direct)
assert.Error(err).IsNil()
targetServer := "1.2.3.4:443"
_, err = socks5Client.Dial("tcp", targetServer)
assert.Error(err).IsNotNil()
}
2015-10-13 19:55:12 +00:00
func TestSocksTcpConnectWithWrongAuthMethod(t *testing.T) {
v2testing.Current(t)
2015-11-01 20:32:08 +00:00
port := v2nettesting.PickPort()
2015-10-13 19:55:12 +00:00
connInput := []byte("The data to be returned to socks server.")
connOutput := bytes.NewBuffer(make([]byte, 0, 1024))
och := &proxymocks.OutboundConnectionHandler{
ConnInput: bytes.NewReader(connInput),
ConnOutput: connOutput,
2015-10-13 19:55:12 +00:00
}
connhandler.RegisterOutboundConnectionHandlerFactory("mock_och", och)
2015-10-13 19:55:12 +00:00
config := mocks.Config{
PortValue: port,
InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks",
SettingsValue: &json.SocksConfig{
AuthMethod: "password",
2015-11-03 21:09:07 +00:00
Accounts: json.SocksAccountMap{
"userx": "passy",
2015-10-13 19:55:12 +00:00
},
},
},
OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "mock_och",
SettingsValue: nil,
},
}
2015-10-14 12:56:11 +00:00
point, err := point.NewPoint(&config)
2015-10-13 19:55:12 +00:00
assert.Error(err).IsNil()
err = point.Start()
assert.Error(err).IsNil()
2015-11-01 20:32:08 +00:00
socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", port), nil, proxy.Direct)
2015-10-13 19:55:12 +00:00
assert.Error(err).IsNil()
targetServer := "1.2.3.4:443"
_, err = socks5Client.Dial("tcp", targetServer)
assert.Error(err).IsNotNil()
}
2015-10-03 22:44:27 +00:00
func TestSocksUdpSend(t *testing.T) {
v2testing.Current(t)
2015-11-01 20:32:08 +00:00
port := v2nettesting.PickPort()
2015-10-03 22:44:27 +00:00
connInput := []byte("The data to be returned to socks server.")
connOutput := bytes.NewBuffer(make([]byte, 0, 1024))
och := &proxymocks.OutboundConnectionHandler{
ConnInput: bytes.NewReader(connInput),
ConnOutput: connOutput,
2015-10-03 22:44:27 +00:00
}
connhandler.RegisterOutboundConnectionHandlerFactory("mock_och", och)
2015-10-03 22:44:27 +00:00
config := mocks.Config{
PortValue: port,
InboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "socks",
2015-10-06 21:11:08 +00:00
SettingsValue: &json.SocksConfig{
AuthMethod: "noauth",
2015-12-03 21:41:06 +00:00
UDP: true,
2015-10-06 21:11:08 +00:00
},
2015-10-03 22:44:27 +00:00
},
OutboundConfigValue: &mocks.ConnectionConfig{
ProtocolValue: "mock_och",
2015-10-06 21:11:08 +00:00
SettingsValue: nil,
2015-10-03 22:44:27 +00:00
},
}
2015-10-14 12:56:11 +00:00
point, err := point.NewPoint(&config)
2015-10-03 22:44:27 +00:00
assert.Error(err).IsNil()
err = point.Start()
assert.Error(err).IsNil()
conn, err := net.DialUDP("udp", nil, &net.UDPAddr{
IP: []byte{127, 0, 0, 1},
Port: int(port),
Zone: "",
})
assert.Error(err).IsNil()
data2Send := []byte("Fake DNS request")
buffer := make([]byte, 0, 1024)
buffer = append(buffer, 0, 0, 0)
buffer = append(buffer, 1, 8, 8, 4, 4, 0, 53)
buffer = append(buffer, data2Send...)
conn.Write(buffer)
response := make([]byte, 1024)
nBytes, err := conn.Read(response)
assert.Error(err).IsNil()
assert.Bytes(response[10:nBytes]).Equals(connInput)
assert.Bytes(data2Send).Equals(connOutput.Bytes())
2015-12-02 15:41:19 +00:00
assert.StringLiteral(och.Destination.String()).Equals("udp:8.8.4.4:53")
2015-10-03 22:44:27 +00:00
}