mirror of
https://github.com/jackc/pgx.git
synced 2025-05-31 11:42:24 +00:00
Add tests for pgtype.Int2Array
This commit is contained in:
parent
6a3b22cee8
commit
0e8dd862b1
@ -122,6 +122,28 @@ func underlyingSliceType(val interface{}) (interface{}, bool) {
|
|||||||
return nil, false
|
return nil, false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func underlyingPtrSliceType(val interface{}) (interface{}, bool) {
|
||||||
|
refVal := reflect.ValueOf(val)
|
||||||
|
|
||||||
|
if refVal.Kind() != reflect.Ptr {
|
||||||
|
return nil, false
|
||||||
|
}
|
||||||
|
if refVal.IsNil() {
|
||||||
|
return nil, false
|
||||||
|
}
|
||||||
|
|
||||||
|
sliceVal := refVal.Elem().Interface()
|
||||||
|
baseSliceType := reflect.SliceOf(reflect.TypeOf(sliceVal).Elem())
|
||||||
|
ptrBaseSliceType := reflect.PtrTo(baseSliceType)
|
||||||
|
|
||||||
|
if refVal.Type().ConvertibleTo(ptrBaseSliceType) {
|
||||||
|
convVal := refVal.Convert(ptrBaseSliceType)
|
||||||
|
return convVal.Interface(), reflect.TypeOf(convVal.Interface()) != refVal.Type()
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil, false
|
||||||
|
}
|
||||||
|
|
||||||
func int64AssignTo(srcVal int64, srcStatus Status, dst interface{}) error {
|
func int64AssignTo(srcVal int64, srcStatus Status, dst interface{}) error {
|
||||||
if srcStatus == Present {
|
if srcStatus == Present {
|
||||||
switch v := dst.(type) {
|
switch v := dst.(type) {
|
||||||
|
@ -89,6 +89,9 @@ func (src *Int2Array) AssignTo(dst interface{}) error {
|
|||||||
*v = nil
|
*v = nil
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
if originalDst, ok := underlyingPtrSliceType(dst); ok {
|
||||||
|
return src.AssignTo(originalDst)
|
||||||
|
}
|
||||||
return fmt.Errorf("cannot put decode %v into %T", src, dst)
|
return fmt.Errorf("cannot put decode %v into %T", src, dst)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package pgtype_test
|
package pgtype_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/jackc/pgx/pgtype"
|
"github.com/jackc/pgx/pgtype"
|
||||||
@ -50,38 +51,126 @@ func TestInt2ArrayTranscode(t *testing.T) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// func TestInt2ConvertFrom(t *testing.T) {
|
func TestInt2ArrayConvertFrom(t *testing.T) {
|
||||||
// type _int8 int8
|
successfulTests := []struct {
|
||||||
|
source interface{}
|
||||||
|
result pgtype.Int2Array
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
source: []int16{1},
|
||||||
|
result: pgtype.Int2Array{
|
||||||
|
Elements: []pgtype.Int2{{Int: 1, Status: pgtype.Present}},
|
||||||
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
||||||
|
Status: pgtype.Present},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
source: []uint16{1},
|
||||||
|
result: pgtype.Int2Array{
|
||||||
|
Elements: []pgtype.Int2{{Int: 1, Status: pgtype.Present}},
|
||||||
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
||||||
|
Status: pgtype.Present},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
source: (([]int16)(nil)),
|
||||||
|
result: pgtype.Int2Array{Status: pgtype.Null},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
// successfulTests := []struct {
|
for i, tt := range successfulTests {
|
||||||
// source interface{}
|
var r pgtype.Int2Array
|
||||||
// result pgtype.Int2
|
err := r.ConvertFrom(tt.source)
|
||||||
// }{
|
if err != nil {
|
||||||
// {source: int8(1), result: pgtype.Int2{Int: 1, Status: pgtype.Present}},
|
t.Errorf("%d: %v", i, err)
|
||||||
// {source: int16(1), result: pgtype.Int2{Int: 1, Status: pgtype.Present}},
|
}
|
||||||
// {source: int32(1), result: pgtype.Int2{Int: 1, Status: pgtype.Present}},
|
|
||||||
// {source: int64(1), result: pgtype.Int2{Int: 1, Status: pgtype.Present}},
|
|
||||||
// {source: int8(-1), result: pgtype.Int2{Int: -1, Status: pgtype.Present}},
|
|
||||||
// {source: int16(-1), result: pgtype.Int2{Int: -1, Status: pgtype.Present}},
|
|
||||||
// {source: int32(-1), result: pgtype.Int2{Int: -1, Status: pgtype.Present}},
|
|
||||||
// {source: int64(-1), result: pgtype.Int2{Int: -1, Status: pgtype.Present}},
|
|
||||||
// {source: uint8(1), result: pgtype.Int2{Int: 1, Status: pgtype.Present}},
|
|
||||||
// {source: uint16(1), result: pgtype.Int2{Int: 1, Status: pgtype.Present}},
|
|
||||||
// {source: uint32(1), result: pgtype.Int2{Int: 1, Status: pgtype.Present}},
|
|
||||||
// {source: uint64(1), result: pgtype.Int2{Int: 1, Status: pgtype.Present}},
|
|
||||||
// {source: "1", result: pgtype.Int2{Int: 1, Status: pgtype.Present}},
|
|
||||||
// {source: _int8(1), result: pgtype.Int2{Int: 1, Status: pgtype.Present}},
|
|
||||||
// }
|
|
||||||
|
|
||||||
// for i, tt := range successfulTests {
|
if !reflect.DeepEqual(r, tt.result) {
|
||||||
// var r pgtype.Int2
|
t.Errorf("%d: expected %v to convert to %v, but it was %v", i, tt.source, tt.result, r)
|
||||||
// err := r.ConvertFrom(tt.source)
|
}
|
||||||
// if err != nil {
|
}
|
||||||
// t.Errorf("%d: %v", i, err)
|
}
|
||||||
// }
|
|
||||||
|
|
||||||
// if r != tt.result {
|
func TestInt2ArrayAssignTo(t *testing.T) {
|
||||||
// t.Errorf("%d: expected %v to convert to %v, but it was %v", i, tt.source, tt.result, r)
|
var int16Slice []int16
|
||||||
// }
|
var uint16Slice []uint16
|
||||||
// }
|
var namedInt16Slice _int16Slice
|
||||||
// }
|
|
||||||
|
simpleTests := []struct {
|
||||||
|
src pgtype.Int2Array
|
||||||
|
dst interface{}
|
||||||
|
expected interface{}
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
src: pgtype.Int2Array{
|
||||||
|
Elements: []pgtype.Int2{{Int: 1, Status: pgtype.Present}},
|
||||||
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
||||||
|
Status: pgtype.Present,
|
||||||
|
},
|
||||||
|
dst: &int16Slice,
|
||||||
|
expected: []int16{1},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: pgtype.Int2Array{
|
||||||
|
Elements: []pgtype.Int2{{Int: 1, Status: pgtype.Present}},
|
||||||
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
||||||
|
Status: pgtype.Present,
|
||||||
|
},
|
||||||
|
dst: &uint16Slice,
|
||||||
|
expected: []uint16{1},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: pgtype.Int2Array{
|
||||||
|
Elements: []pgtype.Int2{{Int: 1, Status: pgtype.Present}},
|
||||||
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
||||||
|
Status: pgtype.Present,
|
||||||
|
},
|
||||||
|
dst: &namedInt16Slice,
|
||||||
|
expected: _int16Slice{1},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: pgtype.Int2Array{Status: pgtype.Null},
|
||||||
|
dst: &int16Slice,
|
||||||
|
expected: (([]int16)(nil)),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for i, tt := range simpleTests {
|
||||||
|
err := tt.src.AssignTo(tt.dst)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("%d: %v", i, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if dst := reflect.ValueOf(tt.dst).Elem().Interface(); !reflect.DeepEqual(dst, tt.expected) {
|
||||||
|
t.Errorf("%d: expected %v to assign %v, but result was %v", i, tt.src, tt.expected, dst)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
errorTests := []struct {
|
||||||
|
src pgtype.Int2Array
|
||||||
|
dst interface{}
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
src: pgtype.Int2Array{
|
||||||
|
Elements: []pgtype.Int2{{Status: pgtype.Null}},
|
||||||
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
||||||
|
Status: pgtype.Present,
|
||||||
|
},
|
||||||
|
dst: &int16Slice,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
src: pgtype.Int2Array{
|
||||||
|
Elements: []pgtype.Int2{{Int: -1, Status: pgtype.Present}},
|
||||||
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
||||||
|
Status: pgtype.Present,
|
||||||
|
},
|
||||||
|
dst: &uint16Slice,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for i, tt := range errorTests {
|
||||||
|
err := tt.src.AssignTo(tt.dst)
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("%d: expected error but none was returned (%v -> %v)", i, tt.src, tt.dst)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -15,6 +15,7 @@ import (
|
|||||||
type _bool bool
|
type _bool bool
|
||||||
type _int8 int8
|
type _int8 int8
|
||||||
type _int16 int16
|
type _int16 int16
|
||||||
|
type _int16Slice []int16
|
||||||
|
|
||||||
func mustConnectPgx(t testing.TB) *pgx.Conn {
|
func mustConnectPgx(t testing.TB) *pgx.Conn {
|
||||||
config, err := pgx.ParseURI(os.Getenv("DATABASE_URL"))
|
config, err := pgx.ParseURI(os.Getenv("DATABASE_URL"))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user