ce5be947b4
Revert fixture fixes for postgres Use postgres connection string with spaces instead of url Fix label order Make postgres tests in ci less verbose Add sequence update script Skip resets in postgres Remove option to skip resets in postgres Make postgres tests in ci verboseq Update test fixtures database Fix file tests on postgres Add postgres options to sample config Make sure tests init test fixtures before running the actual tests Fix issues with IDs too big to fit in an int Fix duplicate auto incremented IDs Refactor / Fix team tests Refactor team member tests Fix team member create Fix label test Fix getting labels Fix test fixtures for postgresql Fix connection string params Disable ssl mode on postgres integration tests Disable ssl mode on postgres tests Use sprintf to create the connection string for postgresql fixup! Add postgres support Add postgres support Added generate as a make dependency for make build Clarify docs on building Co-authored-by: kolaente <k@knt.li> Co-authored-by: Jan Tojnar <jtojnar@gmail.com> Reviewed-on: https://kolaente.dev/vikunja/api/pulls/135
71 lines
1.6 KiB
Go
71 lines
1.6 KiB
Go
package testfixtures
|
|
|
|
import (
|
|
"database/sql"
|
|
"fmt"
|
|
)
|
|
|
|
const (
|
|
paramTypeDollar = iota + 1
|
|
paramTypeQuestion
|
|
paramTypeAtSign
|
|
)
|
|
|
|
type loadFunction func(tx *sql.Tx) error
|
|
|
|
type helper interface {
|
|
init(*sql.DB) error
|
|
disableReferentialIntegrity(*sql.DB, loadFunction) error
|
|
paramType() int
|
|
databaseName(queryable) (string, error)
|
|
tableNames(queryable) ([]string, error)
|
|
isTableModified(queryable, string) (bool, error)
|
|
afterLoad(queryable) error
|
|
quoteKeyword(string) string
|
|
whileInsertOnTable(*sql.Tx, string, func() error) error
|
|
}
|
|
|
|
type queryable interface {
|
|
Exec(string, ...interface{}) (sql.Result, error)
|
|
Query(string, ...interface{}) (*sql.Rows, error)
|
|
QueryRow(string, ...interface{}) *sql.Row
|
|
}
|
|
|
|
// batchSplitter is an interface with method which returns byte slice for
|
|
// splitting SQL batches. This need to split sql statements and run its
|
|
// separately.
|
|
//
|
|
// For Microsoft SQL Server batch splitter is "GO". For details see
|
|
// https://docs.microsoft.com/en-us/sql/t-sql/language-elements/sql-server-utilities-statements-go
|
|
type batchSplitter interface {
|
|
splitter() []byte
|
|
}
|
|
|
|
var (
|
|
_ helper = &mySQL{}
|
|
_ helper = &postgreSQL{}
|
|
_ helper = &sqlite{}
|
|
_ helper = &sqlserver{}
|
|
)
|
|
|
|
type baseHelper struct{}
|
|
|
|
func (baseHelper) init(_ *sql.DB) error {
|
|
return nil
|
|
}
|
|
|
|
func (baseHelper) quoteKeyword(str string) string {
|
|
return fmt.Sprintf(`"%s"`, str)
|
|
}
|
|
|
|
func (baseHelper) whileInsertOnTable(_ *sql.Tx, _ string, fn func() error) error {
|
|
return fn()
|
|
}
|
|
|
|
func (baseHelper) isTableModified(_ queryable, _ string) (bool, error) {
|
|
return true, nil
|
|
}
|
|
|
|
func (baseHelper) afterLoad(_ queryable) error {
|
|
return nil
|
|
}
|