quintodrome/persistence/album_repository_test.go

63 lines
1.4 KiB
Go
Raw Normal View History

package persistence
2020-01-12 14:55:55 -09:00
import (
"github.com/astaxie/beego/orm"
2020-01-14 18:22:34 -09:00
"github.com/cloudsonic/sonic-server/model"
2020-01-12 14:55:55 -09:00
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("AlbumRepository", func() {
2020-01-14 18:22:34 -09:00
var repo model.AlbumRepository
2020-01-12 14:55:55 -09:00
BeforeEach(func() {
repo = NewAlbumRepository(orm.NewOrm())
2020-01-12 14:55:55 -09:00
})
Describe("GetAll", func() {
It("returns all records", func() {
Expect(repo.GetAll()).To(Equal(testAlbums))
})
It("returns all records sorted", func() {
Expect(repo.GetAll(model.QueryOptions{Sort: "Name"})).To(Equal(model.Albums{
2020-01-15 13:49:09 -09:00
albumAbbeyRoad,
albumRadioactivity,
albumSgtPeppers,
2020-01-12 14:55:55 -09:00
}))
})
It("returns all records sorted desc", func() {
Expect(repo.GetAll(model.QueryOptions{Sort: "Name", Order: "desc"})).To(Equal(model.Albums{
2020-01-15 13:49:09 -09:00
albumSgtPeppers,
albumRadioactivity,
albumAbbeyRoad,
2020-01-12 14:55:55 -09:00
}))
})
It("paginates the result", func() {
Expect(repo.GetAll(model.QueryOptions{Offset: 1, Max: 1})).To(Equal(model.Albums{
2020-01-15 13:49:09 -09:00
albumAbbeyRoad,
2020-01-12 14:55:55 -09:00
}))
})
})
Describe("GetStarred", func() {
It("returns all starred records", func() {
2020-01-21 19:01:43 -09:00
Expect(repo.GetStarred("userid", model.QueryOptions{})).To(Equal(model.Albums{
2020-01-15 13:49:09 -09:00
albumRadioactivity,
2020-01-12 14:55:55 -09:00
}))
})
})
Describe("FindByArtist", func() {
It("returns all records from a given ArtistID", func() {
2020-01-14 18:22:34 -09:00
Expect(repo.FindByArtist("1")).To(Equal(model.Albums{
2020-01-15 13:49:09 -09:00
albumAbbeyRoad,
albumSgtPeppers,
2020-01-12 14:55:55 -09:00
}))
})
})
})