mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 18:28:00 -05:00
28 lines
493 B
Go
28 lines
493 B
Go
package protocol_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"v2ray.com/core/common/predicate"
|
|
. "v2ray.com/core/common/protocol"
|
|
"v2ray.com/core/common/uuid"
|
|
. "v2ray.com/ext/assert"
|
|
)
|
|
|
|
func TestCmdKey(t *testing.T) {
|
|
assert := With(t)
|
|
|
|
id := NewID(uuid.New())
|
|
assert(predicate.BytesAll(id.CmdKey(), 0), IsFalse)
|
|
}
|
|
|
|
func TestIdEquals(t *testing.T) {
|
|
assert := With(t)
|
|
|
|
id1 := NewID(uuid.New())
|
|
id2 := NewID(id1.UUID())
|
|
|
|
assert(id1.Equals(id2), IsTrue)
|
|
assert(id1.String(), Equals, id2.String())
|
|
}
|