mirror of https://github.com/XTLS/Xray-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.
22 lines
398 B
22 lines
398 B
4 years ago
|
package protocol_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/xtls/xray-core/v1/common/protocol"
|
||
|
"github.com/xtls/xray-core/v1/common/uuid"
|
||
|
)
|
||
|
|
||
|
func TestIdEquals(t *testing.T) {
|
||
|
id1 := NewID(uuid.New())
|
||
|
id2 := NewID(id1.UUID())
|
||
|
|
||
|
if !id1.Equals(id2) {
|
||
|
t.Error("expected id1 to equal id2, but actually not")
|
||
|
}
|
||
|
|
||
|
if id1.String() != id2.String() {
|
||
|
t.Error(id1.String(), " != ", id2.String())
|
||
|
}
|
||
|
}
|