2016-09-06 18:56:31 +02:00
|
|
|
package null
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
bytesJSON = []byte(`"hello"`)
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestBytesFrom(t *testing.T) {
|
|
|
|
i := BytesFrom([]byte(`"hello"`))
|
|
|
|
assertBytes(t, i, "BytesFrom()")
|
|
|
|
|
|
|
|
zero := BytesFrom(nil)
|
|
|
|
if zero.Valid {
|
|
|
|
t.Error("BytesFrom(nil)", "is valid, but should be invalid")
|
|
|
|
}
|
2016-09-07 14:24:10 +02:00
|
|
|
|
|
|
|
zero = BytesFrom([]byte{})
|
|
|
|
if !zero.Valid {
|
|
|
|
t.Error("BytesFrom([]byte{})", "is invalid, but should be valid")
|
|
|
|
}
|
2016-09-06 18:56:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBytesFromPtr(t *testing.T) {
|
|
|
|
n := []byte(`"hello"`)
|
|
|
|
iptr := &n
|
|
|
|
i := BytesFromPtr(iptr)
|
|
|
|
assertBytes(t, i, "BytesFromPtr()")
|
|
|
|
|
|
|
|
null := BytesFromPtr(nil)
|
|
|
|
assertNullBytes(t, null, "BytesFromPtr(nil)")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUnmarshalBytes(t *testing.T) {
|
|
|
|
var i Bytes
|
|
|
|
err := json.Unmarshal(bytesJSON, &i)
|
|
|
|
maybePanic(err)
|
|
|
|
assertBytes(t, i, "[]byte json")
|
|
|
|
|
|
|
|
var ni Bytes
|
|
|
|
err = ni.UnmarshalJSON([]byte{})
|
2016-09-07 13:17:27 +02:00
|
|
|
if ni.Valid == false {
|
|
|
|
t.Errorf("expected Valid to be true, got false")
|
2016-09-06 18:56:31 +02:00
|
|
|
}
|
2016-09-07 13:17:27 +02:00
|
|
|
if !bytes.Equal(ni.Bytes, []byte("null")) {
|
|
|
|
t.Errorf("Expected Bytes to be nil slice, but was not: %#v %#v", ni.Bytes, []byte(`null`))
|
2016-09-06 18:56:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var null Bytes
|
2016-09-07 13:17:27 +02:00
|
|
|
err = null.UnmarshalJSON(nil)
|
|
|
|
if null.Valid == false {
|
|
|
|
t.Errorf("expected Valid to be true, got false")
|
2016-09-06 18:56:31 +02:00
|
|
|
}
|
2016-09-07 13:17:27 +02:00
|
|
|
if !bytes.Equal(null.Bytes, []byte(`null`)) {
|
|
|
|
t.Errorf("Expected Bytes to be []byte nil, but was not: %#v %#v", null.Bytes, []byte(`null`))
|
2016-09-06 18:56:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTextUnmarshalBytes(t *testing.T) {
|
|
|
|
var i Bytes
|
|
|
|
err := i.UnmarshalText([]byte(`"hello"`))
|
|
|
|
maybePanic(err)
|
|
|
|
assertBytes(t, i, "UnmarshalText() []byte")
|
|
|
|
|
|
|
|
var blank Bytes
|
|
|
|
err = blank.UnmarshalText([]byte(""))
|
|
|
|
maybePanic(err)
|
|
|
|
assertNullBytes(t, blank, "UnmarshalText() empty []byte")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMarshalBytes(t *testing.T) {
|
|
|
|
i := BytesFrom([]byte(`"hello"`))
|
|
|
|
data, err := json.Marshal(i)
|
|
|
|
maybePanic(err)
|
|
|
|
assertJSONEquals(t, data, `"hello"`, "non-empty json marshal")
|
|
|
|
|
|
|
|
// invalid values should be encoded as null
|
|
|
|
null := NewBytes(nil, false)
|
|
|
|
data, err = json.Marshal(null)
|
|
|
|
maybePanic(err)
|
|
|
|
assertJSONEquals(t, data, "null", "null json marshal")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMarshalBytesText(t *testing.T) {
|
|
|
|
i := BytesFrom([]byte(`"hello"`))
|
|
|
|
data, err := i.MarshalText()
|
|
|
|
maybePanic(err)
|
|
|
|
assertJSONEquals(t, data, `"hello"`, "non-empty text marshal")
|
|
|
|
|
|
|
|
// invalid values should be encoded as null
|
|
|
|
null := NewBytes(nil, false)
|
|
|
|
data, err = null.MarshalText()
|
|
|
|
maybePanic(err)
|
|
|
|
assertJSONEquals(t, data, "", "null text marshal")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBytesPointer(t *testing.T) {
|
|
|
|
i := BytesFrom([]byte(`"hello"`))
|
|
|
|
ptr := i.Ptr()
|
|
|
|
if !bytes.Equal(*ptr, []byte(`"hello"`)) {
|
|
|
|
t.Errorf("bad %s []byte: %#v ≠ %s\n", "pointer", ptr, `"hello"`)
|
|
|
|
}
|
|
|
|
|
|
|
|
null := NewBytes(nil, false)
|
|
|
|
ptr = null.Ptr()
|
|
|
|
if ptr != nil {
|
|
|
|
t.Errorf("bad %s []byte: %#v ≠ %s\n", "nil pointer", ptr, "nil")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBytesIsZero(t *testing.T) {
|
|
|
|
i := BytesFrom([]byte(`"hello"`))
|
|
|
|
if i.IsZero() {
|
|
|
|
t.Errorf("IsZero() should be false")
|
|
|
|
}
|
|
|
|
|
|
|
|
null := NewBytes(nil, false)
|
|
|
|
if !null.IsZero() {
|
|
|
|
t.Errorf("IsZero() should be true")
|
|
|
|
}
|
|
|
|
|
|
|
|
zero := NewBytes(nil, true)
|
|
|
|
if zero.IsZero() {
|
|
|
|
t.Errorf("IsZero() should be false")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBytesSetValid(t *testing.T) {
|
|
|
|
change := NewBytes(nil, false)
|
|
|
|
assertNullBytes(t, change, "SetValid()")
|
|
|
|
change.SetValid([]byte(`"hello"`))
|
|
|
|
assertBytes(t, change, "SetValid()")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBytesScan(t *testing.T) {
|
|
|
|
var i Bytes
|
|
|
|
err := i.Scan(`"hello"`)
|
|
|
|
maybePanic(err)
|
|
|
|
assertBytes(t, i, "scanned []byte")
|
|
|
|
|
|
|
|
var null Bytes
|
|
|
|
err = null.Scan(nil)
|
|
|
|
maybePanic(err)
|
|
|
|
assertNullBytes(t, null, "scanned null")
|
|
|
|
}
|
|
|
|
|
|
|
|
func assertBytes(t *testing.T, i Bytes, from string) {
|
|
|
|
if !bytes.Equal(i.Bytes, []byte(`"hello"`)) {
|
|
|
|
t.Errorf("bad %s []byte: %#v ≠ %#v\n", from, string(i.Bytes), string([]byte(`"hello"`)))
|
|
|
|
}
|
|
|
|
if !i.Valid {
|
|
|
|
t.Error(from, "is invalid, but should be valid")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func assertNullBytes(t *testing.T, i Bytes, from string) {
|
|
|
|
if i.Valid {
|
|
|
|
t.Error(from, "is valid, but should be invalid")
|
|
|
|
}
|
|
|
|
}
|