mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
- Create model.DataStore, with provision for transactions - Change all layers dependencies on repositories to use DataStore - Implemented persistence.SQLStore - Removed iTunes Bridge/Importer support
29 lines
609 B
Go
29 lines
609 B
Go
package persistence
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/astaxie/beego/orm"
|
|
"github.com/cloudsonic/sonic-server/model"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("MediaFileRepository", func() {
|
|
var repo model.MediaFileRepository
|
|
|
|
BeforeEach(func() {
|
|
repo = NewMediaFileRepository(orm.NewOrm())
|
|
})
|
|
|
|
Describe("FindByPath", func() {
|
|
It("returns all records from a given ArtistID", func() {
|
|
path := string(os.PathSeparator) + filepath.Join("beatles", "1")
|
|
Expect(repo.FindByPath(path)).To(Equal(model.MediaFiles{
|
|
songComeTogether,
|
|
}))
|
|
})
|
|
})
|
|
|
|
})
|