1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 18:45:23 +00:00
v2fly/proxy/shadowsocks/protocol_test.go

179 lines
4.3 KiB
Go
Raw Normal View History

2016-01-29 14:09:51 +00:00
package shadowsocks_test
import (
"testing"
2016-12-09 10:35:27 +00:00
"v2ray.com/core/common/buf"
"v2ray.com/core/common/net"
2016-10-31 14:24:28 +00:00
"v2ray.com/core/common/protocol"
2016-12-06 10:03:42 +00:00
"v2ray.com/core/common/serial"
2016-08-20 18:55:45 +00:00
. "v2ray.com/core/proxy/shadowsocks"
2017-10-24 14:15:35 +00:00
. "v2ray.com/ext/assert"
2016-01-29 14:09:51 +00:00
)
2016-10-31 14:24:28 +00:00
func TestUDPEncoding(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2016-01-29 14:09:51 +00:00
2016-10-31 14:24:28 +00:00
request := &protocol.RequestHeader{
Version: Version,
Command: protocol.RequestCommandUDP,
Address: net.LocalHostIP,
2016-10-31 14:24:28 +00:00
Port: 1234,
User: &protocol.User{
Email: "love@v2ray.com",
2016-12-15 10:51:09 +00:00
Account: serial.ToTypedMessage(&Account{
2016-10-31 14:24:28 +00:00
Password: "shadowsocks-password",
CipherType: CipherType_AES_128_CFB,
Ota: Account_Disabled,
}),
},
}
2018-03-11 22:29:17 +00:00
data := buf.NewSize(256)
2016-12-09 11:08:25 +00:00
data.AppendSupplier(serial.WriteString("test string"))
2017-04-21 12:51:09 +00:00
encodedData, err := EncodeUDPPacket(request, data.Bytes())
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2016-02-04 21:10:52 +00:00
2016-10-31 14:24:28 +00:00
decodedRequest, decodedData, err := DecodeUDPPacket(request.User, encodedData)
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
assert(decodedData.Bytes(), Equals, data.Bytes())
assert(decodedRequest.Address, Equals, request.Address)
assert(decodedRequest.Port, Equals, request.Port)
2018-03-04 21:38:05 +00:00
assert(decodedRequest.Command, Equals, request.Command)
2016-01-29 14:09:51 +00:00
}
2016-01-29 20:55:42 +00:00
2016-10-31 14:24:28 +00:00
func TestTCPRequest(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2016-02-04 21:10:52 +00:00
2017-04-26 21:46:19 +00:00
cases := []struct {
request *protocol.RequestHeader
payload []byte
}{
{
request: &protocol.RequestHeader{
Version: Version,
Command: protocol.RequestCommandTCP,
Address: net.LocalHostIP,
2017-04-26 21:46:19 +00:00
Option: RequestOptionOneTimeAuth,
Port: 1234,
User: &protocol.User{
Email: "love@v2ray.com",
Account: serial.ToTypedMessage(&Account{
Password: "tcp-password",
CipherType: CipherType_CHACHA20,
}),
},
},
payload: []byte("test string"),
},
{
request: &protocol.RequestHeader{
Version: Version,
Command: protocol.RequestCommandTCP,
Address: net.LocalHostIPv6,
2017-04-26 21:46:19 +00:00
Option: RequestOptionOneTimeAuth,
Port: 1234,
User: &protocol.User{
Email: "love@v2ray.com",
Account: serial.ToTypedMessage(&Account{
Password: "password",
CipherType: CipherType_AES_256_CFB,
}),
},
},
payload: []byte("test string"),
},
{
request: &protocol.RequestHeader{
Version: Version,
Command: protocol.RequestCommandTCP,
Address: net.DomainAddress("v2ray.com"),
2017-04-26 21:46:19 +00:00
Option: RequestOptionOneTimeAuth,
Port: 1234,
User: &protocol.User{
Email: "love@v2ray.com",
Account: serial.ToTypedMessage(&Account{
Password: "password",
CipherType: CipherType_CHACHA20_IETF,
}),
},
},
payload: []byte("test string"),
2016-10-31 14:24:28 +00:00
},
}
2017-04-26 21:46:19 +00:00
runTest := func(request *protocol.RequestHeader, payload []byte) {
data := buf.New()
defer data.Release()
2018-04-19 20:56:55 +00:00
data.Write(payload)
2016-10-31 14:24:28 +00:00
2017-04-26 21:46:19 +00:00
cache := buf.New()
defer cache.Release()
2016-01-29 20:55:42 +00:00
2017-04-26 21:46:19 +00:00
writer, err := WriteTCPRequest(request, cache)
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2016-01-29 20:55:42 +00:00
2017-11-09 21:33:15 +00:00
assert(writer.WriteMultiBuffer(buf.NewMultiBufferValue(data)), IsNil)
2017-04-26 21:46:19 +00:00
decodedRequest, reader, err := ReadTCPSession(request.User, cache)
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
assert(decodedRequest.Address, Equals, request.Address)
assert(decodedRequest.Port, Equals, request.Port)
2018-03-04 21:38:05 +00:00
assert(decodedRequest.Command, Equals, request.Command)
2017-04-26 21:46:19 +00:00
2017-11-09 21:33:15 +00:00
decodedData, err := reader.ReadMultiBuffer()
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
assert(decodedData[0].String(), Equals, string(payload))
2017-04-26 21:46:19 +00:00
}
for _, test := range cases {
runTest(test.request, test.payload)
}
2016-01-29 20:55:42 +00:00
}
2016-11-06 13:32:04 +00:00
func TestUDPReaderWriter(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2016-11-06 13:32:04 +00:00
user := &protocol.User{
2016-12-15 10:51:09 +00:00
Account: serial.ToTypedMessage(&Account{
2016-11-06 13:32:04 +00:00
Password: "test-password",
2017-01-03 00:37:27 +00:00
CipherType: CipherType_CHACHA20_IETF,
2016-11-06 13:32:04 +00:00
}),
}
2016-12-09 11:08:25 +00:00
cache := buf.New()
2017-04-21 12:51:09 +00:00
writer := buf.NewSequentialWriter(&UDPWriter{
2016-11-06 13:32:04 +00:00
Writer: cache,
Request: &protocol.RequestHeader{
Version: Version,
Address: net.DomainAddress("v2ray.com"),
2016-11-06 13:32:04 +00:00
Port: 123,
User: user,
Option: RequestOptionOneTimeAuth,
},
2017-04-21 12:51:09 +00:00
})
2016-11-06 13:32:04 +00:00
reader := &UDPReader{
Reader: cache,
User: user,
}
2016-12-09 11:08:25 +00:00
b := buf.New()
b.AppendSupplier(serial.WriteString("test payload"))
2017-11-09 21:33:15 +00:00
err := writer.WriteMultiBuffer(buf.NewMultiBufferValue(b))
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2016-11-06 13:32:04 +00:00
2017-11-09 21:33:15 +00:00
payload, err := reader.ReadMultiBuffer()
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
assert(payload[0].String(), Equals, "test payload")
2016-11-06 13:32:04 +00:00
2016-12-09 11:08:25 +00:00
b = buf.New()
b.AppendSupplier(serial.WriteString("test payload 2"))
2017-11-09 21:33:15 +00:00
err = writer.WriteMultiBuffer(buf.NewMultiBufferValue(b))
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2016-11-06 13:32:04 +00:00
2017-11-09 21:33:15 +00:00
payload, err = reader.ReadMultiBuffer()
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
assert(payload[0].String(), Equals, "test payload 2")
2016-11-06 13:32:04 +00:00
}