photoprism/internal/query/query_test.go
Michael Mayer 05e29170bf Backend: Refactor SQL batch size limit #3124 #3742
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-10-15 09:46:04 +02:00

38 lines
655 B
Go

package query
import (
"os"
"testing"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"github.com/photoprism/photoprism/internal/entity"
)
func TestMain(m *testing.M) {
log = logrus.StandardLogger()
log.SetLevel(logrus.TraceLevel)
db := entity.InitTestDb(
os.Getenv("PHOTOPRISM_TEST_DRIVER"),
os.Getenv("PHOTOPRISM_TEST_DSN"))
defer db.Close()
code := m.Run()
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())
})
}