1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-11 21:43:52 -04:00
v2fly/proxy/socks/protocol/socks_test.go

110 lines
2.9 KiB
Go
Raw Normal View History

package protocol
2015-09-07 11:28:36 -04:00
import (
2015-09-07 16:26:37 -04:00
"bytes"
2015-09-07 11:28:36 -04:00
"testing"
"github.com/v2ray/v2ray-core/testing/unit"
2015-09-07 11:28:36 -04:00
)
2015-09-16 11:29:00 -04:00
func TestHasAuthenticationMethod(t *testing.T) {
assert := unit.Assert(t)
request := Socks5AuthenticationRequest{
version: socksVersion,
nMethods: byte(0x02),
authMethods: [256]byte{0x01, 0x02},
}
assert.Bool(request.HasAuthMethod(byte(0x01))).IsTrue()
request.authMethods[0] = byte(0x03)
assert.Bool(request.HasAuthMethod(byte(0x01))).IsFalse()
}
2015-09-07 16:26:37 -04:00
func TestAuthenticationRequestRead(t *testing.T) {
assert := unit.Assert(t)
2015-09-07 16:26:37 -04:00
rawRequest := []byte{
0x05, // version
0x01, // nMethods
0x02, // methods
}
2015-09-17 11:37:04 -04:00
request, _, err := ReadAuthentication(bytes.NewReader(rawRequest))
2015-09-09 09:26:11 -04:00
assert.Error(err).IsNil()
assert.Byte(request.version).Named("Version").Equals(0x05)
assert.Byte(request.nMethods).Named("#Methods").Equals(0x01)
assert.Byte(request.authMethods[0]).Named("Auth Method").Equals(0x02)
2015-09-07 16:26:37 -04:00
}
2015-09-17 11:37:04 -04:00
func TestAuthentication4RequestRead(t *testing.T) {
assert := unit.Assert(t)
rawRequest := []byte{
0x04, // version
0x01, // command
0x00, 0x35,
0x72, 0x72, 0x72, 0x72,
}
_, request4, err := ReadAuthentication(bytes.NewReader(rawRequest))
assert.Error(err).HasCode(1000)
2015-09-17 11:37:04 -04:00
assert.Byte(request4.Version).Named("Version").Equals(0x04)
assert.Byte(request4.Command).Named("Command").Equals(0x01)
assert.Uint16(request4.Port).Named("Port").Equals(53)
assert.Bytes(request4.IP[:]).Named("IP").Equals([]byte{0x72, 0x72, 0x72, 0x72})
}
2015-09-16 11:29:00 -04:00
func TestAuthenticationResponseWrite(t *testing.T) {
assert := unit.Assert(t)
response := NewAuthenticationResponse(byte(0x05))
2015-09-16 11:29:00 -04:00
buffer := bytes.NewBuffer(make([]byte, 0, 10))
2015-09-16 15:13:13 -04:00
WriteAuthentication(buffer, response)
2015-09-16 11:29:00 -04:00
assert.Bytes(buffer.Bytes()).Equals([]byte{socksVersion, byte(0x05)})
}
2015-09-07 16:26:37 -04:00
func TestRequestRead(t *testing.T) {
assert := unit.Assert(t)
2015-09-07 16:26:37 -04:00
rawRequest := []byte{
0x05, // version
0x01, // cmd connect
0x00, // reserved
0x01, // ipv4 type
0x72, 0x72, 0x72, 0x72, // 114.114.114.114
0x00, 0x35, // port 53
}
request, err := ReadRequest(bytes.NewReader(rawRequest))
2015-09-09 09:26:11 -04:00
assert.Error(err).IsNil()
assert.Byte(request.Version).Named("Version").Equals(0x05)
assert.Byte(request.Command).Named("Command").Equals(0x01)
assert.Byte(request.AddrType).Named("Address Type").Equals(0x01)
assert.Bytes(request.IPv4[:]).Named("IPv4").Equals([]byte{0x72, 0x72, 0x72, 0x72})
assert.Uint16(request.Port).Named("Port").Equals(53)
2015-09-07 16:26:37 -04:00
}
func TestResponseToBytes(t *testing.T) {
assert := unit.Assert(t)
response := Socks5Response{
socksVersion,
ErrorSuccess,
AddrTypeIPv4,
[4]byte{0x72, 0x72, 0x72, 0x72},
"",
[16]byte{},
uint16(53),
}
rawResponse := response.toBytes()
expectedBytes := []byte{
socksVersion,
ErrorSuccess,
byte(0x00),
AddrTypeIPv4,
0x72, 0x72, 0x72, 0x72,
byte(0x00), byte(0x035),
}
assert.Bytes(rawResponse).Named("raw response").Equals(expectedBytes)
}