1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 11:35:23 +00:00
v2fly/common/uuid/uuid_test.go

80 lines
1.7 KiB
Go
Raw Normal View History

2015-12-12 10:32:40 +00:00
package uuid_test
import (
"testing"
2018-07-13 12:36:09 +00:00
"v2ray.com/core/common"
"v2ray.com/core/common/compare"
2016-08-20 18:55:45 +00:00
. "v2ray.com/core/common/uuid"
2017-10-24 14:15:35 +00:00
. "v2ray.com/ext/assert"
2015-12-12 10:32:40 +00:00
)
2015-12-12 12:11:49 +00:00
func TestParseBytes(t *testing.T) {
str := "2418d087-648d-4990-86e8-19dca1d006d3"
bytes := []byte{0x24, 0x18, 0xd0, 0x87, 0x64, 0x8d, 0x49, 0x90, 0x86, 0xe8, 0x19, 0xdc, 0xa1, 0xd0, 0x06, 0xd3}
uuid, err := ParseBytes(bytes)
2018-07-13 12:36:09 +00:00
common.Must(err)
if err := compare.StringEqualWithDetail(uuid.String(), str); err != nil {
t.Fatal(err)
}
2016-01-21 12:11:23 +00:00
2016-04-25 22:46:04 +00:00
_, err = ParseBytes([]byte{1, 3, 2, 4})
2018-07-13 12:36:09 +00:00
if err == nil {
t.Fatal("Expect error but nil")
}
2015-12-12 12:11:49 +00:00
}
2015-12-12 10:32:40 +00:00
func TestParseString(t *testing.T) {
str := "2418d087-648d-4990-86e8-19dca1d006d3"
expectedBytes := []byte{0x24, 0x18, 0xd0, 0x87, 0x64, 0x8d, 0x49, 0x90, 0x86, 0xe8, 0x19, 0xdc, 0xa1, 0xd0, 0x06, 0xd3}
uuid, err := ParseString(str)
2018-07-13 12:36:09 +00:00
common.Must(err)
if err := compare.BytesEqualWithDetail(expectedBytes, uuid.Bytes()); err != nil {
t.Fatal(err)
}
_, err = ParseString("2418d087")
if err == nil {
t.Fatal("Expect error but nil")
}
_, err = ParseString("2418d087-648k-4990-86e8-19dca1d006d3")
if err == nil {
t.Fatal("Expect error but nil")
}
2015-12-12 10:32:40 +00:00
}
func TestNewUUID(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2015-12-12 10:32:40 +00:00
uuid := New()
uuid2, err := ParseString(uuid.String())
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
assert(uuid.String(), Equals, uuid2.String())
assert(uuid.Bytes(), Equals, uuid2.Bytes())
2015-12-12 10:32:40 +00:00
}
func TestRandom(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2015-12-12 10:32:40 +00:00
uuid := New()
uuid2 := New()
2017-10-24 14:15:35 +00:00
assert(uuid.String(), NotEquals, uuid2.String())
assert(uuid.Bytes(), NotEquals, uuid2.Bytes())
2015-12-12 10:32:40 +00:00
}
func TestEquals(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2018-11-13 08:51:55 +00:00
var uuid *UUID
var uuid2 *UUID
2017-10-24 14:15:35 +00:00
assert(uuid.Equals(uuid2), IsTrue)
2018-01-18 22:25:48 +00:00
uuid3 := New()
assert(uuid.Equals(&uuid3), IsFalse)
}