Add getShares and createShare Subsonic endpoints

This commit is contained in:
Deluan 2023-01-22 14:38:55 -05:00
parent 94cc2b2ac5
commit d0dceae094
21 changed files with 257 additions and 56 deletions

View file

@ -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())