mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
88 lines
2.8 KiB
Go
88 lines
2.8 KiB
Go
package model_test
|
|
|
|
import (
|
|
. "github.com/navidrome/navidrome/model"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Albums", func() {
|
|
var albums Albums
|
|
|
|
Context("Simple attributes", func() {
|
|
BeforeEach(func() {
|
|
albums = Albums{
|
|
{ID: "1", AlbumArtist: "Artist", AlbumArtistID: "11", SortAlbumArtistName: "SortAlbumArtistName", OrderAlbumArtistName: "OrderAlbumArtistName"},
|
|
{ID: "2", AlbumArtist: "Artist", AlbumArtistID: "11", SortAlbumArtistName: "SortAlbumArtistName", OrderAlbumArtistName: "OrderAlbumArtistName"},
|
|
}
|
|
})
|
|
|
|
It("sets the single values correctly", func() {
|
|
artist := albums.ToAlbumArtist()
|
|
Expect(artist.ID).To(Equal("11"))
|
|
Expect(artist.Name).To(Equal("Artist"))
|
|
Expect(artist.SortArtistName).To(Equal("SortAlbumArtistName"))
|
|
Expect(artist.OrderArtistName).To(Equal("OrderAlbumArtistName"))
|
|
})
|
|
})
|
|
|
|
Context("Aggregated attributes", func() {
|
|
When("we have multiple songs", func() {
|
|
BeforeEach(func() {
|
|
albums = Albums{
|
|
{ID: "1", SongCount: 4, Size: 1024},
|
|
{ID: "2", SongCount: 6, Size: 2048},
|
|
}
|
|
})
|
|
It("calculates the aggregates correctly", func() {
|
|
artist := albums.ToAlbumArtist()
|
|
Expect(artist.AlbumCount).To(Equal(2))
|
|
Expect(artist.SongCount).To(Equal(10))
|
|
Expect(artist.Size).To(Equal(int64(3072)))
|
|
})
|
|
})
|
|
})
|
|
|
|
Context("Calculated attributes", func() {
|
|
Context("Genres", func() {
|
|
When("we have only one Genre", func() {
|
|
BeforeEach(func() {
|
|
albums = Albums{{Genres: Genres{{ID: "g1", Name: "Rock"}}}}
|
|
})
|
|
It("sets the correct Genre", func() {
|
|
artist := albums.ToAlbumArtist()
|
|
Expect(artist.Genres).To(ConsistOf(Genre{ID: "g1", Name: "Rock"}))
|
|
})
|
|
})
|
|
When("we have multiple Genres", func() {
|
|
BeforeEach(func() {
|
|
albums = Albums{{Genres: Genres{{ID: "g1", Name: "Rock"}, {ID: "g2", Name: "Punk"}, {ID: "g3", Name: "Alternative"}, {ID: "g2", Name: "Punk"}}}}
|
|
})
|
|
It("sets the correct Genres", func() {
|
|
artist := albums.ToAlbumArtist()
|
|
Expect(artist.Genres).To(Equal(Genres{{ID: "g1", Name: "Rock"}, {ID: "g2", Name: "Punk"}, {ID: "g3", Name: "Alternative"}}))
|
|
})
|
|
})
|
|
})
|
|
Context("MbzArtistID", func() {
|
|
When("we have only one MbzArtistID", func() {
|
|
BeforeEach(func() {
|
|
albums = Albums{{MbzAlbumArtistID: "id1"}}
|
|
})
|
|
It("sets the correct MbzArtistID", func() {
|
|
artist := albums.ToAlbumArtist()
|
|
Expect(artist.MbzArtistID).To(Equal("id1"))
|
|
})
|
|
})
|
|
When("we have multiple MbzArtistID", func() {
|
|
BeforeEach(func() {
|
|
albums = Albums{{MbzAlbumArtistID: "id1"}, {MbzAlbumArtistID: "id2"}, {MbzAlbumArtistID: "id1"}}
|
|
})
|
|
It("sets the correct MbzArtistID", func() {
|
|
artist := albums.ToAlbumArtist()
|
|
Expect(artist.MbzArtistID).To(Equal("id1"))
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|