1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-06 21:34:19 -04:00
v2fly/proxy/shadowsocks/protocol_test.go

177 lines
4.3 KiB
Go
Raw Normal View History

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