mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 12:37:37 +03:00
64 lines
1.7 KiB
Go
64 lines
1.7 KiB
Go
package scanner
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/navidrome/navidrome/conf"
|
|
"github.com/navidrome/navidrome/model"
|
|
"github.com/navidrome/navidrome/tests"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("mapping", func() {
|
|
Describe("sanitizeFieldForSorting", func() {
|
|
BeforeEach(func() {
|
|
conf.Server.IgnoredArticles = "The O"
|
|
})
|
|
It("sanitize accents", func() {
|
|
Expect(sanitizeFieldForSorting("Céu")).To(Equal("Ceu"))
|
|
})
|
|
It("removes articles", func() {
|
|
Expect(sanitizeFieldForSorting("The Beatles")).To(Equal("Beatles"))
|
|
})
|
|
It("removes accented articles", func() {
|
|
Expect(sanitizeFieldForSorting("Õ Blésq Blom")).To(Equal("Blesq Blom"))
|
|
})
|
|
})
|
|
|
|
Describe("mapGenres", func() {
|
|
var mapper *mediaFileMapper
|
|
var gr model.GenreRepository
|
|
var ctx context.Context
|
|
BeforeEach(func() {
|
|
ctx = context.Background()
|
|
ds := &tests.MockDataStore{}
|
|
gr = ds.Genre(ctx)
|
|
gr = newCachedGenreRepository(ctx, gr)
|
|
mapper = newMediaFileMapper("/", gr)
|
|
})
|
|
|
|
It("returns empty if no genres are available", func() {
|
|
g, gs := mapper.mapGenres(nil)
|
|
Expect(g).To(BeEmpty())
|
|
Expect(gs).To(BeEmpty())
|
|
})
|
|
|
|
It("returns genres", func() {
|
|
g, gs := mapper.mapGenres([]string{"Rock", "Electronic"})
|
|
Expect(g).To(Equal("Rock"))
|
|
Expect(gs).To(HaveLen(2))
|
|
Expect(gs[0].Name).To(Equal("Rock"))
|
|
Expect(gs[1].Name).To(Equal("Electronic"))
|
|
})
|
|
|
|
It("parses multi-valued genres", func() {
|
|
g, gs := mapper.mapGenres([]string{"Rock;Dance", "Electronic", "Rock"})
|
|
Expect(g).To(Equal("Rock"))
|
|
Expect(gs).To(HaveLen(3))
|
|
Expect(gs[0].Name).To(Equal("Rock"))
|
|
Expect(gs[1].Name).To(Equal("Dance"))
|
|
Expect(gs[2].Name).To(Equal("Electronic"))
|
|
})
|
|
})
|
|
})
|