mirror of https://github.com/jackc/pgx.git
153 lines
3.8 KiB
Go
153 lines
3.8 KiB
Go
package pgtype_test
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/jackc/pgx/pgtype"
|
|
)
|
|
|
|
func TestBoolArrayTranscode(t *testing.T) {
|
|
testSuccessfulTranscode(t, "bool[]", []interface{}{
|
|
&pgtype.BoolArray{
|
|
Elements: nil,
|
|
Dimensions: nil,
|
|
Status: pgtype.Present,
|
|
},
|
|
&pgtype.BoolArray{
|
|
Elements: []pgtype.Bool{
|
|
pgtype.Bool{Bool: true, Status: pgtype.Present},
|
|
pgtype.Bool{Status: pgtype.Null},
|
|
},
|
|
Dimensions: []pgtype.ArrayDimension{{Length: 2, LowerBound: 1}},
|
|
Status: pgtype.Present,
|
|
},
|
|
&pgtype.BoolArray{Status: pgtype.Null},
|
|
&pgtype.BoolArray{
|
|
Elements: []pgtype.Bool{
|
|
pgtype.Bool{Bool: true, Status: pgtype.Present},
|
|
pgtype.Bool{Bool: true, Status: pgtype.Present},
|
|
pgtype.Bool{Bool: false, Status: pgtype.Present},
|
|
pgtype.Bool{Bool: true, Status: pgtype.Present},
|
|
pgtype.Bool{Status: pgtype.Null},
|
|
pgtype.Bool{Bool: false, Status: pgtype.Present},
|
|
},
|
|
Dimensions: []pgtype.ArrayDimension{{Length: 3, LowerBound: 1}, {Length: 2, LowerBound: 1}},
|
|
Status: pgtype.Present,
|
|
},
|
|
&pgtype.BoolArray{
|
|
Elements: []pgtype.Bool{
|
|
pgtype.Bool{Bool: true, Status: pgtype.Present},
|
|
pgtype.Bool{Bool: false, Status: pgtype.Present},
|
|
pgtype.Bool{Bool: true, Status: pgtype.Present},
|
|
pgtype.Bool{Bool: false, Status: pgtype.Present},
|
|
},
|
|
Dimensions: []pgtype.ArrayDimension{
|
|
{Length: 2, LowerBound: 4},
|
|
{Length: 2, LowerBound: 2},
|
|
},
|
|
Status: pgtype.Present,
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestBoolArrayConvertFrom(t *testing.T) {
|
|
successfulTests := []struct {
|
|
source interface{}
|
|
result pgtype.BoolArray
|
|
}{
|
|
{
|
|
source: []bool{true},
|
|
result: pgtype.BoolArray{
|
|
Elements: []pgtype.Bool{{Bool: true, Status: pgtype.Present}},
|
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
|
Status: pgtype.Present},
|
|
},
|
|
{
|
|
source: (([]bool)(nil)),
|
|
result: pgtype.BoolArray{Status: pgtype.Null},
|
|
},
|
|
}
|
|
|
|
for i, tt := range successfulTests {
|
|
var r pgtype.BoolArray
|
|
err := r.ConvertFrom(tt.source)
|
|
if err != nil {
|
|
t.Errorf("%d: %v", i, err)
|
|
}
|
|
|
|
if !reflect.DeepEqual(r, tt.result) {
|
|
t.Errorf("%d: expected %v to convert to %v, but it was %v", i, tt.source, tt.result, r)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestBoolArrayAssignTo(t *testing.T) {
|
|
var boolSlice []bool
|
|
type _boolSlice []bool
|
|
var namedBoolSlice _boolSlice
|
|
|
|
simpleTests := []struct {
|
|
src pgtype.BoolArray
|
|
dst interface{}
|
|
expected interface{}
|
|
}{
|
|
{
|
|
src: pgtype.BoolArray{
|
|
Elements: []pgtype.Bool{{Bool: true, Status: pgtype.Present}},
|
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
|
Status: pgtype.Present,
|
|
},
|
|
dst: &boolSlice,
|
|
expected: []bool{true},
|
|
},
|
|
{
|
|
src: pgtype.BoolArray{
|
|
Elements: []pgtype.Bool{{Bool: true, Status: pgtype.Present}},
|
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
|
Status: pgtype.Present,
|
|
},
|
|
dst: &namedBoolSlice,
|
|
expected: _boolSlice{true},
|
|
},
|
|
{
|
|
src: pgtype.BoolArray{Status: pgtype.Null},
|
|
dst: &boolSlice,
|
|
expected: (([]bool)(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.BoolArray
|
|
dst interface{}
|
|
}{
|
|
{
|
|
src: pgtype.BoolArray{
|
|
Elements: []pgtype.Bool{{Status: pgtype.Null}},
|
|
Dimensions: []pgtype.ArrayDimension{{LowerBound: 1, Length: 1}},
|
|
Status: pgtype.Present,
|
|
},
|
|
dst: &boolSlice,
|
|
},
|
|
}
|
|
|
|
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)
|
|
}
|
|
}
|
|
|
|
}
|