mirror of https://github.com/jackc/pgx.git
74 lines
1.6 KiB
Go
74 lines
1.6 KiB
Go
package pgtype_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
"github.com/jackc/pgx/v5/pgtype/testutil"
|
|
)
|
|
|
|
func isExpectedEqPath(a interface{}) func(interface{}) bool {
|
|
return func(v interface{}) bool {
|
|
ap := a.(pgtype.Path)
|
|
vp := v.(pgtype.Path)
|
|
|
|
if !(ap.Valid == vp.Valid && ap.Closed == vp.Closed && len(ap.P) == len(vp.P)) {
|
|
return false
|
|
}
|
|
|
|
for i := range ap.P {
|
|
if ap.P[i] != vp.P[i] {
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|
|
}
|
|
|
|
func TestPathTranscode(t *testing.T) {
|
|
testutil.RunTranscodeTests(t, "path", []testutil.TranscodeTestCase{
|
|
{
|
|
pgtype.Path{
|
|
P: []pgtype.Vec2{{3.14, 1.678901234}, {7.1, 5.234}},
|
|
Closed: false,
|
|
Valid: true,
|
|
},
|
|
new(pgtype.Path),
|
|
isExpectedEqPath(pgtype.Path{
|
|
P: []pgtype.Vec2{{3.14, 1.678901234}, {7.1, 5.234}},
|
|
Closed: false,
|
|
Valid: true,
|
|
}),
|
|
},
|
|
{
|
|
pgtype.Path{
|
|
P: []pgtype.Vec2{{3.14, 1.678}, {7.1, 5.234}, {23.1, 9.34}},
|
|
Closed: true,
|
|
Valid: true,
|
|
},
|
|
new(pgtype.Path),
|
|
isExpectedEqPath(pgtype.Path{
|
|
P: []pgtype.Vec2{{3.14, 1.678}, {7.1, 5.234}, {23.1, 9.34}},
|
|
Closed: true,
|
|
Valid: true,
|
|
}),
|
|
},
|
|
{
|
|
pgtype.Path{
|
|
P: []pgtype.Vec2{{7.1, 1.678}, {-13.14, -5.234}},
|
|
Closed: true,
|
|
Valid: true,
|
|
},
|
|
new(pgtype.Path),
|
|
isExpectedEqPath(pgtype.Path{
|
|
P: []pgtype.Vec2{{7.1, 1.678}, {-13.14, -5.234}},
|
|
Closed: true,
|
|
Valid: true,
|
|
}),
|
|
},
|
|
{pgtype.Path{}, new(pgtype.Path), isExpectedEqPath(pgtype.Path{})},
|
|
{nil, new(pgtype.Path), isExpectedEqPath(pgtype.Path{})},
|
|
})
|
|
}
|