Add tests to core.Share
This commit is contained in:
+2
-5
@@ -41,17 +41,14 @@ type shareRepositoryWrapper struct {
|
|||||||
func (r *shareRepositoryWrapper) Save(entity interface{}) (string, error) {
|
func (r *shareRepositoryWrapper) Save(entity interface{}) (string, error) {
|
||||||
s := entity.(*model.Share)
|
s := entity.(*model.Share)
|
||||||
id, err := gonanoid.Generate("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", 9)
|
id, err := gonanoid.Generate("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", 9)
|
||||||
s.Name = id
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
s.Name = id
|
||||||
id, err = r.Persistable.Save(s)
|
id, err = r.Persistable.Save(s)
|
||||||
return id, err
|
return id, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *shareRepositoryWrapper) Update(entity interface{}, _ ...string) error {
|
func (r *shareRepositoryWrapper) Update(entity interface{}, _ ...string) error {
|
||||||
s := entity.(*model.Share)
|
return r.Persistable.Update(entity, "description")
|
||||||
cols := []string{"description"}
|
|
||||||
err := r.Persistable.Update(s, cols...)
|
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,51 @@
|
|||||||
|
package core
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"github.com/deluan/rest"
|
||||||
|
"github.com/navidrome/navidrome/model"
|
||||||
|
"github.com/navidrome/navidrome/tests"
|
||||||
|
. "github.com/onsi/ginkgo"
|
||||||
|
. "github.com/onsi/gomega"
|
||||||
|
)
|
||||||
|
|
||||||
|
var _ = Describe("Share", func() {
|
||||||
|
var ds model.DataStore
|
||||||
|
var share Share
|
||||||
|
var mockedRepo rest.Persistable
|
||||||
|
|
||||||
|
BeforeEach(func() {
|
||||||
|
ds = &tests.MockDataStore{}
|
||||||
|
mockedRepo = ds.Share(context.Background()).(rest.Persistable)
|
||||||
|
share = NewShare(ds)
|
||||||
|
})
|
||||||
|
|
||||||
|
Describe("NewRepository", func() {
|
||||||
|
var repo rest.Persistable
|
||||||
|
|
||||||
|
BeforeEach(func() {
|
||||||
|
repo = share.NewRepository(context.Background()).(rest.Persistable)
|
||||||
|
})
|
||||||
|
|
||||||
|
Describe("Save", func() {
|
||||||
|
It("it adds a random name", func() {
|
||||||
|
entity := &model.Share{Description: "test"}
|
||||||
|
id, err := repo.Save(entity)
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
Expect(id).ToNot(BeEmpty())
|
||||||
|
Expect(entity.Name).ToNot(BeEmpty())
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
Describe("Update", func() {
|
||||||
|
It("filters out read-only fields", func() {
|
||||||
|
entity := "entity"
|
||||||
|
err := repo.Update(entity)
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
Expect(mockedRepo.(*tests.MockShareRepo).Entity).To(Equal("entity"))
|
||||||
|
Expect(mockedRepo.(*tests.MockShareRepo).Cols).To(ConsistOf("description"))
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user