mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Log warning when artist has a MBID of Various Artists
This commit is contained in:
parent
e61cf3217d
commit
44e7502aef
5 changed files with 32 additions and 29 deletions
|
@ -53,7 +53,7 @@ var _ = Describe("Helpers", func() {
|
|||
})
|
||||
})
|
||||
|
||||
Describe("Exists", func() {
|
||||
Describe("exists", func() {
|
||||
It("constructs the correct EXISTS query", func() {
|
||||
e := exists("album", squirrel.Eq{"id": 1})
|
||||
sql, args, err := e.ToSql()
|
||||
|
@ -63,15 +63,15 @@ var _ = Describe("Helpers", func() {
|
|||
})
|
||||
})
|
||||
|
||||
Describe("getMbzId", func() {
|
||||
Describe("getMostFrequentMbzID", func() {
|
||||
It(`returns "" when no ids are passed`, func() {
|
||||
Expect(getMbzId(context.TODO(), " ", "", "")).To(Equal(""))
|
||||
Expect(getMostFrequentMbzID(context.TODO(), " ", "", "")).To(Equal(""))
|
||||
})
|
||||
It(`returns the only id passed`, func() {
|
||||
Expect(getMbzId(context.TODO(), "1234 ", "", "")).To(Equal("1234"))
|
||||
Expect(getMostFrequentMbzID(context.TODO(), "111 ", "", "")).To(Equal("111"))
|
||||
})
|
||||
It(`returns the id with higher frequency`, func() {
|
||||
Expect(getMbzId(context.TODO(), "1 2 3 4 1", "", "")).To(Equal("1"))
|
||||
Expect(getMostFrequentMbzID(context.TODO(), "1 2 3 4 2", "", "")).To(Equal("2"))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue