mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
36 lines
1.2 KiB
Go
36 lines
1.2 KiB
Go
package model_test
|
|
|
|
import (
|
|
"github.com/navidrome/navidrome/model"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("ParseArtworkID()", func() {
|
|
It("parses album artwork ids", func() {
|
|
id, err := model.ParseArtworkID("al-1234")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(id.Kind).To(Equal(model.KindAlbumArtwork))
|
|
Expect(id.ID).To(Equal("1234"))
|
|
})
|
|
It("parses media file artwork ids", func() {
|
|
id, err := model.ParseArtworkID("mf-a6f8d2b1")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(id.Kind).To(Equal(model.KindMediaFileArtwork))
|
|
Expect(id.ID).To(Equal("a6f8d2b1"))
|
|
})
|
|
It("parses playlists artwork ids", func() {
|
|
id, err := model.ParseArtworkID("pl-18690de0-151b-4d86-81cb-f418a907315a")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(id.Kind).To(Equal(model.KindPlaylistArtwork))
|
|
Expect(id.ID).To(Equal("18690de0-151b-4d86-81cb-f418a907315a"))
|
|
})
|
|
It("fails to parse malformed ids", func() {
|
|
_, err := model.ParseArtworkID("a6f8d2b1")
|
|
Expect(err).To(MatchError("invalid artwork id"))
|
|
})
|
|
It("fails to parse ids with invalid kind", func() {
|
|
_, err := model.ParseArtworkID("xx-a6f8d2b1")
|
|
Expect(err).To(MatchError("invalid artwork kind"))
|
|
})
|
|
})
|