forked from mirror/go-sqlite3
Moved Transaction Test
This commit is contained in:
parent
026dd10f0d
commit
81906d7428
|
@ -719,65 +719,6 @@ func TestNull(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestTransaction(t *testing.T) {
|
|
||||||
tempFilename := TempFilename(t)
|
|
||||||
defer os.Remove(tempFilename)
|
|
||||||
db, err := sql.Open("sqlite3", tempFilename)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Failed to open database:", err)
|
|
||||||
}
|
|
||||||
defer db.Close()
|
|
||||||
|
|
||||||
_, err = db.Exec("CREATE TABLE foo(id INTEGER)")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Failed to create table:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
tx, err := db.Begin()
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Failed to begin transaction:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = tx.Exec("INSERT INTO foo(id) VALUES(1)")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Failed to insert null:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
rows, err := tx.Query("SELECT id from foo")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Unable to query foo table:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = tx.Rollback()
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Failed to rollback transaction:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if rows.Next() {
|
|
||||||
t.Fatal("Unable to query results:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
tx, err = db.Begin()
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Failed to begin transaction:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = tx.Exec("INSERT INTO foo(id) VALUES(1)")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Failed to insert null:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = tx.Commit()
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal("Failed to commit transaction:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
rows, err = tx.Query("SELECT id from foo")
|
|
||||||
if err == nil {
|
|
||||||
t.Fatal("Expected failure to query")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestWAL(t *testing.T) {
|
func TestWAL(t *testing.T) {
|
||||||
tempFilename := TempFilename(t)
|
tempFilename := TempFilename(t)
|
||||||
defer os.Remove(tempFilename)
|
defer os.Remove(tempFilename)
|
||||||
|
|
|
@ -0,0 +1,73 @@
|
||||||
|
// Copyright (C) 2018 The Go-SQLite3 Authors.
|
||||||
|
//
|
||||||
|
// Use of this source code is governed by an MIT-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
// +build cgo
|
||||||
|
|
||||||
|
package sqlite3
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestTransaction(t *testing.T) {
|
||||||
|
tempFilename := TempFilename(t)
|
||||||
|
defer os.Remove(tempFilename)
|
||||||
|
db, err := sql.Open("sqlite3", tempFilename)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Failed to open database:", err)
|
||||||
|
}
|
||||||
|
defer db.Close()
|
||||||
|
|
||||||
|
_, err = db.Exec("CREATE TABLE foo(id INTEGER)")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Failed to create table:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
tx, err := db.Begin()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Failed to begin transaction:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = tx.Exec("INSERT INTO foo(id) VALUES(1)")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Failed to insert null:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
rows, err := tx.Query("SELECT id from foo")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Unable to query foo table:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
err = tx.Rollback()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Failed to rollback transaction:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if rows.Next() {
|
||||||
|
t.Fatal("Unable to query results:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
tx, err = db.Begin()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Failed to begin transaction:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = tx.Exec("INSERT INTO foo(id) VALUES(1)")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Failed to insert null:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
err = tx.Commit()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Failed to commit transaction:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
rows, err = tx.Query("SELECT id from foo")
|
||||||
|
if err == nil {
|
||||||
|
t.Fatal("Expected failure to query")
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue