v2ray-core/proxy/vmess/encoding/commands_test.go

41 lines
977 B
Go
Raw Normal View History

2016-07-23 13:17:51 +02:00
package encoding_test
2016-02-27 00:05:53 +01:00
import (
"testing"
2016-08-20 20:55:45 +02:00
"v2ray.com/core/common/alloc"
"v2ray.com/core/common/protocol"
"v2ray.com/core/common/uuid"
. "v2ray.com/core/proxy/vmess/encoding"
"v2ray.com/core/testing/assert"
2016-02-27 00:05:53 +01:00
)
func TestSwitchAccount(t *testing.T) {
2016-05-24 21:55:46 +02:00
assert := assert.On(t)
2016-02-27 00:05:53 +01:00
sa := &protocol.CommandSwitchAccount{
Port: 1234,
ID: uuid.New(),
AlterIds: 1024,
Level: 128,
ValidMin: 16,
}
2016-12-06 11:03:42 +01:00
buffer := alloc.NewBuffer()
2016-02-27 00:05:53 +01:00
err := MarshalCommand(sa, buffer)
assert.Error(err).IsNil()
2016-12-05 21:33:24 +01:00
cmd, err := UnmarshalCommand(1, buffer.BytesFrom(2))
2016-02-27 00:05:53 +01:00
assert.Error(err).IsNil()
sa2, ok := cmd.(*protocol.CommandSwitchAccount)
assert.Bool(ok).IsTrue()
assert.Pointer(sa.Host).IsNil()
assert.Pointer(sa2.Host).IsNil()
2016-05-24 15:29:08 +02:00
assert.Port(sa.Port).Equals(sa2.Port)
2016-05-24 21:55:46 +02:00
assert.String(sa.ID.String()).Equals(sa2.ID.String())
assert.Uint16(sa.AlterIds).Equals(sa2.AlterIds)
2016-02-27 00:05:53 +01:00
assert.Byte(byte(sa.Level)).Equals(byte(sa2.Level))
assert.Byte(sa.ValidMin).Equals(sa2.ValidMin)
}