2016-02-03 10:58:42 +00:00
|
|
|
package protocol_test
|
2016-01-20 16:45:50 +00:00
|
|
|
|
|
|
|
import (
|
2016-01-21 12:05:16 +00:00
|
|
|
"testing"
|
2016-01-20 16:45:50 +00:00
|
|
|
|
2016-05-24 20:09:22 +00:00
|
|
|
"github.com/v2ray/v2ray-core/common/predicate"
|
2016-02-03 10:58:42 +00:00
|
|
|
. "github.com/v2ray/v2ray-core/common/protocol"
|
2016-01-21 12:05:16 +00:00
|
|
|
"github.com/v2ray/v2ray-core/common/uuid"
|
|
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
2016-01-20 16:45:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCmdKey(t *testing.T) {
|
2016-05-24 19:55:46 +00:00
|
|
|
assert := assert.On(t)
|
2016-01-20 16:45:50 +00:00
|
|
|
|
2016-01-21 12:05:16 +00:00
|
|
|
id := NewID(uuid.New())
|
2016-05-24 20:09:22 +00:00
|
|
|
assert.Bool(predicate.BytesAll(id.CmdKey(), 0)).IsFalse()
|
2016-01-20 16:45:50 +00:00
|
|
|
}
|