mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
package encoding_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/v2ray/v2ray-core/common/alloc"
|
|
"github.com/v2ray/v2ray-core/common/protocol"
|
|
"github.com/v2ray/v2ray-core/common/uuid"
|
|
. "github.com/v2ray/v2ray-core/proxy/vmess/encoding"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
)
|
|
|
|
func TestSwitchAccount(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
sa := &protocol.CommandSwitchAccount{
|
|
Port: 1234,
|
|
ID: uuid.New(),
|
|
AlterIds: 1024,
|
|
Level: 128,
|
|
ValidMin: 16,
|
|
}
|
|
|
|
buffer := alloc.NewBuffer().Clear()
|
|
err := MarshalCommand(sa, buffer)
|
|
assert.Error(err).IsNil()
|
|
|
|
cmd, err := UnmarshalCommand(1, buffer.Value[2:])
|
|
assert.Error(err).IsNil()
|
|
|
|
sa2, ok := cmd.(*protocol.CommandSwitchAccount)
|
|
assert.Bool(ok).IsTrue()
|
|
assert.Pointer(sa.Host).IsNil()
|
|
assert.Pointer(sa2.Host).IsNil()
|
|
assert.Port(sa.Port).Equals(sa2.Port)
|
|
assert.String(sa.ID.String()).Equals(sa2.ID.String())
|
|
assert.Uint16(sa.AlterIds).Equals(sa2.AlterIds)
|
|
assert.Byte(byte(sa.Level)).Equals(byte(sa2.Level))
|
|
assert.Byte(sa.ValidMin).Equals(sa2.ValidMin)
|
|
}
|