mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add getShares
and createShare
Subsonic endpoints
This commit is contained in:
parent
94cc2b2ac5
commit
d0dceae094
21 changed files with 257 additions and 56 deletions
|
@ -14,10 +14,11 @@ var _ = Describe("Share", func() {
|
|||
var ds model.DataStore
|
||||
var share Share
|
||||
var mockedRepo rest.Persistable
|
||||
ctx := context.Background()
|
||||
|
||||
BeforeEach(func() {
|
||||
ds = &tests.MockDataStore{}
|
||||
mockedRepo = ds.Share(context.Background()).(rest.Persistable)
|
||||
mockedRepo = ds.Share(ctx).(rest.Persistable)
|
||||
share = NewShare(ds)
|
||||
})
|
||||
|
||||
|
@ -25,12 +26,13 @@ var _ = Describe("Share", func() {
|
|||
var repo rest.Persistable
|
||||
|
||||
BeforeEach(func() {
|
||||
repo = share.NewRepository(context.Background()).(rest.Persistable)
|
||||
repo = share.NewRepository(ctx).(rest.Persistable)
|
||||
_ = ds.Album(ctx).Put(&model.Album{ID: "123", Name: "Album"})
|
||||
})
|
||||
|
||||
Describe("Save", func() {
|
||||
It("it sets a random ID", func() {
|
||||
entity := &model.Share{Description: "test"}
|
||||
entity := &model.Share{Description: "test", ResourceIDs: "123"}
|
||||
id, err := repo.Save(entity)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(id).ToNot(BeEmpty())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue