mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
fix(server): import absolute paths in m3u (#3756)
* fix(server): import playlists with absolute paths Signed-off-by: Deluan <deluan@navidrome.org> * fix(server): optimize playlist import Signed-off-by: Deluan <deluan@navidrome.org> * fix(server): add test with multiple libraries Signed-off-by: Deluan <deluan@navidrome.org> * fix(server): refactor Signed-off-by: Deluan <deluan@navidrome.org> --------- Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
3892f70c35
commit
0c4c223127
6 changed files with 129 additions and 62 deletions
3
tests/fixtures/playlists/pls1.m3u
vendored
3
tests/fixtures/playlists/pls1.m3u
vendored
|
@ -1,3 +1,2 @@
|
|||
test.mp3
|
||||
test.ogg
|
||||
file:///tests/fixtures/01%20Invisible%20(RED)%20Edit%20Version.mp3
|
||||
test.ogg
|
6
tests/fixtures/playlists/subfolder2/pls2.m3u
vendored
6
tests/fixtures/playlists/subfolder2/pls2.m3u
vendored
|
@ -1,2 +1,4 @@
|
|||
test.mp3
|
||||
test.ogg
|
||||
../test.mp3
|
||||
../test.ogg
|
||||
/tests/fixtures/01%20Invisible%20(RED)%20Edit%20Version.mp3
|
||||
/invalid/path/xyz.mp3
|
|
@ -2,7 +2,6 @@ package tests
|
|||
|
||||
import (
|
||||
"context"
|
||||
"io/fs"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
|
@ -18,7 +17,7 @@ func TempFileName(t testingT, prefix, suffix string) string {
|
|||
return filepath.Join(t.TempDir(), prefix+id.NewRandom()+suffix)
|
||||
}
|
||||
|
||||
func TempFile(t testingT, prefix, suffix string) (fs.File, string, error) {
|
||||
func TempFile(t testingT, prefix, suffix string) (*os.File, string, error) {
|
||||
name := TempFileName(t, prefix, suffix)
|
||||
f, err := os.Create(name)
|
||||
return f, name, err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue