1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-23 13:44:37 -04:00
v2fly/common/protocol/id_test.go

22 lines
402 B
Go
Raw Normal View History

package protocol_test
2016-01-20 11:45:50 -05:00
import (
2016-01-21 07:05:16 -05:00
"testing"
2016-01-20 11:45:50 -05:00
2021-02-16 15:31:50 -05:00
. "github.com/v2fly/v2ray-core/v4/common/protocol"
"github.com/v2fly/v2ray-core/v4/common/uuid"
2016-01-20 11:45:50 -05:00
)
2017-12-17 18:07:50 -05:00
func TestIdEquals(t *testing.T) {
id1 := NewID(uuid.New())
id2 := NewID(id1.UUID())
2019-01-08 17:27:02 -05:00
if !id1.Equals(id2) {
t.Error("expected id1 to equal id2, but actually not")
}
2019-01-08 17:41:34 -05:00
if id1.String() != id2.String() {
2019-01-08 17:27:02 -05:00
t.Error(id1.String(), " != ", id2.String())
}
2017-12-17 18:07:50 -05:00
}