v2ray-core/proxy/socks/server_test.go

238 lines
6.2 KiB
Go
Raw Normal View History

package socks_test
2015-09-11 12:12:09 +00:00
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"
"github.com/v2ray/v2ray-core/app"
2015-11-01 20:32:08 +00:00
v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"
2016-01-02 22:32:18 +00:00
v2proxy "github.com/v2ray/v2ray-core/proxy"
proxytesting "github.com/v2ray/v2ray-core/proxy/testing"
proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks"
2015-11-29 13:45:32 +00:00
"github.com/v2ray/v2ray-core/shell/point"
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
}
protocol, err := proxytesting.RegisterOutboundConnectionHandlerCreator("mock_och", func(space app.Space, config interface{}) (v2proxy.OutboundHandler, error) {
return och, nil
})
assert.Error(err).IsNil()
2015-09-19 13:35:20 +00:00
2016-01-17 20:43:10 +00:00
config := &point.Config{
Port: port,
InboundConfig: &point.ConnectionConfig{
Protocol: "socks",
Settings: []byte(`
{
"auth": "noauth"
}`),
2015-09-19 13:35:20 +00:00
},
2016-01-17 20:43:10 +00:00
OutboundConfig: &point.ConnectionConfig{
Protocol: protocol,
Settings: nil,
2015-09-19 13:35:20 +00:00
},
}
2016-01-17 20:43:10 +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-16 22:53:38 +00:00
assert.StringLiteral(targetServer).Equals(och.Destination.NetAddr())
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
}
protocol, err := proxytesting.RegisterOutboundConnectionHandlerCreator("mock_och", func(space app.Space, config interface{}) (v2proxy.OutboundHandler, error) {
return och, nil
})
assert.Error(err).IsNil()
2015-09-19 13:42:46 +00:00
2016-01-17 20:43:10 +00:00
config := &point.Config{
Port: port,
InboundConfig: &point.ConnectionConfig{
Protocol: "socks",
Settings: []byte(`
{
"auth": "password",
"accounts": [
{"user": "userx", "pass": "passy"}
]
}`),
2015-09-19 13:42:46 +00:00
},
2016-01-17 20:43:10 +00:00
OutboundConfig: &point.ConnectionConfig{
Protocol: protocol,
Settings: nil,
2015-09-19 13:42:46 +00:00
},
}
2016-01-17 20:43:10 +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()
2016-04-25 22:59:44 +00:00
socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", port), &proxy.Auth{User: "userx", Password: "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-16 22:53:38 +00:00
assert.StringLiteral(targetServer).Equals(och.Destination.NetAddr())
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,
}
protocol, err := proxytesting.RegisterOutboundConnectionHandlerCreator("mock_och", func(space app.Space, config interface{}) (v2proxy.OutboundHandler, error) {
return och, nil
})
assert.Error(err).IsNil()
2016-01-17 20:43:10 +00:00
config := &point.Config{
Port: port,
InboundConfig: &point.ConnectionConfig{
Protocol: "socks",
Settings: []byte(`
{
"auth": "password",
"accounts": [
{"user": "userx", "pass": "passy"}
]
}`),
},
2016-01-17 20:43:10 +00:00
OutboundConfig: &point.ConnectionConfig{
Protocol: protocol,
Settings: nil,
},
}
2016-01-17 20:43:10 +00:00
point, err := point.NewPoint(config)
assert.Error(err).IsNil()
err = point.Start()
assert.Error(err).IsNil()
2016-04-25 22:59:44 +00:00
socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", port), &proxy.Auth{User: "userx", Password: "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
}
protocol, err := proxytesting.RegisterOutboundConnectionHandlerCreator("mock_och", func(space app.Space, config interface{}) (v2proxy.OutboundHandler, error) {
return och, nil
})
assert.Error(err).IsNil()
2015-10-13 19:55:12 +00:00
2016-01-17 20:43:10 +00:00
config := &point.Config{
Port: port,
InboundConfig: &point.ConnectionConfig{
Protocol: "socks",
Settings: []byte(`
{
"auth": "password",
"accounts": [
{"user": "userx", "pass": "passy"}
]
}`),
2015-10-13 19:55:12 +00:00
},
2016-01-17 20:43:10 +00:00
OutboundConfig: &point.ConnectionConfig{
Protocol: protocol,
Settings: nil,
2015-10-13 19:55:12 +00:00
},
}
2016-01-17 20:43:10 +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()
}