forked from mirror/go.uuid
232 lines
6.5 KiB
Go
232 lines
6.5 KiB
Go
// Copyright (C) 2013 by Maxim Bublis <b@codemonkey.ru>
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
// a copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
// the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
package uuid
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestString(t *testing.T) {
|
|
if NamespaceDNS.String() != "6ba7b810-9dad-11d1-80b4-00c04fd430c8" {
|
|
t.Errorf("Incorrect string representation for UUID: %s", NamespaceDNS.String())
|
|
}
|
|
}
|
|
|
|
func TestEqual(t *testing.T) {
|
|
if !Equal(NamespaceDNS, NamespaceDNS) {
|
|
t.Errorf("Incorrect comparison of %s and %s", NamespaceDNS, NamespaceDNS)
|
|
}
|
|
|
|
if Equal(NamespaceDNS, NamespaceURL) {
|
|
t.Errorf("Incorrect comparison of %s and %s", NamespaceDNS, NamespaceURL)
|
|
}
|
|
}
|
|
|
|
func TestVersion(t *testing.T) {
|
|
u := UUID{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
|
|
|
|
if u.Version() != 1 {
|
|
t.Errorf("Incorrect version for UUID: %d", u.Version())
|
|
}
|
|
}
|
|
|
|
func TestSetVersion(t *testing.T) {
|
|
u := new(UUID)
|
|
u.SetVersion(4)
|
|
|
|
if u.Version() != 4 {
|
|
t.Errorf("Incorrect version for UUID after u.setVersion(4): %d", u.Version())
|
|
}
|
|
}
|
|
|
|
func TestVariant(t *testing.T) {
|
|
u1 := UUID{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
|
|
|
|
if u1.Variant() != VariantNCS {
|
|
t.Errorf("Incorrect variant for UUID variant %d: %d", VariantNCS, u1.Variant())
|
|
}
|
|
|
|
u2 := UUID{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
|
|
|
|
if u2.Variant() != VariantRFC4122 {
|
|
t.Errorf("Incorrect variant for UUID variant %d: %d", VariantRFC4122, u2.Variant())
|
|
}
|
|
|
|
u3 := UUID{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
|
|
|
|
if u3.Variant() != VariantMicrosoft {
|
|
t.Errorf("Incorrect variant for UUID variant %d: %d", VariantMicrosoft, u3.Variant())
|
|
}
|
|
|
|
u4 := UUID{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
|
|
|
|
if u4.Variant() != VariantFuture {
|
|
t.Errorf("Incorrect variant for UUID variant %d: %d", VariantFuture, u4.Variant())
|
|
}
|
|
}
|
|
|
|
func TestSetVariant(t *testing.T) {
|
|
u := new(UUID)
|
|
u.SetVariant()
|
|
|
|
if u.Variant() != VariantRFC4122 {
|
|
t.Errorf("Incorrect variant for UUID after u.setVariant(): %d", u.Variant())
|
|
}
|
|
}
|
|
|
|
func TestNewV1(t *testing.T) {
|
|
u := NewV1()
|
|
|
|
if u.Version() != 1 {
|
|
t.Errorf("UUIDv1 generated with incorrect version: %d", u.Version())
|
|
}
|
|
|
|
if u.Variant() != VariantRFC4122 {
|
|
t.Errorf("UUIDv1 generated with incorrect variant: %d", u.Variant())
|
|
}
|
|
|
|
u1 := NewV1()
|
|
u2 := NewV1()
|
|
|
|
if Equal(u1, u2) {
|
|
t.Errorf("UUIDv1 generated two equal UUIDs: %s and %s", u1, u2)
|
|
}
|
|
|
|
oldFunc := epochFunc
|
|
epochFunc = func() uint64 { return 0 }
|
|
|
|
u3 := NewV1()
|
|
u4 := NewV1()
|
|
|
|
if Equal(u3, u4) {
|
|
t.Errorf("UUIDv1 generated two equal UUIDs: %s and %s", u3, u4)
|
|
}
|
|
|
|
epochFunc = oldFunc
|
|
}
|
|
|
|
func TestNewV2(t *testing.T) {
|
|
u1 := NewV2(DomainPerson)
|
|
|
|
if u1.Version() != 2 {
|
|
t.Errorf("UUIDv2 generated with incorrect version: %d", u1.Version())
|
|
}
|
|
|
|
if u1.Variant() != VariantRFC4122 {
|
|
t.Errorf("UUIDv2 generated with incorrect variant: %d", u1.Variant())
|
|
}
|
|
|
|
u2 := NewV2(DomainGroup)
|
|
|
|
if u2.Version() != 2 {
|
|
t.Errorf("UUIDv2 generated with incorrect version: %d", u2.Version())
|
|
}
|
|
|
|
if u2.Variant() != VariantRFC4122 {
|
|
t.Errorf("UUIDv2 generated with incorrect variant: %d", u2.Variant())
|
|
}
|
|
}
|
|
|
|
func TestNewV3(t *testing.T) {
|
|
u := NewV3(NamespaceDNS, "www.example.com")
|
|
|
|
if u.Version() != 3 {
|
|
t.Errorf("UUIDv3 generated with incorrect version: %d", u.Version())
|
|
}
|
|
|
|
if u.Variant() != VariantRFC4122 {
|
|
t.Errorf("UUIDv3 generated with incorrect variant: %d", u.Variant())
|
|
}
|
|
|
|
if u.String() != "5df41881-3aed-3515-88a7-2f4a814cf09e" {
|
|
t.Errorf("UUIDv3 generated incorrectly: %s", u.String())
|
|
}
|
|
|
|
u = NewV3(NamespaceDNS, "python.org")
|
|
|
|
if u.String() != "6fa459ea-ee8a-3ca4-894e-db77e160355e" {
|
|
t.Errorf("UUIDv3 generated incorrectly: %s", u.String())
|
|
}
|
|
|
|
u1 := NewV3(NamespaceDNS, "golang.org")
|
|
u2 := NewV3(NamespaceDNS, "golang.org")
|
|
if !Equal(u1, u2) {
|
|
t.Errorf("UUIDv3 generated different UUIDs for same namespace and name: %s and %s", u1, u2)
|
|
}
|
|
|
|
u3 := NewV3(NamespaceDNS, "example.com")
|
|
if Equal(u1, u3) {
|
|
t.Errorf("UUIDv3 generated same UUIDs for different names in same namespace: %s and %s", u1, u2)
|
|
}
|
|
|
|
u4 := NewV3(NamespaceURL, "golang.org")
|
|
if Equal(u1, u4) {
|
|
t.Errorf("UUIDv3 generated same UUIDs for sane names in different namespaces: %s and %s", u1, u4)
|
|
}
|
|
}
|
|
|
|
func TestNewV4(t *testing.T) {
|
|
u := NewV4()
|
|
|
|
if u.Version() != 4 {
|
|
t.Errorf("UUIDv4 generated with incorrect version: %d", u.Version())
|
|
}
|
|
|
|
if u.Variant() != VariantRFC4122 {
|
|
t.Errorf("UUIDv4 generated with incorrect variant: %d", u.Variant())
|
|
}
|
|
}
|
|
|
|
func TestNewV5(t *testing.T) {
|
|
u := NewV5(NamespaceDNS, "www.example.com")
|
|
|
|
if u.Version() != 5 {
|
|
t.Errorf("UUIDv5 generated with incorrect version: %d", u.Version())
|
|
}
|
|
|
|
if u.Variant() != VariantRFC4122 {
|
|
t.Errorf("UUIDv5 generated with incorrect variant: %d", u.Variant())
|
|
}
|
|
|
|
u = NewV5(NamespaceDNS, "python.org")
|
|
|
|
if u.String() != "886313e1-3b8a-5372-9b90-0c9aee199e5d" {
|
|
t.Errorf("UUIDv5 generated incorrectly: %s", u.String())
|
|
}
|
|
|
|
u1 := NewV5(NamespaceDNS, "golang.org")
|
|
u2 := NewV5(NamespaceDNS, "golang.org")
|
|
if !Equal(u1, u2) {
|
|
t.Errorf("UUIDv5 generated different UUIDs for same namespace and name: %s and %s", u1, u2)
|
|
}
|
|
|
|
u3 := NewV5(NamespaceDNS, "example.com")
|
|
if Equal(u1, u3) {
|
|
t.Errorf("UUIDv5 generated same UUIDs for different names in same namespace: %s and %s", u1, u2)
|
|
}
|
|
|
|
u4 := NewV5(NamespaceURL, "golang.org")
|
|
if Equal(u1, u4) {
|
|
t.Errorf("UUIDv3 generated same UUIDs for sane names in different namespaces: %s and %s", u1, u4)
|
|
}
|
|
}
|