094289d4cf
Repo: github.com/lbryio/null.go git-subtree-dir: null git-subtree-mainline:75e2abdeac
git-subtree-split:109a79fb20
191 lines
4.3 KiB
Go
191 lines
4.3 KiB
Go
package null
|
|
|
|
import (
|
|
"encoding/json"
|
|
"math"
|
|
"strconv"
|
|
"testing"
|
|
)
|
|
|
|
var (
|
|
uint16JSON = []byte(`65534`)
|
|
)
|
|
|
|
func TestUint16From(t *testing.T) {
|
|
i := Uint16From(65534)
|
|
assertUint16(t, i, "Uint16From()")
|
|
|
|
zero := Uint16From(0)
|
|
if !zero.Valid {
|
|
t.Error("Uint16From(0)", "is invalid, but should be valid")
|
|
}
|
|
}
|
|
|
|
func TestUint16FromPtr(t *testing.T) {
|
|
n := uint16(65534)
|
|
iptr := &n
|
|
i := Uint16FromPtr(iptr)
|
|
assertUint16(t, i, "Uint16FromPtr()")
|
|
|
|
null := Uint16FromPtr(nil)
|
|
assertNullUint16(t, null, "Uint16FromPtr(nil)")
|
|
}
|
|
|
|
func TestUnmarshalUint16(t *testing.T) {
|
|
var i Uint16
|
|
err := json.Unmarshal(uint16JSON, &i)
|
|
maybePanic(err)
|
|
assertUint16(t, i, "uint16 json")
|
|
|
|
var null Uint16
|
|
err = json.Unmarshal(nullJSON, &null)
|
|
maybePanic(err)
|
|
assertNullUint16(t, null, "null json")
|
|
|
|
var badType Uint16
|
|
err = json.Unmarshal(boolJSON, &badType)
|
|
if err == nil {
|
|
panic("err should not be nil")
|
|
}
|
|
assertNullUint16(t, badType, "wrong type json")
|
|
|
|
var invalid Uint16
|
|
err = invalid.UnmarshalJSON(invalidJSON)
|
|
if _, ok := err.(*json.SyntaxError); !ok {
|
|
t.Errorf("expected json.SyntaxError, not %T", err)
|
|
}
|
|
assertNullUint16(t, invalid, "invalid json")
|
|
}
|
|
|
|
func TestUnmarshalNonUintegerNumber16(t *testing.T) {
|
|
var i Uint16
|
|
err := json.Unmarshal(float64JSON, &i)
|
|
if err == nil {
|
|
panic("err should be present; non-integer number coerced to uint16")
|
|
}
|
|
}
|
|
|
|
func TestUnmarshalUint16Overflow(t *testing.T) {
|
|
uint16Overflow := int64(math.MaxUint16)
|
|
|
|
// Max uint16 should decode successfully
|
|
var i Uint16
|
|
err := json.Unmarshal([]byte(strconv.FormatUint(uint64(uint16Overflow), 10)), &i)
|
|
maybePanic(err)
|
|
|
|
// Attempt to overflow
|
|
uint16Overflow++
|
|
err = json.Unmarshal([]byte(strconv.FormatUint(uint64(uint16Overflow), 10)), &i)
|
|
if err == nil {
|
|
panic("err should be present; decoded value overflows uint16")
|
|
}
|
|
}
|
|
|
|
func TestTextUnmarshalUint16(t *testing.T) {
|
|
var i Uint16
|
|
err := i.UnmarshalText([]byte("65534"))
|
|
maybePanic(err)
|
|
assertUint16(t, i, "UnmarshalText() uint16")
|
|
|
|
var blank Uint16
|
|
err = blank.UnmarshalText([]byte(""))
|
|
maybePanic(err)
|
|
assertNullUint16(t, blank, "UnmarshalText() empty uint16")
|
|
}
|
|
|
|
func TestMarshalUint16(t *testing.T) {
|
|
i := Uint16From(65534)
|
|
data, err := json.Marshal(i)
|
|
maybePanic(err)
|
|
assertJSONEquals(t, data, "65534", "non-empty json marshal")
|
|
|
|
// invalid values should be encoded as null
|
|
null := NewUint16(0, false)
|
|
data, err = json.Marshal(null)
|
|
maybePanic(err)
|
|
assertJSONEquals(t, data, "null", "null json marshal")
|
|
}
|
|
|
|
func TestMarshalUint16Text(t *testing.T) {
|
|
i := Uint16From(65534)
|
|
data, err := i.MarshalText()
|
|
maybePanic(err)
|
|
assertJSONEquals(t, data, "65534", "non-empty text marshal")
|
|
|
|
// invalid values should be encoded as null
|
|
null := NewUint16(0, false)
|
|
data, err = null.MarshalText()
|
|
maybePanic(err)
|
|
assertJSONEquals(t, data, "", "null text marshal")
|
|
}
|
|
|
|
func TestUint16Pointer(t *testing.T) {
|
|
i := Uint16From(65534)
|
|
ptr := i.Ptr()
|
|
if *ptr != 65534 {
|
|
t.Errorf("bad %s uint16: %#v ≠ %d\n", "pointer", ptr, 65534)
|
|
}
|
|
|
|
null := NewUint16(0, false)
|
|
ptr = null.Ptr()
|
|
if ptr != nil {
|
|
t.Errorf("bad %s uint16: %#v ≠ %s\n", "nil pointer", ptr, "nil")
|
|
}
|
|
}
|
|
|
|
func TestUint16IsNull(t *testing.T) {
|
|
i := Uint16From(65534)
|
|
if i.IsNull() {
|
|
t.Errorf("IsNull() should be false")
|
|
}
|
|
|
|
null := NewUint16(0, false)
|
|
if !null.IsNull() {
|
|
t.Errorf("IsNull() should be true")
|
|
}
|
|
|
|
zero := NewUint16(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 TestUint16SetValid(t *testing.T) {
|
|
change := NewUint16(0, false)
|
|
assertNullUint16(t, change, "SetValid()")
|
|
change.SetValid(65534)
|
|
assertUint16(t, change, "SetValid()")
|
|
}
|
|
|
|
func TestUint16Scan(t *testing.T) {
|
|
var i Uint16
|
|
err := i.Scan(65534)
|
|
maybePanic(err)
|
|
assertUint16(t, i, "scanned uint16")
|
|
|
|
var null Uint16
|
|
err = null.Scan(nil)
|
|
maybePanic(err)
|
|
assertNullUint16(t, null, "scanned null")
|
|
}
|
|
|
|
func assertUint16(t *testing.T, i Uint16, from string) {
|
|
if i.Uint16 != 65534 {
|
|
t.Errorf("bad %s uint16: %d ≠ %d\n", from, i.Uint16, 65534)
|
|
}
|
|
if !i.Valid {
|
|
t.Error(from, "is invalid, but should be valid")
|
|
}
|
|
}
|
|
|
|
func assertNullUint16(t *testing.T, i Uint16, from string) {
|
|
if i.Valid {
|
|
t.Error(from, "is valid, but should be invalid")
|
|
}
|
|
}
|