2015-12-12 05:32:40 -05:00
|
|
|
package uuid_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2016-08-20 14:55:45 -04:00
|
|
|
. "v2ray.com/core/common/uuid"
|
|
|
|
"v2ray.com/core/testing/assert"
|
2015-12-12 05:32:40 -05:00
|
|
|
)
|
|
|
|
|
2015-12-12 07:11:49 -05:00
|
|
|
func TestParseBytes(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2015-12-12 07:11:49 -05:00
|
|
|
|
|
|
|
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)
|
|
|
|
assert.Error(err).IsNil()
|
2016-05-24 15:55:46 -04:00
|
|
|
assert.String(uuid.String()).Equals(str)
|
2016-01-21 07:11:23 -05:00
|
|
|
|
2016-04-25 18:46:04 -04:00
|
|
|
_, err = ParseBytes([]byte{1, 3, 2, 4})
|
2016-06-27 02:53:35 -04:00
|
|
|
assert.Error(err).Equals(ErrInvalidID)
|
2015-12-12 07:11:49 -05:00
|
|
|
}
|
|
|
|
|
2015-12-12 05:32:40 -05:00
|
|
|
func TestParseString(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2015-12-12 05:32:40 -05:00
|
|
|
|
|
|
|
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)
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
assert.Bytes(uuid.Bytes()).Equals(expectedBytes)
|
2016-01-21 07:11:23 -05:00
|
|
|
|
|
|
|
uuid, err = ParseString("2418d087")
|
2016-06-27 02:53:35 -04:00
|
|
|
assert.Error(err).Equals(ErrInvalidID)
|
2016-01-21 07:11:23 -05:00
|
|
|
|
|
|
|
uuid, err = ParseString("2418d087-648k-4990-86e8-19dca1d006d3")
|
|
|
|
assert.Error(err).IsNotNil()
|
2015-12-12 05:32:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewUUID(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2015-12-12 05:32:40 -05:00
|
|
|
|
|
|
|
uuid := New()
|
|
|
|
uuid2, err := ParseString(uuid.String())
|
|
|
|
|
|
|
|
assert.Error(err).IsNil()
|
2016-05-24 15:55:46 -04:00
|
|
|
assert.String(uuid.String()).Equals(uuid2.String())
|
2015-12-12 05:32:40 -05:00
|
|
|
assert.Bytes(uuid.Bytes()).Equals(uuid2.Bytes())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRandom(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2015-12-12 05:32:40 -05:00
|
|
|
|
|
|
|
uuid := New()
|
|
|
|
uuid2 := New()
|
|
|
|
|
2016-05-24 15:55:46 -04:00
|
|
|
assert.String(uuid.String()).NotEquals(uuid2.String())
|
2015-12-12 05:32:40 -05:00
|
|
|
assert.Bytes(uuid.Bytes()).NotEquals(uuid2.Bytes())
|
|
|
|
}
|
2016-01-08 19:23:38 -05:00
|
|
|
|
|
|
|
func TestEquals(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2016-01-08 19:23:38 -05:00
|
|
|
|
|
|
|
var uuid *UUID = nil
|
|
|
|
var uuid2 *UUID = nil
|
|
|
|
assert.Bool(uuid.Equals(uuid2)).IsTrue()
|
|
|
|
assert.Bool(uuid.Equals(New())).IsFalse()
|
|
|
|
}
|
2016-01-12 07:38:47 -05:00
|
|
|
|
|
|
|
func TestNext(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2016-01-12 07:38:47 -05:00
|
|
|
|
|
|
|
uuid := New()
|
|
|
|
uuid2 := uuid.Next()
|
|
|
|
assert.Bool(uuid.Equals(uuid2)).IsFalse()
|
|
|
|
}
|