Load mime_types from external file

This commit is contained in:
Deluan 2024-04-28 12:18:24 -04:00
parent 28f7ef43c1
commit 27875ba2dd
5 changed files with 102 additions and 67 deletions

View file

@ -13,6 +13,7 @@ import (
"github.com/navidrome/navidrome/conf"
"github.com/navidrome/navidrome/conf/configtest"
"github.com/navidrome/navidrome/conf/mime"
"github.com/navidrome/navidrome/consts"
"github.com/navidrome/navidrome/model"
"github.com/navidrome/navidrome/tests"
@ -223,7 +224,7 @@ var _ = Describe("serveIndex", func() {
serveIndex(ds, fs, nil)(w, r)
config := extractAppConfig(w.Body.String())
expected := strings.ToUpper(strings.Join(consts.LosslessFormats, ","))
expected := strings.ToUpper(strings.Join(mime.LosslessFormats, ","))
Expect(config).To(HaveKeyWithValue("losslessFormats", expected))
})