mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-20 01:57:09 +00:00
56 lines
1.1 KiB
Go
56 lines
1.1 KiB
Go
package query
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
)
|
|
|
|
// staticDbProvider returns a static *gorm.DB for temporary test provider overrides.
|
|
type staticDbProvider struct {
|
|
db *gorm.DB
|
|
}
|
|
|
|
// Db returns the static database handle.
|
|
func (p staticDbProvider) Db() *gorm.DB {
|
|
return p.db
|
|
}
|
|
|
|
func TestMain(m *testing.M) {
|
|
log = logrus.StandardLogger()
|
|
log.SetLevel(logrus.TraceLevel)
|
|
|
|
// Remove temporary SQLite files before running the tests.
|
|
fs.PurgeTestDbFiles(".", false)
|
|
|
|
db := entity.InitTestDb(
|
|
os.Getenv("PHOTOPRISM_TEST_DRIVER"),
|
|
os.Getenv("PHOTOPRISM_TEST_DSN"))
|
|
|
|
code := m.Run()
|
|
|
|
// Remove temporary SQLite files after running the tests.
|
|
db.Close()
|
|
|
|
fs.PurgeTestDbFiles(".", false)
|
|
|
|
os.Exit(code)
|
|
}
|
|
|
|
func TestDbDialect(t *testing.T) {
|
|
t.Run("SQLite", func(t *testing.T) {
|
|
assert.Equal(t, "sqlite3", DbDialect())
|
|
})
|
|
}
|
|
|
|
func TestBatchSize(t *testing.T) {
|
|
t.Run("SQLite", func(t *testing.T) {
|
|
assert.Equal(t, 333, BatchSize())
|
|
})
|
|
}
|