Implement new Artist refresh

This commit is contained in:
Deluan 2022-12-21 11:30:19 -05:00 committed by Deluan Quintão
parent bce7b163ba
commit 8e640bb858
9 changed files with 170 additions and 167 deletions

View file

@ -1,11 +1,9 @@
package persistence
import (
"context"
"time"
"github.com/Masterminds/squirrel"
"github.com/navidrome/navidrome/model"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
@ -68,26 +66,4 @@ var _ = Describe("Helpers", func() {
Expect(err).To(BeNil())
})
})
Describe("getMostFrequentMbzID", func() {
It(`returns "" when no ids are passed`, func() {
Expect(getMostFrequentMbzID(context.TODO(), " ", "", "")).To(Equal(""))
})
It(`returns the only id passed`, func() {
Expect(getMostFrequentMbzID(context.TODO(), "111 ", "", "")).To(Equal("111"))
})
It(`returns the id with higher frequency`, func() {
Expect(getMostFrequentMbzID(context.TODO(), "1 2 3 4 2", "", "")).To(Equal("2"))
})
})
Describe("getGenres", func() {
It("returns unique genres", func() {
expected := model.Genres{{ID: "1"}, {ID: "2"}, {ID: "3"}, {ID: "5"}, {ID: "4"}}
Expect(getGenres("1 2 3 5 3 2 4 ")).To(Equal(expected))
})
It("returns empty list when there are no genres", func() {
Expect(getGenres("")).To(BeEmpty())
})
})
})