mirror of
https://github.com/navidrome/navidrome.git
synced 2025-12-23 15:08:04 -05:00
Signed-off-by: Deluan <deluan@navidrome.org> # Conflicts: # core/share.go # core/share_test.go
85 lines
2.9 KiB
Go
85 lines
2.9 KiB
Go
package core
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/deluan/rest"
|
|
"github.com/navidrome/navidrome/model"
|
|
"github.com/navidrome/navidrome/tests"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
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(ctx).(rest.Persistable)
|
|
share = NewShare(ds)
|
|
})
|
|
|
|
Describe("NewRepository", func() {
|
|
var repo rest.Persistable
|
|
|
|
BeforeEach(func() {
|
|
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", ResourceIDs: "123"}
|
|
id, err := repo.Save(entity)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(id).ToNot(BeEmpty())
|
|
Expect(entity.ID).To(Equal(id))
|
|
})
|
|
|
|
It("does not truncate ASCII labels shorter than 30 characters", func() {
|
|
_ = ds.MediaFile(ctx).Put(&model.MediaFile{ID: "456", Title: "Example Media File"})
|
|
entity := &model.Share{Description: "test", ResourceIDs: "456"}
|
|
_, err := repo.Save(entity)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(entity.Contents).To(Equal("Example Media File"))
|
|
})
|
|
|
|
It("truncates ASCII labels longer than 30 characters", func() {
|
|
_ = ds.MediaFile(ctx).Put(&model.MediaFile{ID: "789", Title: "Example Media File But The Title Is Really Long For Testing Purposes"})
|
|
entity := &model.Share{Description: "test", ResourceIDs: "789"}
|
|
_, err := repo.Save(entity)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(entity.Contents).To(Equal("Example Media File But The ..."))
|
|
})
|
|
|
|
It("does not truncate CJK labels shorter than 30 runes", func() {
|
|
_ = ds.MediaFile(ctx).Put(&model.MediaFile{ID: "456", Title: "青春コンプレックス"})
|
|
entity := &model.Share{Description: "test", ResourceIDs: "456"}
|
|
_, err := repo.Save(entity)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(entity.Contents).To(Equal("青春コンプレックス"))
|
|
})
|
|
|
|
It("truncates CJK labels longer than 30 runes", func() {
|
|
_ = ds.MediaFile(ctx).Put(&model.MediaFile{ID: "789", Title: "私の中の幻想的世界観及びその顕現を想起させたある現実での出来事に関する一考察"})
|
|
entity := &model.Share{Description: "test", ResourceIDs: "789"}
|
|
_, err := repo.Save(entity)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(entity.Contents).To(Equal("私の中の幻想的世界観及びその顕現を想起させたある現実で..."))
|
|
})
|
|
})
|
|
|
|
Describe("Update", func() {
|
|
It("filters out read-only fields", func() {
|
|
entity := &model.Share{}
|
|
err := repo.Update("id", entity)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(mockedRepo.(*tests.MockShareRepo).Cols).To(ConsistOf("description", "downloadable"))
|
|
})
|
|
})
|
|
})
|
|
})
|