1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-25 17:05:23 +00:00
v2fly/proxy/vmess/id_test.go

19 lines
427 B
Go
Raw Normal View History

2016-01-20 16:45:50 +00:00
package vmess_test
import (
"testing"
"github.com/v2ray/v2ray-core/common/uuid"
"github.com/v2ray/v2ray-core/common/serial"
. "github.com/v2ray/v2ray-core/proxy/vmess"
v2testing "github.com/v2ray/v2ray-core/testing"
"github.com/v2ray/v2ray-core/testing/assert"
)
func TestCmdKey(t *testing.T) {
v2testing.Current(t)
id := NewID(uuid.New())
2016-01-21 11:52:09 +00:00
assert.Bool(serial.BytesLiteral(id.CmdKey()).All(0)).IsFalse()
2016-01-20 16:45:50 +00:00
}