2015-12-12 05:32:40 -05:00
|
|
|
package uuid_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-07-13 08:36:09 -04:00
|
|
|
"v2ray.com/core/common"
|
|
|
|
"v2ray.com/core/common/compare"
|
2016-08-20 14:55:45 -04:00
|
|
|
. "v2ray.com/core/common/uuid"
|
2017-10-24 10:15:35 -04:00
|
|
|
. "v2ray.com/ext/assert"
|
2015-12-12 05:32:40 -05:00
|
|
|
)
|
|
|
|
|
2015-12-12 07:11:49 -05: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 08:36:09 -04:00
|
|
|
common.Must(err)
|
|
|
|
if err := compare.StringEqualWithDetail(uuid.String(), str); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2016-01-21 07:11:23 -05:00
|
|
|
|
2016-04-25 18:46:04 -04:00
|
|
|
_, err = ParseBytes([]byte{1, 3, 2, 4})
|
2018-07-13 08:36:09 -04:00
|
|
|
if err == nil {
|
|
|
|
t.Fatal("Expect error but nil")
|
|
|
|
}
|
2015-12-12 07:11:49 -05:00
|
|
|
}
|
|
|
|
|
2015-12-12 05:32:40 -05: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 08:36:09 -04: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 05:32:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewUUID(t *testing.T) {
|
2017-10-24 10:15:35 -04:00
|
|
|
assert := With(t)
|
2015-12-12 05:32:40 -05:00
|
|
|
|
|
|
|
uuid := New()
|
|
|
|
uuid2, err := ParseString(uuid.String())
|
|
|
|
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
|
|
|
assert(uuid.String(), Equals, uuid2.String())
|
|
|
|
assert(uuid.Bytes(), Equals, uuid2.Bytes())
|
2015-12-12 05:32:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRandom(t *testing.T) {
|
2017-10-24 10:15:35 -04:00
|
|
|
assert := With(t)
|
2015-12-12 05:32:40 -05:00
|
|
|
|
|
|
|
uuid := New()
|
|
|
|
uuid2 := New()
|
|
|
|
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(uuid.String(), NotEquals, uuid2.String())
|
|
|
|
assert(uuid.Bytes(), NotEquals, uuid2.Bytes())
|
2015-12-12 05:32:40 -05:00
|
|
|
}
|
2016-01-08 19:23:38 -05:00
|
|
|
|
|
|
|
func TestEquals(t *testing.T) {
|
2017-10-24 10:15:35 -04:00
|
|
|
assert := With(t)
|
2016-01-08 19:23:38 -05:00
|
|
|
|
2018-11-13 03:51:55 -05:00
|
|
|
var uuid *UUID
|
|
|
|
var uuid2 *UUID
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(uuid.Equals(uuid2), IsTrue)
|
2018-01-18 17:25:48 -05:00
|
|
|
|
|
|
|
uuid3 := New()
|
|
|
|
assert(uuid.Equals(&uuid3), IsFalse)
|
2016-01-08 19:23:38 -05:00
|
|
|
}
|