forked from mirror/go.uuid
Moved database support into `sql.go`.
This commit is contained in:
parent
b27323f250
commit
2558856ae9
|
@ -0,0 +1,78 @@
|
||||||
|
// 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 (
|
||||||
|
"database/sql/driver"
|
||||||
|
"fmt"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Value implements the driver.Valuer interface.
|
||||||
|
func (u UUID) Value() (driver.Value, error) {
|
||||||
|
return u.String(), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Scan implements the sql.Scanner interface.
|
||||||
|
// A 16-byte slice is handled by UnmarshalBinary, while
|
||||||
|
// a longer byte slice or a string is handled by UnmarshalText.
|
||||||
|
func (u *UUID) Scan(src interface{}) error {
|
||||||
|
switch src := src.(type) {
|
||||||
|
case []byte:
|
||||||
|
if len(src) == Size {
|
||||||
|
return u.UnmarshalBinary(src)
|
||||||
|
}
|
||||||
|
return u.UnmarshalText(src)
|
||||||
|
|
||||||
|
case string:
|
||||||
|
return u.UnmarshalText([]byte(src))
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Errorf("uuid: cannot convert %T to UUID", src)
|
||||||
|
}
|
||||||
|
|
||||||
|
// NullUUID can be used with the standard sql package to represent a
|
||||||
|
// UUID value that can be NULL in the database
|
||||||
|
type NullUUID struct {
|
||||||
|
UUID UUID
|
||||||
|
Valid bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// Value implements the driver.Valuer interface.
|
||||||
|
func (u NullUUID) Value() (driver.Value, error) {
|
||||||
|
if !u.Valid {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
// Delegate to UUID Value function
|
||||||
|
return u.UUID.Value()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Scan implements the sql.Scanner interface.
|
||||||
|
func (u *NullUUID) Scan(src interface{}) error {
|
||||||
|
if src == nil {
|
||||||
|
u.UUID, u.Valid = Nil, false
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delegate to UUID Scan function
|
||||||
|
u.Valid = true
|
||||||
|
return u.UUID.Scan(src)
|
||||||
|
}
|
|
@ -0,0 +1,189 @@
|
||||||
|
// 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 "testing"
|
||||||
|
|
||||||
|
func TestValue(t *testing.T) {
|
||||||
|
u, err := FromString("6ba7b810-9dad-11d1-80b4-00c04fd430c8")
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error parsing UUID from string: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
val, err := u.Value()
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error getting UUID value: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if val != u.String() {
|
||||||
|
t.Errorf("Wrong value returned, should be equal: %s and %s", val, u)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestValueNil(t *testing.T) {
|
||||||
|
u := UUID{}
|
||||||
|
|
||||||
|
val, err := u.Value()
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error getting UUID value: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if val != Nil.String() {
|
||||||
|
t.Errorf("Wrong value returned, should be equal to UUID.Nil: %s", val)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestNullUUIDValueNil(t *testing.T) {
|
||||||
|
u := NullUUID{}
|
||||||
|
|
||||||
|
val, err := u.Value()
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error getting UUID value: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if val != nil {
|
||||||
|
t.Errorf("Wrong value returned, should be nil: %s", val)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestScanBinary(t *testing.T) {
|
||||||
|
u := UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
||||||
|
b1 := []byte{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
||||||
|
|
||||||
|
u1 := UUID{}
|
||||||
|
err := u1.Scan(b1)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error unmarshaling UUID: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !Equal(u, u1) {
|
||||||
|
t.Errorf("UUIDs should be equal: %s and %s", u, u1)
|
||||||
|
}
|
||||||
|
|
||||||
|
b2 := []byte{}
|
||||||
|
u2 := UUID{}
|
||||||
|
|
||||||
|
err = u2.Scan(b2)
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("Should return error unmarshalling from empty byte slice, got %s", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestScanString(t *testing.T) {
|
||||||
|
u := UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
||||||
|
s1 := "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
|
||||||
|
|
||||||
|
u1 := UUID{}
|
||||||
|
err := u1.Scan(s1)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error unmarshaling UUID: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !Equal(u, u1) {
|
||||||
|
t.Errorf("UUIDs should be equal: %s and %s", u, u1)
|
||||||
|
}
|
||||||
|
|
||||||
|
s2 := ""
|
||||||
|
u2 := UUID{}
|
||||||
|
|
||||||
|
err = u2.Scan(s2)
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("Should return error trying to unmarshal from empty string")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestScanText(t *testing.T) {
|
||||||
|
u := UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
||||||
|
b1 := []byte("6ba7b810-9dad-11d1-80b4-00c04fd430c8")
|
||||||
|
|
||||||
|
u1 := UUID{}
|
||||||
|
err := u1.Scan(b1)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error unmarshaling UUID: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !Equal(u, u1) {
|
||||||
|
t.Errorf("UUIDs should be equal: %s and %s", u, u1)
|
||||||
|
}
|
||||||
|
|
||||||
|
b2 := []byte("")
|
||||||
|
u2 := UUID{}
|
||||||
|
|
||||||
|
err = u2.Scan(b2)
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("Should return error trying to unmarshal from empty string")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestScanUnsupported(t *testing.T) {
|
||||||
|
u := UUID{}
|
||||||
|
|
||||||
|
err := u.Scan(true)
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("Should return error trying to unmarshal from bool")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestScanNil(t *testing.T) {
|
||||||
|
u := UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
||||||
|
|
||||||
|
err := u.Scan(nil)
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("Error UUID shouldn't allow unmarshalling from nil")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestNullUUIDScanValid(t *testing.T) {
|
||||||
|
u := UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
||||||
|
s1 := "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
|
||||||
|
|
||||||
|
u1 := NullUUID{}
|
||||||
|
err := u1.Scan(s1)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error unmarshaling NullUUID: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !u1.Valid {
|
||||||
|
t.Errorf("NullUUID should be valid")
|
||||||
|
}
|
||||||
|
|
||||||
|
if !Equal(u, u1.UUID) {
|
||||||
|
t.Errorf("UUIDs should be equal: %s and %s", u, u1.UUID)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestNullUUIDScanNil(t *testing.T) {
|
||||||
|
u := NullUUID{UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}, true}
|
||||||
|
|
||||||
|
err := u.Scan(nil)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error unmarshaling NullUUID: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if u.Valid {
|
||||||
|
t.Errorf("NullUUID should not be valid")
|
||||||
|
}
|
||||||
|
|
||||||
|
if !Equal(u.UUID, Nil) {
|
||||||
|
t.Errorf("NullUUID value should be equal to Nil: %v", u)
|
||||||
|
}
|
||||||
|
}
|
52
uuid.go
52
uuid.go
|
@ -26,7 +26,6 @@ package uuid
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"database/sql/driver"
|
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"fmt"
|
"fmt"
|
||||||
)
|
)
|
||||||
|
@ -62,13 +61,6 @@ var (
|
||||||
// described in RFC 4122.
|
// described in RFC 4122.
|
||||||
type UUID [Size]byte
|
type UUID [Size]byte
|
||||||
|
|
||||||
// NullUUID can be used with the standard sql package to represent a
|
|
||||||
// UUID value that can be NULL in the database
|
|
||||||
type NullUUID struct {
|
|
||||||
UUID UUID
|
|
||||||
Valid bool
|
|
||||||
}
|
|
||||||
|
|
||||||
// Nil is special form of UUID that is specified to have all
|
// Nil is special form of UUID that is specified to have all
|
||||||
// 128 bits set to zero.
|
// 128 bits set to zero.
|
||||||
var Nil = UUID{}
|
var Nil = UUID{}
|
||||||
|
@ -281,50 +273,6 @@ func (u *UUID) UnmarshalBinary(data []byte) (err error) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Value implements the driver.Valuer interface.
|
|
||||||
func (u UUID) Value() (driver.Value, error) {
|
|
||||||
return u.String(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Scan implements the sql.Scanner interface.
|
|
||||||
// A 16-byte slice is handled by UnmarshalBinary, while
|
|
||||||
// a longer byte slice or a string is handled by UnmarshalText.
|
|
||||||
func (u *UUID) Scan(src interface{}) error {
|
|
||||||
switch src := src.(type) {
|
|
||||||
case []byte:
|
|
||||||
if len(src) == Size {
|
|
||||||
return u.UnmarshalBinary(src)
|
|
||||||
}
|
|
||||||
return u.UnmarshalText(src)
|
|
||||||
|
|
||||||
case string:
|
|
||||||
return u.UnmarshalText([]byte(src))
|
|
||||||
}
|
|
||||||
|
|
||||||
return fmt.Errorf("uuid: cannot convert %T to UUID", src)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Value implements the driver.Valuer interface.
|
|
||||||
func (u NullUUID) Value() (driver.Value, error) {
|
|
||||||
if !u.Valid {
|
|
||||||
return nil, nil
|
|
||||||
}
|
|
||||||
// Delegate to UUID Value function
|
|
||||||
return u.UUID.Value()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Scan implements the sql.Scanner interface.
|
|
||||||
func (u *NullUUID) Scan(src interface{}) error {
|
|
||||||
if src == nil {
|
|
||||||
u.UUID, u.Valid = Nil, false
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Delegate to UUID Scan function
|
|
||||||
u.Valid = true
|
|
||||||
return u.UUID.Scan(src)
|
|
||||||
}
|
|
||||||
|
|
||||||
// FromBytes returns UUID converted from raw byte slice input.
|
// FromBytes returns UUID converted from raw byte slice input.
|
||||||
// It will return error if the slice isn't 16 bytes long.
|
// It will return error if the slice isn't 16 bytes long.
|
||||||
func FromBytes(input []byte) (u UUID, err error) {
|
func FromBytes(input []byte) (u UUID, err error) {
|
||||||
|
|
165
uuid_test.go
165
uuid_test.go
|
@ -331,168 +331,3 @@ func TestUnmarshalText(t *testing.T) {
|
||||||
t.Errorf("Should return error trying to unmarshal from empty string")
|
t.Errorf("Should return error trying to unmarshal from empty string")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestValue(t *testing.T) {
|
|
||||||
u, err := FromString("6ba7b810-9dad-11d1-80b4-00c04fd430c8")
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Error parsing UUID from string: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
val, err := u.Value()
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Error getting UUID value: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if val != u.String() {
|
|
||||||
t.Errorf("Wrong value returned, should be equal: %s and %s", val, u)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestValueNil(t *testing.T) {
|
|
||||||
u := UUID{}
|
|
||||||
|
|
||||||
val, err := u.Value()
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Error getting UUID value: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if val != Nil.String() {
|
|
||||||
t.Errorf("Wrong value returned, should be equal to UUID.Nil: %s", val)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestNullUUIDValueNil(t *testing.T) {
|
|
||||||
u := NullUUID{}
|
|
||||||
|
|
||||||
val, err := u.Value()
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Error getting UUID value: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if val != nil {
|
|
||||||
t.Errorf("Wrong value returned, should be nil: %s", val)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestScanBinary(t *testing.T) {
|
|
||||||
u := UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
|
||||||
b1 := []byte{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
|
||||||
|
|
||||||
u1 := UUID{}
|
|
||||||
err := u1.Scan(b1)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Error unmarshaling UUID: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !Equal(u, u1) {
|
|
||||||
t.Errorf("UUIDs should be equal: %s and %s", u, u1)
|
|
||||||
}
|
|
||||||
|
|
||||||
b2 := []byte{}
|
|
||||||
u2 := UUID{}
|
|
||||||
|
|
||||||
err = u2.Scan(b2)
|
|
||||||
if err == nil {
|
|
||||||
t.Errorf("Should return error unmarshalling from empty byte slice, got %s", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestScanString(t *testing.T) {
|
|
||||||
u := UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
|
||||||
s1 := "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
|
|
||||||
|
|
||||||
u1 := UUID{}
|
|
||||||
err := u1.Scan(s1)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Error unmarshaling UUID: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !Equal(u, u1) {
|
|
||||||
t.Errorf("UUIDs should be equal: %s and %s", u, u1)
|
|
||||||
}
|
|
||||||
|
|
||||||
s2 := ""
|
|
||||||
u2 := UUID{}
|
|
||||||
|
|
||||||
err = u2.Scan(s2)
|
|
||||||
if err == nil {
|
|
||||||
t.Errorf("Should return error trying to unmarshal from empty string")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestScanText(t *testing.T) {
|
|
||||||
u := UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
|
||||||
b1 := []byte("6ba7b810-9dad-11d1-80b4-00c04fd430c8")
|
|
||||||
|
|
||||||
u1 := UUID{}
|
|
||||||
err := u1.Scan(b1)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Error unmarshaling UUID: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !Equal(u, u1) {
|
|
||||||
t.Errorf("UUIDs should be equal: %s and %s", u, u1)
|
|
||||||
}
|
|
||||||
|
|
||||||
b2 := []byte("")
|
|
||||||
u2 := UUID{}
|
|
||||||
|
|
||||||
err = u2.Scan(b2)
|
|
||||||
if err == nil {
|
|
||||||
t.Errorf("Should return error trying to unmarshal from empty string")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestScanUnsupported(t *testing.T) {
|
|
||||||
u := UUID{}
|
|
||||||
|
|
||||||
err := u.Scan(true)
|
|
||||||
if err == nil {
|
|
||||||
t.Errorf("Should return error trying to unmarshal from bool")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestScanNil(t *testing.T) {
|
|
||||||
u := UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
|
||||||
|
|
||||||
err := u.Scan(nil)
|
|
||||||
if err == nil {
|
|
||||||
t.Errorf("Error UUID shouldn't allow unmarshalling from nil")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestNullUUIDScanValid(t *testing.T) {
|
|
||||||
u := UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}
|
|
||||||
s1 := "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
|
|
||||||
|
|
||||||
u1 := NullUUID{}
|
|
||||||
err := u1.Scan(s1)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Error unmarshaling NullUUID: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !u1.Valid {
|
|
||||||
t.Errorf("NullUUID should be valid")
|
|
||||||
}
|
|
||||||
|
|
||||||
if !Equal(u, u1.UUID) {
|
|
||||||
t.Errorf("UUIDs should be equal: %s and %s", u, u1.UUID)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestNullUUIDScanNil(t *testing.T) {
|
|
||||||
u := NullUUID{UUID{0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1, 0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8}, true}
|
|
||||||
|
|
||||||
err := u.Scan(nil)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Error unmarshaling NullUUID: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if u.Valid {
|
|
||||||
t.Errorf("NullUUID should not be valid")
|
|
||||||
}
|
|
||||||
|
|
||||||
if !Equal(u.UUID, Nil) {
|
|
||||||
t.Errorf("NullUUID value should be equal to Nil: %v", u)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue