Tests: Change SQLite Memory DSN to ":memory:?cache=shared"

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer 2023-02-14 21:47:31 +01:00
parent 5243cbc08c
commit 95f6df6fe0
2 changed files with 6 additions and 4 deletions

View file

@ -15,7 +15,7 @@ const (
MySQL = "mysql"
SQLite3 = "sqlite3"
SQLiteTestDB = ".test.db"
SQLiteMemoryDSN = ":memory:"
SQLiteMemoryDSN = ":memory:?cache=shared"
)
// dbConn is the global gorm.DB connection provider.

View file

@ -173,7 +173,7 @@ func TestAlbums(t *testing.T) {
assert.Equal(t, 2, len(result))
})
t.Run("search folders", func(t *testing.T) {
t.Run("Folders", func(t *testing.T) {
query := form.NewAlbumSearch("19")
result, err := Albums(query)
@ -183,7 +183,7 @@ func TestAlbums(t *testing.T) {
assert.Equal(t, "April 1990", result[0].AlbumTitle)
})
t.Run("search states", func(t *testing.T) {
t.Run("California", func(t *testing.T) {
query := form.NewAlbumSearch("california")
result, err := Albums(query)
@ -191,9 +191,11 @@ func TestAlbums(t *testing.T) {
t.Fatal(err)
}
t.Logf("albums: %#v", result)
assert.Equal(t, 3, len(result))
})
t.Run("search albums", func(t *testing.T) {
t.Run("Blue", func(t *testing.T) {
query := form.NewAlbumSearch("blue")
result, err := Albums(query)