You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
154 lines
3.8 KiB
154 lines
3.8 KiB
8 years ago
|
package testfixtures
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
"fmt"
|
||
6 years ago
|
"strings"
|
||
8 years ago
|
)
|
||
|
|
||
4 years ago
|
type sqlserver struct {
|
||
8 years ago
|
baseHelper
|
||
|
|
||
4 years ago
|
paramTypeCache int
|
||
|
tables []string
|
||
8 years ago
|
}
|
||
|
|
||
4 years ago
|
func (h *sqlserver) init(db *sql.DB) error {
|
||
8 years ago
|
var err error
|
||
|
|
||
4 years ago
|
// NOTE(@andreynering): The SQL Server lib (github.com/denisenkom/go-mssqldb)
|
||
|
// supports both the "?" style (when using the deprecated "mssql" driver)
|
||
|
// and the "@p1" style (when using the new "sqlserver" driver).
|
||
|
//
|
||
|
// Since we don't have a way to know which driver it's been used,
|
||
|
// this is a small hack to detect the allowed param style.
|
||
|
var v int
|
||
|
if err := db.QueryRow("SELECT ?", 1).Scan(&v); err == nil && v == 1 {
|
||
|
h.paramTypeCache = paramTypeQuestion
|
||
|
} else {
|
||
|
h.paramTypeCache = paramTypeAtSign
|
||
|
}
|
||
|
|
||
6 years ago
|
h.tables, err = h.tableNames(db)
|
||
8 years ago
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
4 years ago
|
func (h *sqlserver) paramType() int {
|
||
|
return h.paramTypeCache
|
||
8 years ago
|
}
|
||
|
|
||
4 years ago
|
func (*sqlserver) quoteKeyword(s string) string {
|
||
6 years ago
|
parts := strings.Split(s, ".")
|
||
|
for i, p := range parts {
|
||
|
parts[i] = fmt.Sprintf(`[%s]`, p)
|
||
|
}
|
||
|
return strings.Join(parts, ".")
|
||
8 years ago
|
}
|
||
|
|
||
4 years ago
|
func (*sqlserver) databaseName(q queryable) (string, error) {
|
||
6 years ago
|
var dbName string
|
||
|
err := q.QueryRow("SELECT DB_NAME()").Scan(&dbName)
|
||
|
return dbName, err
|
||
8 years ago
|
}
|
||
|
|
||
4 years ago
|
func (*sqlserver) tableNames(q queryable) ([]string, error) {
|
||
|
rows, err := q.Query("SELECT table_schema + '.' + table_name FROM information_schema.tables WHERE table_name <> 'spt_values'")
|
||
8 years ago
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
defer rows.Close()
|
||
6 years ago
|
|
||
|
var tables []string
|
||
8 years ago
|
for rows.Next() {
|
||
|
var table string
|
||
6 years ago
|
if err = rows.Scan(&table); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
8 years ago
|
tables = append(tables, table)
|
||
|
}
|
||
6 years ago
|
if err = rows.Err(); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
8 years ago
|
return tables, nil
|
||
|
}
|
||
|
|
||
4 years ago
|
func (h *sqlserver) tableHasIdentityColumn(q queryable, tableName string) (bool, error) {
|
||
|
sql := fmt.Sprintf(`
|
||
6 years ago
|
SELECT COUNT(*)
|
||
|
FROM SYS.IDENTITY_COLUMNS
|
||
4 years ago
|
WHERE OBJECT_ID = OBJECT_ID('%s')
|
||
|
`, tableName)
|
||
8 years ago
|
var count int
|
||
4 years ago
|
if err := q.QueryRow(sql).Scan(&count); err != nil {
|
||
|
return false, err
|
||
|
}
|
||
|
return count > 0, nil
|
||
8 years ago
|
|
||
|
}
|
||
|
|
||
4 years ago
|
func (h *sqlserver) whileInsertOnTable(tx *sql.Tx, tableName string, fn func() error) (err error) {
|
||
|
hasIdentityColumn, err := h.tableHasIdentityColumn(tx, tableName)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
if hasIdentityColumn {
|
||
6 years ago
|
defer func() {
|
||
|
_, err2 := tx.Exec(fmt.Sprintf("SET IDENTITY_INSERT %s OFF", h.quoteKeyword(tableName)))
|
||
|
if err2 != nil && err == nil {
|
||
4 years ago
|
err = fmt.Errorf("testfixtures: could not disable identity insert: %w", err2)
|
||
6 years ago
|
}
|
||
|
}()
|
||
|
|
||
8 years ago
|
_, err := tx.Exec(fmt.Sprintf("SET IDENTITY_INSERT %s ON", h.quoteKeyword(tableName)))
|
||
|
if err != nil {
|
||
4 years ago
|
return fmt.Errorf("testfixtures: could not enable identity insert: %w", err)
|
||
8 years ago
|
}
|
||
|
}
|
||
|
return fn()
|
||
|
}
|
||
|
|
||
4 years ago
|
func (h *sqlserver) disableReferentialIntegrity(db *sql.DB, loadFn loadFunction) (err error) {
|
||
8 years ago
|
// ensure the triggers are re-enable after all
|
||
|
defer func() {
|
||
6 years ago
|
var sql string
|
||
8 years ago
|
for _, table := range h.tables {
|
||
|
sql += fmt.Sprintf("ALTER TABLE %s WITH CHECK CHECK CONSTRAINT ALL;", h.quoteKeyword(table))
|
||
|
}
|
||
6 years ago
|
if _, err2 := db.Exec(sql); err2 != nil && err == nil {
|
||
|
err = err2
|
||
8 years ago
|
}
|
||
|
}()
|
||
|
|
||
6 years ago
|
var sql string
|
||
8 years ago
|
for _, table := range h.tables {
|
||
|
sql += fmt.Sprintf("ALTER TABLE %s NOCHECK CONSTRAINT ALL;", h.quoteKeyword(table))
|
||
|
}
|
||
|
if _, err := db.Exec(sql); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
tx, err := db.Begin()
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
6 years ago
|
defer tx.Rollback()
|
||
8 years ago
|
|
||
|
if err = loadFn(tx); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return tx.Commit()
|
||
|
}
|
||
6 years ago
|
|
||
|
// splitter is a batchSplitter interface implementation. We need it for
|
||
|
// SQL Server because commands like a `CREATE SCHEMA...` and a `CREATE TABLE...`
|
||
|
// could not be executed in the same batch.
|
||
|
// See https://docs.microsoft.com/en-us/previous-versions/sql/sql-server-2008-r2/ms175502(v=sql.105)#rules-for-using-batches
|
||
4 years ago
|
func (*sqlserver) splitter() []byte {
|
||
6 years ago
|
return []byte("GO\n")
|
||
|
}
|