mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
29 lines
615 B
Go
29 lines
615 B
Go
package persistence
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"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()
|
|
})
|
|
|
|
Describe("FindByPath", func() {
|
|
It("returns all records from a given ArtistID", func() {
|
|
path := string(os.PathSeparator) + filepath.Join("beatles", "1")
|
|
println("Searching path", path) // TODO Remove
|
|
Expect(repo.FindByPath(path)).To(Equal(model.MediaFiles{
|
|
songComeTogether,
|
|
}))
|
|
})
|
|
})
|
|
|
|
})
|