1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
|
// Copyright (C) 2013-2018 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 (
"bytes"
"fmt"
"io"
"testing"
"time"
)
func TestUUID(t *testing.T) {
t.Run("IsNil", testUUIDIsNil)
t.Run("Bytes", testUUIDBytes)
t.Run("String", testUUIDString)
t.Run("Version", testUUIDVersion)
t.Run("Variant", testUUIDVariant)
t.Run("SetVersion", testUUIDSetVersion)
t.Run("SetVariant", testUUIDSetVariant)
t.Run("Format", testUUIDFormat)
}
func testUUIDIsNil(t *testing.T) {
u := UUID{}
got := u.IsNil()
want := true
if got != want {
t.Errorf("%v.IsNil() = %t, want %t", u, got, want)
}
}
func testUUIDBytes(t *testing.T) {
got := codecTestUUID.Bytes()
want := codecTestData
if !bytes.Equal(got, want) {
t.Errorf("%v.Bytes() = %x, want %x", codecTestUUID, got, want)
}
}
func testUUIDString(t *testing.T) {
got := NamespaceDNS.String()
want := "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
if got != want {
t.Errorf("%v.String() = %q, want %q", NamespaceDNS, got, want)
}
}
func testUUIDVersion(t *testing.T) {
u := UUID{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
if got, want := u.Version(), V1; got != want {
t.Errorf("%v.Version() == %d, want %d", u, got, want)
}
}
func testUUIDVariant(t *testing.T) {
tests := []struct {
u UUID
want byte
}{
{
u: UUID{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
want: VariantNCS,
},
{
u: UUID{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
want: VariantRFC9562,
},
{
u: UUID{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
want: VariantMicrosoft,
},
{
u: UUID{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
want: VariantFuture,
},
}
for _, tt := range tests {
if got := tt.u.Variant(); got != tt.want {
t.Errorf("%v.Variant() == %d, want %d", tt.u, got, tt.want)
}
}
}
func testUUIDSetVersion(t *testing.T) {
u := UUID{}
want := V4
u.SetVersion(want)
if got := u.Version(); got != want {
t.Errorf("%v.Version() == %d after SetVersion(%d)", u, got, want)
}
}
func testUUIDSetVariant(t *testing.T) {
variants := []byte{
VariantNCS,
VariantRFC9562,
VariantMicrosoft,
VariantFuture,
}
for _, want := range variants {
u := UUID{}
u.SetVariant(want)
if got := u.Variant(); got != want {
t.Errorf("%v.Variant() == %d after SetVariant(%d)", u, got, want)
}
}
}
func testUUIDFormat(t *testing.T) {
val := Must(FromString("12345678-90ab-cdef-1234-567890abcdef"))
tests := []struct {
u UUID
f string
want string
}{
{u: val, f: "%s", want: "12345678-90ab-cdef-1234-567890abcdef"},
{u: val, f: "%S", want: "12345678-90AB-CDEF-1234-567890ABCDEF"},
{u: val, f: "%q", want: `"12345678-90ab-cdef-1234-567890abcdef"`},
{u: val, f: "%x", want: "1234567890abcdef1234567890abcdef"},
{u: val, f: "%X", want: "1234567890ABCDEF1234567890ABCDEF"},
{u: val, f: "%v", want: "12345678-90ab-cdef-1234-567890abcdef"},
{u: val, f: "%+v", want: "12345678-90ab-cdef-1234-567890abcdef"},
{u: val, f: "%#v", want: "[16]uint8{0x12, 0x34, 0x56, 0x78, 0x90, 0xab, 0xcd, 0xef, 0x12, 0x34, 0x56, 0x78, 0x90, 0xab, 0xcd, 0xef}"},
{u: val, f: "%T", want: "uuid.UUID"},
{u: val, f: "%t", want: "%!t(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%b", want: "%!b(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%c", want: "%!c(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%d", want: "%!d(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%e", want: "%!e(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%E", want: "%!E(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%f", want: "%!f(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%F", want: "%!F(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%g", want: "%!g(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%G", want: "%!G(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%o", want: "%!o(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
{u: val, f: "%U", want: "%!U(uuid.UUID=12345678-90ab-cdef-1234-567890abcdef)"},
}
for _, tt := range tests {
got := fmt.Sprintf(tt.f, tt.u)
if tt.want != got {
t.Errorf(`Format("%s") got %s, want %s`, tt.f, got, tt.want)
}
}
}
func TestMust(t *testing.T) {
sentinel := fmt.Errorf("uuid: sentinel error")
defer func() {
r := recover()
if r == nil {
t.Fatalf("did not panic, want %v", sentinel)
}
err, ok := r.(error)
if !ok {
t.Fatalf("panicked with %T, want error (%v)", r, sentinel)
}
if err != sentinel {
t.Fatalf("panicked with %v, want %v", err, sentinel)
}
}()
fn := func() (UUID, error) {
return Nil, sentinel
}
Must(fn())
}
func TestTimeFromTimestamp(t *testing.T) {
tests := []struct {
t Timestamp
want time.Time
}{
// a zero timestamp represents October 15, 1582 at midnight UTC
{t: Timestamp(0), want: time.Date(1582, 10, 15, 0, 0, 0, 0, time.UTC)},
// a one value is 100ns later
{t: Timestamp(1), want: time.Date(1582, 10, 15, 0, 0, 0, 100, time.UTC)},
// 10 million 100ns intervals later is one second
{t: Timestamp(10000000), want: time.Date(1582, 10, 15, 0, 0, 1, 0, time.UTC)},
{t: Timestamp(60 * 10000000), want: time.Date(1582, 10, 15, 0, 1, 0, 0, time.UTC)},
{t: Timestamp(60 * 60 * 10000000), want: time.Date(1582, 10, 15, 1, 0, 0, 0, time.UTC)},
{t: Timestamp(24 * 60 * 60 * 10000000), want: time.Date(1582, 10, 16, 0, 0, 0, 0, time.UTC)},
{t: Timestamp(365 * 24 * 60 * 60 * 10000000), want: time.Date(1583, 10, 15, 0, 0, 0, 0, time.UTC)},
// maximum timestamp value in a UUID is the year 5236
{t: Timestamp(uint64(1<<60 - 1)), want: time.Date(5236, 03, 31, 21, 21, 0, 684697500, time.UTC)},
}
for _, tt := range tests {
got, _ := tt.t.Time()
if !got.Equal(tt.want) {
t.Errorf("%v.Time() == %v, want %v", tt.t, got, tt.want)
}
}
}
func TestTimestampFromV1(t *testing.T) {
tests := []struct {
u UUID
want Timestamp
wanterr bool
}{
{u: Must(NewV4()), wanterr: true},
{u: Must(FromString("00000000-0000-1000-0000-000000000000")), want: 0},
{u: Must(FromString("424f137e-a2aa-11e8-98d0-529269fb1459")), want: 137538640775418750},
{u: Must(FromString("ffffffff-ffff-1fff-ffff-ffffffffffff")), want: Timestamp(1<<60 - 1)},
}
for _, tt := range tests {
got, goterr := TimestampFromV1(tt.u)
if tt.wanterr && goterr == nil {
t.Errorf("TimestampFromV1(%v) want error, got %v", tt.u, got)
} else if tt.want != got {
t.Errorf("TimestampFromV1(%v) got %v, want %v", tt.u, got, tt.want)
}
}
}
func TestTimestampFromV6(t *testing.T) {
tests := []struct {
u UUID
want Timestamp
wanterr bool
}{
{u: Must(NewV1()), wanterr: true},
{u: Must(FromString("00000000-0000-6000-0000-000000000000")), want: 0},
{u: Must(FromString("1ec06cff-e9b1-621c-8627-ba3fd7e551c9")), want: 138493178941215260},
{u: Must(FromString("ffffffff-ffff-6fff-ffff-ffffffffffff")), want: Timestamp(1<<60 - 1)},
}
for _, tt := range tests {
got, err := TimestampFromV6(tt.u)
switch {
case tt.wanterr && err == nil:
t.Errorf("TimestampFromV6(%v) want error, got %v", tt.u, got)
case tt.want != got:
t.Errorf("TimestampFromV6(%v) got %v, want %v", tt.u, got, tt.want)
}
}
}
func TestTimestampFromV7(t *testing.T) {
tests := []struct {
u UUID
want Timestamp
wanterr bool
}{
// These non-V7 versions should not be able to be provided to TimestampFromV7
{u: Must(NewV1()), wanterr: true},
{u: NewV3(NamespaceDNS, "a.example.com"), wanterr: true},
// v7 is unix_ts_ms, so zero value time is unix epoch
{u: Must(FromString("00000000-0000-7000-0000-000000000000")), want: 122192928000000000},
{u: Must(FromString("018a8fec-3ced-7164-995f-93c80cbdc575")), want: 139139245386050000},
// Calculated as `(1<<48)-1` milliseconds, times 10,000 (100-ns units per ms), plus epoch offset from 1970 to 1582.
{u: Must(FromString("ffffffff-ffff-7fff-bfff-ffffffffffff")), want: 2936942695106550000},
}
for _, tt := range tests {
got, err := TimestampFromV7(tt.u)
switch {
case tt.wanterr && err == nil:
t.Errorf("TimestampFromV7(%v) want error, got %v", tt.u, got)
case tt.want != got:
t.Errorf("TimestampFromV7(%v) got %v, want %v", tt.u, got, tt.want)
}
}
}
func TestMinMaxTimestamps(t *testing.T) {
tests := []struct {
u UUID
want time.Time
}{
// v1 min and max
{u: Must(FromString("00000000-0000-1000-8000-000000000000")), want: time.Date(1582, 10, 15, 0, 0, 0, 0, time.UTC)}, //1582-10-15 0:00:00 (UTC)
{u: Must(FromString("ffffffff-ffff-1fff-bfff-ffffffffffff")), want: time.Date(5236, 3, 31, 21, 21, 00, 684697500, time.UTC)}, //5236-03-31 21:21:00 (UTC)
// v6 min and max
{u: Must(FromString("00000000-0000-6000-8000-000000000000")), want: time.Date(1582, 10, 15, 0, 0, 0, 0, time.UTC)}, //1582-10-15 0:00:00 (UTC)
{u: Must(FromString("ffffffff-ffff-6fff-bfff-ffffffffffff")), want: time.Date(5236, 3, 31, 21, 21, 00, 684697500, time.UTC)}, //5236-03-31 21:21:00 (UTC)
// v7 min and max
{u: Must(FromString("00000000-0000-7000-8000-000000000000")), want: time.Date(1970, 1, 1, 0, 0, 0, 0, time.UTC)}, //1970-01-01 0:00:00 (UTC)
{u: Must(FromString("ffffffff-ffff-7fff-bfff-ffffffffffff")), want: time.Date(10889, 8, 2, 5, 31, 50, 655000000, time.UTC)}, //10889-08-02 5:31:50.655 (UTC)
}
for _, tt := range tests {
var got Timestamp
var err error
var functionName string
switch tt.u.Version() {
case V1:
functionName = "TimestampFromV1"
got, err = TimestampFromV1(tt.u)
case V6:
functionName = "TimestampFromV6"
got, err = TimestampFromV6(tt.u)
case V7:
functionName = "TimestampFromV7"
got, err = TimestampFromV7(tt.u)
}
if err != nil {
t.Errorf(functionName+"(%v) got error %v, want %v", tt.u, err, tt.want)
}
tm, err := got.Time()
if err != nil {
t.Errorf(functionName+"(%v) got error %v, want %v", tt.u, err, tt.want)
}
if !tt.want.Equal(tm) {
t.Errorf(functionName+"(%v) got %v, want %v", tt.u, tm.UTC(), tt.want)
}
}
}
func BenchmarkFormat(b *testing.B) {
var tests = []string{
"%s",
"%S",
"%q",
"%x",
"%X",
"%v",
"%+v",
"%#v",
}
for _, x := range tests {
b.Run(x[1:], func(b *testing.B) {
for i := 0; i < b.N; i++ {
fmt.Fprintf(io.Discard, x, &codecTestUUID)
}
})
}
}
var uuidBenchmarkSink UUID
var timestampBenchmarkSink Timestamp
var timeBenchmarkSink time.Time
func BenchmarkTimestampFrom(b *testing.B) {
var err error
numbUUIDs := 1000
if testing.Short() {
numbUUIDs = 10
}
funcs := []struct {
name string
create func() (UUID, error)
timestamp func(UUID) (Timestamp, error)
}{
{"v1", NewV1, TimestampFromV1},
{"v6", NewV6, TimestampFromV6},
{"v7", NewV7, TimestampFromV7},
}
for _, fns := range funcs {
b.Run(fns.name, func(b *testing.B) {
// Make sure we don't just encode the same string over and over again as that will hit memory caches unrealistically
uuids := make([]UUID, numbUUIDs)
for i := 0; i < numbUUIDs; i++ {
uuids[i] = Must(fns.create())
if !testing.Short() {
time.Sleep(1 * time.Millisecond)
}
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
timestampBenchmarkSink, err = fns.timestamp(uuids[i%numbUUIDs])
if err != nil {
b.Fatal(err)
}
}
})
}
}
func BenchmarkTimestampTime(b *testing.B) {
var err error
numbUUIDs := 1000
if testing.Short() {
numbUUIDs = 10
}
funcs := []struct {
name string
create func() (UUID, error)
timestamp func(UUID) (Timestamp, error)
}{
{"v1", NewV1, TimestampFromV1},
{"v6", NewV6, TimestampFromV6},
{"v7", NewV7, TimestampFromV7},
}
for _, fns := range funcs {
b.Run(fns.name, func(b *testing.B) {
// Make sure we don't just encode the same string over and over again as that will hit memory caches unrealistically
uuids := make([]UUID, numbUUIDs)
timestamps := make([]Timestamp, numbUUIDs)
for i := 0; i < numbUUIDs; i++ {
uuids[i] = Must(fns.create())
timestamps[i], err = fns.timestamp(uuids[i])
if err != nil {
b.Fatal(err)
}
if !testing.Short() {
time.Sleep(1 * time.Millisecond)
}
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
timeBenchmarkSink, err = timestamps[i%numbUUIDs].Time()
if err != nil {
b.Fatal(err)
}
}
})
}
}
|