mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
* Start migration to dbx package * Fix annotations and bookmarks bindings * Fix tests * Fix more tests * Remove remaining references to beego/orm * Add PostScanner/PostMapper interfaces * Fix importing SmartPlaylists * Renaming * More renaming * Fix artist DB mapping * Fix playlist updates * Remove bookmarks at the end of the test * Remove remaining `orm` struct tags * Fix user timestamps DB access * Fix smart playlist evaluated_at DB access * Fix search3
59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
package persistence_test
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/navidrome/navidrome/db"
|
|
"github.com/navidrome/navidrome/log"
|
|
"github.com/navidrome/navidrome/model"
|
|
"github.com/navidrome/navidrome/persistence"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
"github.com/pocketbase/dbx"
|
|
)
|
|
|
|
var _ = Describe("GenreRepository", func() {
|
|
var repo model.GenreRepository
|
|
|
|
BeforeEach(func() {
|
|
repo = persistence.NewGenreRepository(log.NewContext(context.TODO()), dbx.NewFromDB(db.Db(), db.Driver))
|
|
})
|
|
|
|
Describe("GetAll()", func() {
|
|
It("returns all records", func() {
|
|
genres, err := repo.GetAll()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(genres).To(ConsistOf(
|
|
model.Genre{ID: "gn-1", Name: "Electronic", AlbumCount: 1, SongCount: 2},
|
|
model.Genre{ID: "gn-2", Name: "Rock", AlbumCount: 3, SongCount: 3},
|
|
))
|
|
})
|
|
})
|
|
Describe("Put()", Ordered, func() {
|
|
It("does not insert existing genre names", func() {
|
|
g := model.Genre{Name: "Rock"}
|
|
err := repo.Put(&g)
|
|
Expect(err).To(BeNil())
|
|
Expect(g.ID).To(Equal("gn-2"))
|
|
|
|
genres, _ := repo.GetAll()
|
|
Expect(genres).To(HaveLen(2))
|
|
})
|
|
|
|
It("insert non-existent genre names", func() {
|
|
g := model.Genre{Name: "Reggae"}
|
|
err := repo.Put(&g)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
// ID is a uuid
|
|
_, err = uuid.Parse(g.ID)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
genres, err := repo.GetAll()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(genres).To(HaveLen(3))
|
|
Expect(genres).To(ContainElement(model.Genre{ID: g.ID, Name: "Reggae", AlbumCount: 0, SongCount: 0}))
|
|
})
|
|
})
|
|
})
|