Skip to content

Commit 5445d6a

Browse files
committed
test: add Exec tests and benchmarks
1 parent 8cf69a9 commit 5445d6a

File tree

1 file changed

+132
-1
lines changed

1 file changed

+132
-1
lines changed

sqlite3_test.go

Lines changed: 132 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ package sqlite3
1010

1111
import (
1212
"bytes"
13+
"context"
1314
"database/sql"
1415
"database/sql/driver"
1516
"errors"
@@ -1090,6 +1091,67 @@ func TestExecer(t *testing.T) {
10901091
}
10911092
}
10921093

1094+
func TestExecDriverResult(t *testing.T) {
1095+
setup := func(t *testing.T) *sql.DB {
1096+
db, err := sql.Open("sqlite3", t.TempDir()+"/test.sqlite3")
1097+
if err != nil {
1098+
t.Fatal("Failed to open database:", err)
1099+
}
1100+
if _, err := db.Exec(`CREATE TABLE foo (id INTEGER PRIMARY KEY);`); err != nil {
1101+
t.Fatal(err)
1102+
}
1103+
t.Cleanup(func() { db.Close() })
1104+
return db
1105+
}
1106+
1107+
test := func(t *testing.T, execStmt string, args ...any) {
1108+
db := setup(t)
1109+
res, err := db.Exec(execStmt, args...)
1110+
if err != nil {
1111+
t.Fatal(err)
1112+
}
1113+
rows, err := res.RowsAffected()
1114+
if err != nil {
1115+
t.Fatal(err)
1116+
}
1117+
// We only return the changes from the last statement.
1118+
if rows != 1 {
1119+
t.Errorf("RowsAffected got: %d want: %d", rows, 1)
1120+
}
1121+
id, err := res.LastInsertId()
1122+
if err != nil {
1123+
t.Fatal(err)
1124+
}
1125+
if id != 3 {
1126+
t.Errorf("LastInsertId got: %d want: %d", id, 3)
1127+
}
1128+
var count int64
1129+
err = db.QueryRow(`SELECT COUNT(*) FROM foo WHERE id IN (1, 2, 3);`).Scan(&count)
1130+
if err != nil {
1131+
t.Fatal(err)
1132+
}
1133+
if count != 3 {
1134+
t.Errorf("Expected count to be %d got: %d", 3, count)
1135+
}
1136+
}
1137+
1138+
t.Run("NoArgs", func(t *testing.T) {
1139+
const stmt = `
1140+
INSERT INTO foo(id) VALUES(1);
1141+
INSERT INTO foo(id) VALUES(2);
1142+
INSERT INTO foo(id) VALUES(3);`
1143+
test(t, stmt)
1144+
})
1145+
1146+
t.Run("WithArgs", func(t *testing.T) {
1147+
const stmt = `
1148+
INSERT INTO foo(id) VALUES(?);
1149+
INSERT INTO foo(id) VALUES(?);
1150+
INSERT INTO foo(id) VALUES(?);`
1151+
test(t, stmt, 1, 2, 3)
1152+
})
1153+
}
1154+
10931155
func TestQueryer(t *testing.T) {
10941156
tempFilename := TempFilename(t)
10951157
defer os.Remove(tempFilename)
@@ -2113,6 +2175,10 @@ var tests = []testing.InternalTest{
21132175

21142176
var benchmarks = []testing.InternalBenchmark{
21152177
{Name: "BenchmarkExec", F: benchmarkExec},
2178+
{Name: "BenchmarkExecContext", F: benchmarkExecContext},
2179+
{Name: "BenchmarkExecStep", F: benchmarkExecStep},
2180+
{Name: "BenchmarkExecContextStep", F: benchmarkExecContextStep},
2181+
{Name: "BenchmarkExecTx", F: benchmarkExecTx},
21162182
{Name: "BenchmarkQuery", F: benchmarkQuery},
21172183
{Name: "BenchmarkParams", F: benchmarkParams},
21182184
{Name: "BenchmarkStmt", F: benchmarkStmt},
@@ -2466,10 +2532,75 @@ func testExecEmptyQuery(t *testing.T) {
24662532

24672533
// benchmarkExec is benchmark for exec
24682534
func benchmarkExec(b *testing.B) {
2535+
b.Run("Params", func(b *testing.B) {
2536+
for i := 0; i < b.N; i++ {
2537+
if _, err := db.Exec("select ?;", int64(1)); err != nil {
2538+
panic(err)
2539+
}
2540+
}
2541+
})
2542+
b.Run("NoParams", func(b *testing.B) {
2543+
for i := 0; i < b.N; i++ {
2544+
if _, err := db.Exec("select 1;"); err != nil {
2545+
panic(err)
2546+
}
2547+
}
2548+
})
2549+
}
2550+
2551+
func benchmarkExecContext(b *testing.B) {
2552+
b.Run("Params", func(b *testing.B) {
2553+
ctx, cancel := context.WithCancel(context.Background())
2554+
defer cancel()
2555+
for i := 0; i < b.N; i++ {
2556+
if _, err := db.ExecContext(ctx, "select ?;", int64(1)); err != nil {
2557+
panic(err)
2558+
}
2559+
}
2560+
})
2561+
b.Run("NoParams", func(b *testing.B) {
2562+
ctx, cancel := context.WithCancel(context.Background())
2563+
defer cancel()
2564+
for i := 0; i < b.N; i++ {
2565+
if _, err := db.ExecContext(ctx, "select 1;"); err != nil {
2566+
panic(err)
2567+
}
2568+
}
2569+
})
2570+
}
2571+
2572+
func benchmarkExecTx(b *testing.B) {
24692573
for i := 0; i < b.N; i++ {
2470-
if _, err := db.Exec("select 1"); err != nil {
2574+
tx, err := db.Begin()
2575+
if err != nil {
24712576
panic(err)
24722577
}
2578+
if _, err := tx.Exec("select 1;"); err != nil {
2579+
panic(err)
2580+
}
2581+
if err := tx.Commit(); err != nil {
2582+
panic(err)
2583+
}
2584+
}
2585+
}
2586+
2587+
var largeSelectStmt = strings.Repeat("select 1;\n", 1_000)
2588+
2589+
func benchmarkExecStep(b *testing.B) {
2590+
for n := 0; n < b.N; n++ {
2591+
if _, err := db.Exec(largeSelectStmt); err != nil {
2592+
b.Fatal(err)
2593+
}
2594+
}
2595+
}
2596+
2597+
func benchmarkExecContextStep(b *testing.B) {
2598+
ctx, cancel := context.WithCancel(context.Background())
2599+
defer cancel()
2600+
for n := 0; n < b.N; n++ {
2601+
if _, err := db.ExecContext(ctx, largeSelectStmt); err != nil {
2602+
b.Fatal(err)
2603+
}
24732604
}
24742605
}
24752606

0 commit comments

Comments
 (0)