mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-01 03:14:02 +03:00
ac7535609d
* lint fixes * lint gosec
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
package postgres
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var GetTableColumnNames = getTableColumnNames
|
|
|
|
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)"},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
got := placeholders(tc.numCols, tc.numRows)
|
|
require.Equal(t, tc.want, got)
|
|
}
|
|
}
|
|
|
|
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)
|
|
}
|
|
}
|