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

19 lines
418 B
Go
Raw Normal View History

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