094289d4cf
Repo: github.com/lbryio/null.go git-subtree-dir: null git-subtree-mainline:75e2abdeac
git-subtree-split:109a79fb20
191 lines
4.2 KiB
Go
191 lines
4.2 KiB
Go
package null
|
|
|
|
import (
|
|
"encoding/json"
|
|
"math"
|
|
"strconv"
|
|
"testing"
|
|
)
|
|
|
|
var (
|
|
uint8JSON = []byte(`254`)
|
|
)
|
|
|
|
func TestUint8From(t *testing.T) {
|
|
i := Uint8From(254)
|
|
assertUint8(t, i, "Uint8From()")
|
|
|
|
zero := Uint8From(0)
|
|
if !zero.Valid {
|
|
t.Error("Uint8From(0)", "is invalid, but should be valid")
|
|
}
|
|
}
|
|
|
|
func TestUint8FromPtr(t *testing.T) {
|
|
n := uint8(254)
|
|
iptr := &n
|
|
i := Uint8FromPtr(iptr)
|
|
assertUint8(t, i, "Uint8FromPtr()")
|
|
|
|
null := Uint8FromPtr(nil)
|
|
assertNullUint8(t, null, "Uint8FromPtr(nil)")
|
|
}
|
|
|
|
func TestUnmarshalUint8(t *testing.T) {
|
|
var i Uint8
|
|
err := json.Unmarshal(uint8JSON, &i)
|
|
maybePanic(err)
|
|
assertUint8(t, i, "uint8 json")
|
|
|
|
var null Uint8
|
|
err = json.Unmarshal(nullJSON, &null)
|
|
maybePanic(err)
|
|
assertNullUint8(t, null, "null json")
|
|
|
|
var badType Uint8
|
|
err = json.Unmarshal(boolJSON, &badType)
|
|
if err == nil {
|
|
panic("err should not be nil")
|
|
}
|
|
assertNullUint8(t, badType, "wrong type json")
|
|
|
|
var invalid Uint8
|
|
err = invalid.UnmarshalJSON(invalidJSON)
|
|
if _, ok := err.(*json.SyntaxError); !ok {
|
|
t.Errorf("expected json.SyntaxError, not %T", err)
|
|
}
|
|
assertNullUint8(t, invalid, "invalid json")
|
|
}
|
|
|
|
func TestUnmarshalNonUintegerNumber8(t *testing.T) {
|
|
var i Uint8
|
|
err := json.Unmarshal(float64JSON, &i)
|
|
if err == nil {
|
|
panic("err should be present; non-integer number coerced to uint8")
|
|
}
|
|
}
|
|
|
|
func TestUnmarshalUint8Overflow(t *testing.T) {
|
|
uint8Overflow := int64(math.MaxUint8)
|
|
|
|
// Max uint8 should decode successfully
|
|
var i Uint8
|
|
err := json.Unmarshal([]byte(strconv.FormatUint(uint64(uint8Overflow), 10)), &i)
|
|
maybePanic(err)
|
|
|
|
// Attempt to overflow
|
|
uint8Overflow++
|
|
err = json.Unmarshal([]byte(strconv.FormatUint(uint64(uint8Overflow), 10)), &i)
|
|
if err == nil {
|
|
panic("err should be present; decoded value overflows uint8")
|
|
}
|
|
}
|
|
|
|
func TestTextUnmarshalUint8(t *testing.T) {
|
|
var i Uint8
|
|
err := i.UnmarshalText([]byte("254"))
|
|
maybePanic(err)
|
|
assertUint8(t, i, "UnmarshalText() uint8")
|
|
|
|
var blank Uint8
|
|
err = blank.UnmarshalText([]byte(""))
|
|
maybePanic(err)
|
|
assertNullUint8(t, blank, "UnmarshalText() empty uint8")
|
|
}
|
|
|
|
func TestMarshalUint8(t *testing.T) {
|
|
i := Uint8From(254)
|
|
data, err := json.Marshal(i)
|
|
maybePanic(err)
|
|
assertJSONEquals(t, data, "254", "non-empty json marshal")
|
|
|
|
// invalid values should be encoded as null
|
|
null := NewUint8(0, false)
|
|
data, err = json.Marshal(null)
|
|
maybePanic(err)
|
|
assertJSONEquals(t, data, "null", "null json marshal")
|
|
}
|
|
|
|
func TestMarshalUint8Text(t *testing.T) {
|
|
i := Uint8From(254)
|
|
data, err := i.MarshalText()
|
|
maybePanic(err)
|
|
assertJSONEquals(t, data, "254", "non-empty text marshal")
|
|
|
|
// invalid values should be encoded as null
|
|
null := NewUint8(0, false)
|
|
data, err = null.MarshalText()
|
|
maybePanic(err)
|
|
assertJSONEquals(t, data, "", "null text marshal")
|
|
}
|
|
|
|
func TestUint8Pointer(t *testing.T) {
|
|
i := Uint8From(254)
|
|
ptr := i.Ptr()
|
|
if *ptr != 254 {
|
|
t.Errorf("bad %s uint8: %#v ≠ %d\n", "pointer", ptr, 254)
|
|
}
|
|
|
|
null := NewUint8(0, false)
|
|
ptr = null.Ptr()
|
|
if ptr != nil {
|
|
t.Errorf("bad %s uint8: %#v ≠ %s\n", "nil pointer", ptr, "nil")
|
|
}
|
|
}
|
|
|
|
func TestUint8IsNull(t *testing.T) {
|
|
i := Uint8From(254)
|
|
if i.IsNull() {
|
|
t.Errorf("IsNull() should be false")
|
|
}
|
|
|
|
null := NewUint8(0, false)
|
|
if !null.IsNull() {
|
|
t.Errorf("IsNull() should be true")
|
|
}
|
|
|
|
zero := NewUint8(0, true)
|
|
if zero.IsNull() {
|
|
t.Errorf("IsNull() should be false")
|
|
}
|
|
|
|
var testInt interface{}
|
|
testInt = zero
|
|
if _, ok := testInt.(Nullable); !ok {
|
|
t.Errorf("Nullable interface should be implemented")
|
|
}
|
|
}
|
|
|
|
func TestUint8SetValid(t *testing.T) {
|
|
change := NewUint8(0, false)
|
|
assertNullUint8(t, change, "SetValid()")
|
|
change.SetValid(254)
|
|
assertUint8(t, change, "SetValid()")
|
|
}
|
|
|
|
func TestUint8Scan(t *testing.T) {
|
|
var i Uint8
|
|
err := i.Scan(254)
|
|
maybePanic(err)
|
|
assertUint8(t, i, "scanned uint8")
|
|
|
|
var null Uint8
|
|
err = null.Scan(nil)
|
|
maybePanic(err)
|
|
assertNullUint8(t, null, "scanned null")
|
|
}
|
|
|
|
func assertUint8(t *testing.T, i Uint8, from string) {
|
|
if i.Uint8 != 254 {
|
|
t.Errorf("bad %s uint8: %d ≠ %d\n", from, i.Uint8, 254)
|
|
}
|
|
if !i.Valid {
|
|
t.Error(from, "is invalid, but should be valid")
|
|
}
|
|
}
|
|
|
|
func assertNullUint8(t *testing.T, i Uint8, from string) {
|
|
if i.Valid {
|
|
t.Error(from, "is valid, but should be invalid")
|
|
}
|
|
}
|