photoprism/internal/entity/query/query_test.go
Keith Martin b6687b6c29
Tests: Improve isolation and add fixes #5263
* Tests: fix random selection of deleted record causing test failure
* Tests: fix test folders being left after test
* Tests: ensure that required records are available
* Tests: make each package execute against it's own testdata folder to ensure no interpackage test failures
* Tests: add unit tests of CleanupTestFolder
* Tests:  Allow defer in TestMain
* Tests: rename testMain to runTestMain
2026-07-12 05:47:21 +02:00

57 lines
1.3 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
}
// TestMain executes runTestMain returning it's results. It is done this way so that defer can be used to cleanup.
func TestMain(m *testing.M) {
os.Exit(runTestMain(m))
}
func runTestMain(m *testing.M) int {
log = logrus.StandardLogger()
log.SetLevel(logrus.TraceLevel)
// Remove temporary SQLite files before running the tests.
fs.PurgeTestDbFiles(".", false)
// Remove temporary SQLite files after running the tests.
defer fs.PurgeTestDbFiles(".", false)
db := entity.InitTestDb(
os.Getenv("PHOTOPRISM_TEST_DRIVER"),
os.Getenv("PHOTOPRISM_TEST_DSN"))
defer db.Close()
return m.Run()
}
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())
})
}