photoprism/internal/entity/query/query_test.go
2025-11-23 22:34:50 +10:00

46 lines
1 KiB
Go

package query
import (
"os"
"testing"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"github.com/photoprism/photoprism/internal/entity"
"github.com/photoprism/photoprism/pkg/fs"
)
// TestMain executes testMain returning it's results. It is done this way so that defer can be used to cleanup.
func TestMain(m *testing.M) {
os.Exit(testMain(m))
}
func testMain(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())
})
}