mirror of https://github.com/jackc/pgx.git
added tests
parent
b4d72d4fce
commit
9b6d3809d6
|
@ -2,6 +2,7 @@ package pgx_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
@ -802,3 +803,47 @@ func TestConnCopyFromAutomaticStringConversion(t *testing.T) {
|
||||||
|
|
||||||
ensureConnValid(t, conn)
|
ensureConnValid(t, conn)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCopyFromFunc(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
|
||||||
|
defer closeConn(t, conn)
|
||||||
|
|
||||||
|
mustExec(t, conn, `create temporary table foo(
|
||||||
|
a int
|
||||||
|
)`)
|
||||||
|
|
||||||
|
dataCh := make(chan int, 1)
|
||||||
|
closeChanErr := errors.New("closed channel")
|
||||||
|
|
||||||
|
const channelItems = 10
|
||||||
|
go func() {
|
||||||
|
for i := 0; i < channelItems; i++ {
|
||||||
|
dataCh <- i
|
||||||
|
}
|
||||||
|
close(dataCh)
|
||||||
|
}()
|
||||||
|
|
||||||
|
copyCount, err := conn.CopyFrom(context.Background(), pgx.Identifier{"foo"}, []string{"a"},
|
||||||
|
pgx.CopyFromFunc(func() ([]any, error) {
|
||||||
|
v, ok := <-dataCh
|
||||||
|
if !ok {
|
||||||
|
return nil, closeChanErr
|
||||||
|
}
|
||||||
|
return []any{v}, nil
|
||||||
|
}))
|
||||||
|
|
||||||
|
fmt.Print(copyCount, err, "\n")
|
||||||
|
|
||||||
|
require.ErrorIs(t, err, closeChanErr)
|
||||||
|
require.EqualValues(t, channelItems, copyCount)
|
||||||
|
|
||||||
|
rows, err := conn.Query(context.Background(), "select * from foo order by a")
|
||||||
|
require.NoError(t, err)
|
||||||
|
nums, err := pgx.CollectRows(rows, pgx.RowTo[int64])
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Equal(t, []int64{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, nums)
|
||||||
|
|
||||||
|
ensureConnValid(t, conn)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue