forked from kevadesu/forgejo
Unit tests for token and update models
This commit is contained in:
parent
c0904f1942
commit
de8b73dd92
41 changed files with 11919 additions and 0 deletions
40
vendor/gopkg.in/testfixtures.v2/sqlite.go
generated
vendored
Normal file
40
vendor/gopkg.in/testfixtures.v2/sqlite.go
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
package testfixtures
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
"path/filepath"
|
||||
)
|
||||
|
||||
// SQLite is the SQLite Helper for this package
|
||||
type SQLite struct {
|
||||
baseHelper
|
||||
}
|
||||
|
||||
func (*SQLite) paramType() int {
|
||||
return paramTypeQuestion
|
||||
}
|
||||
|
||||
func (*SQLite) databaseName(db *sql.DB) (dbName string) {
|
||||
var seq int
|
||||
var main string
|
||||
db.QueryRow("PRAGMA database_list").Scan(&seq, &main, &dbName)
|
||||
dbName = filepath.Base(dbName)
|
||||
return
|
||||
}
|
||||
|
||||
func (*SQLite) disableReferentialIntegrity(db *sql.DB, loadFn loadFunction) error {
|
||||
tx, err := db.Begin()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if _, err = tx.Exec("PRAGMA defer_foreign_keys = ON"); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if err = loadFn(tx); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return tx.Commit()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue