/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
internal/entity/entity_test.go
40 строк
956 B
Keith Martin
Tests: Improve isolation and add fixes #5263
12 июл 2026, 06:47
Не верифицирован
12 июл 2026, 06:47
b6687b6
Код
Авторство
О чём код?
package entity import ( "os" "testing" "github.com/sirupsen/logrus" "github.com/stretchr/testify/assert" "github.com/photoprism/photoprism/internal/event" "github.com/photoprism/photoprism/pkg/fs" ) // 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) event.AuditLog = log // Remove temporary SQLite files before running the tests. fs.PurgeTestDbFiles(".", false) // Remove temporary SQLite files after running the tests. defer fs.PurgeTestDbFiles(".", false) db := InitTestDb( os.Getenv("PHOTOPRISM_TEST_DRIVER"), os.Getenv("PHOTOPRISM_TEST_DSN")) defer db.Close() return m.Run() } func TestTypeString(t *testing.T) { assert.Equal(t, "unknown", TypeString("")) assert.Equal(t, "foo", TypeString("foo")) }