sq/drivers/postgres/internal_test.go

74 lines
1.6 KiB
Go
Raw Normal View History

2020-08-06 20:58:47 +03:00
package postgres
import (
"testing"
"github.com/jackc/pgx/v5/pgconn"
2020-08-06 20:58:47 +03:00
"github.com/stretchr/testify/require"
)
// Export for testing.
var (
GetTableColumnNames = getTableColumnNames
IsErrRelationNotExist = isErrRelationNotExist
)
2020-08-06 20:58:47 +03:00
func TestPlaceholders(t *testing.T) {
testCases := []struct {
numCols int
numRows int
want string
}{
{numCols: 0, numRows: 0, want: ""},
{numCols: 1, numRows: 1, want: "($1)"},
{numCols: 2, numRows: 1, want: "($1, $2)"},
{numCols: 1, numRows: 2, want: "($1), ($2)"},
{numCols: 2, numRows: 2, want: "($1, $2), ($3, $4)"},
2020-08-06 20:58:47 +03:00
}
for _, tc := range testCases {
got := placeholders(tc.numCols, tc.numRows)
require.Equal(t, tc.want, got)
2020-08-06 20:58:47 +03:00
}
}
func TestReplacePlaceholders(t *testing.T) {
testCases := map[string]string{
"": "",
"hello": "hello",
"?": "$1",
"??": "$1$2",
" ? ": " $1 ",
"(?, ?)": "($1, $2)",
"(?, ?, ?)": "($1, $2, $3)",
" (? , ? , ?) ": " ($1 , $2 , $3) ",
}
for input, want := range testCases {
got := replacePlaceholders(input)
require.Equal(t, want, got)
}
}
func Test_idSanitize(t *testing.T) {
testCases := map[string]string{
`tbl_name`: `"tbl_name"`,
}
for input, want := range testCases {
got := idSanitize(input)
require.Equal(t, want, got)
}
}
func TestIsErrTooManyConnections(t *testing.T) {
var err error
err = &pgconn.PgError{Code: "53300"}
require.True(t, isErrTooManyConnections(err))
// Test with a wrapped error
err = errw(err)
require.True(t, isErrTooManyConnections(err))
}