1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 14:35:23 +00:00

Test case for auth response tobytes

This commit is contained in:
V2Ray 2015-09-07 17:28:36 +02:00
parent bec765a2fe
commit 07b440fdcb

18
io/socks/socks_test.go Normal file
View File

@ -0,0 +1,18 @@
package socks
import (
"testing"
)
func TestAuthenticationResponseToBytes(t *testing.T) {
socksVersion := uint8(5)
authMethod := uint8(1)
response := Socks5AuthenticationResponse{socksVersion, authMethod}
bytes := response.ToBytes()
if bytes[0] != socksVersion {
t.Errorf("Unexpected Socks version %d", bytes[0])
}
if bytes[1] != authMethod {
t.Errorf("Unexpected Socks auth method %d", bytes[1])
}
}