test(subsonic): add comprehensive e2e test suite for Subsonic API (#5003)
* test(e2e): add comprehensive tests for Subsonic API endpoints
Signed-off-by: Deluan <deluan@navidrome.org>
* fix(e2e): improve database handling and snapshot restoration in tests
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): add tests for album sharing and user isolation scenarios
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): add tests for multi-library support and user access control
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): tests are fast, no need to skip on -short
Signed-off-by: Deluan <deluan@navidrome.org>
* address gemini comments
Signed-off-by: Deluan <deluan@navidrome.org>
* fix(tests): prevent MockDataStore from caching repos with stale context
When RealDS is set, MockDataStore previously cached repository instances
on first access, binding them to the initial caller's context. This meant
repos created with an admin context would skip library filtering for all
subsequent non-admin calls, silently masking access control bugs. Changed
MockDataStore to delegate to RealDS on every call without caching, so each
caller gets a fresh repo with the correct context. Removed the pre-warm
calls in e2e setupTestDB that were working around the old caching behavior.
* test(e2e): route subsonic tests through full HTTP middleware stack
Replace direct router method calls with full HTTP round-trips via
router.ServeHTTP(w, r) across all 15 e2e test files. Tests now exercise
the complete chi middleware chain including postFormToQueryParams,
checkRequiredParameters, authenticate, UpdateLastAccessMiddleware,
getPlayer, and sendResponse/sendError serialization.
New helpers (doReq, doReqWithUser, doRawReq, buildReq, parseJSONResponse)
use plaintext password auth and JSON response format. Old helpers that
injected context directly (newReq, newReqWithUser, newRawReq) are removed.
Sharing tests now set conf.Server.EnableSharing before router creation to
ensure sharing routes are registered.
---------
Signed-off-by: Deluan <deluan@navidrome.org>
2026-02-09 04:24:37 -09:00
|
|
|
package e2e
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"testing/fstest"
|
|
|
|
|
|
|
|
|
|
"github.com/Masterminds/squirrel"
|
|
|
|
|
"github.com/navidrome/navidrome/conf"
|
|
|
|
|
"github.com/navidrome/navidrome/core/artwork"
|
|
|
|
|
"github.com/navidrome/navidrome/core/metrics"
|
refactor: move playlist business logic from repositories to service layer (#5027)
* refactor: move playlist business logic from repositories to core.Playlists service
Move authorization, permission checks, and orchestration logic from
playlist repositories to the core.Playlists service, following the
existing pattern used by core.Share and core.Library.
Changes:
- Expand core.Playlists interface with read, mutation, track management,
and REST adapter methods
- Add playlistRepositoryWrapper for REST Save/Update/Delete with
permission checks (follows Share/Library pattern)
- Simplify persistence/playlist_repository.go: remove isWritable(),
auth checks from Delete()/Put()/updatePlaylist()
- Simplify persistence/playlist_track_repository.go: remove
isTracksEditable() and permission checks from Add/Delete/Reorder
- Update Subsonic API handlers to route through service
- Update Native API handlers to accept core.Playlists instead of
model.DataStore
* test: add coverage for playlist service methods and REST wrapper
Add 30 new tests covering the service methods added during the playlist
refactoring:
- Delete: owner, admin, denied, not found
- Create: new playlist, replace tracks, admin bypass, denied, not found
- AddTracks: owner, admin, denied, smart playlist, not found
- RemoveTracks: owner, smart playlist denied, non-owner denied
- ReorderTrack: owner, smart playlist denied
- NewRepository wrapper: Save (owner assignment, ID clearing),
Update (owner, admin, denied, ownership change, not found),
Delete (delegation with permission checks)
Expand mockedPlaylistRepo with Get, Delete, Tracks, GetWithTracks, and
rest.Persistable methods. Add mockedPlaylistTrackRepo for track
operation verification.
* fix: add authorization check to playlist Update method
Added ownership verification to the Subsonic Update endpoint in the
playlist service layer. The authorization check was present in the old
repository code but was not carried over during the refactoring to the
service layer, allowing any authenticated user to modify playlists they
don't own via the Subsonic API. Also added corresponding tests for the
Update method's permission logic.
* refactor: improve playlist permission checks and error handling, add e2e tests
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: rename core.Playlists to playlists package and update references
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: rename playlists_internal_test.go to parse_m3u_test.go and update tests; add new parse_nsp.go and rest_adapter.go files
Signed-off-by: Deluan <deluan@navidrome.org>
* fix: block track mutations on smart playlists in Create and Update
Create now rejects replacing tracks on smart playlists (pre-existing
gap). Update now uses checkTracksEditable instead of checkWritable
when track changes are requested, restoring the protection that was
removed from the repository layer during the refactoring. Metadata-only
updates on smart playlists remain allowed.
* test: add smart playlist protection tests to ensure readonly behavior and mutation restrictions
* refactor: optimize track removal and renumbering in playlists
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: implement track reordering in playlists with SQL updates
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: wrap track deletion and reordering in transactions for consistency
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: remove unused getTracks method from playlistTrackRepository
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: optimize playlist track renumbering with CTE-based UPDATE
Replace the DELETE + re-INSERT renumbering strategy with a two-step
UPDATE approach using a materialized CTE and ROW_NUMBER() window
function. The previous approach (SELECT all IDs, DELETE all tracks,
re-INSERT in chunks of 200) required 13 SQL operations for a 2000-track
playlist. The new approach uses just 2 UPDATEs: first negating all IDs
to clear the positive space, then assigning sequential positions via
UPDATE...FROM with a CTE. This avoids the UNIQUE constraint violations
that affected the original correlated subquery while reducing per-delete
request time from ~110ms to ~12ms on a 2000-track playlist.
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: rename New function to NewPlaylists for clarity
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: update mock playlist repository and tests for consistency
Signed-off-by: Deluan <deluan@navidrome.org>
---------
Signed-off-by: Deluan <deluan@navidrome.org>
2026-02-21 15:57:13 -09:00
|
|
|
"github.com/navidrome/navidrome/core/playlists"
|
test(subsonic): add comprehensive e2e test suite for Subsonic API (#5003)
* test(e2e): add comprehensive tests for Subsonic API endpoints
Signed-off-by: Deluan <deluan@navidrome.org>
* fix(e2e): improve database handling and snapshot restoration in tests
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): add tests for album sharing and user isolation scenarios
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): add tests for multi-library support and user access control
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): tests are fast, no need to skip on -short
Signed-off-by: Deluan <deluan@navidrome.org>
* address gemini comments
Signed-off-by: Deluan <deluan@navidrome.org>
* fix(tests): prevent MockDataStore from caching repos with stale context
When RealDS is set, MockDataStore previously cached repository instances
on first access, binding them to the initial caller's context. This meant
repos created with an admin context would skip library filtering for all
subsequent non-admin calls, silently masking access control bugs. Changed
MockDataStore to delegate to RealDS on every call without caching, so each
caller gets a fresh repo with the correct context. Removed the pre-warm
calls in e2e setupTestDB that were working around the old caching behavior.
* test(e2e): route subsonic tests through full HTTP middleware stack
Replace direct router method calls with full HTTP round-trips via
router.ServeHTTP(w, r) across all 15 e2e test files. Tests now exercise
the complete chi middleware chain including postFormToQueryParams,
checkRequiredParameters, authenticate, UpdateLastAccessMiddleware,
getPlayer, and sendResponse/sendError serialization.
New helpers (doReq, doReqWithUser, doRawReq, buildReq, parseJSONResponse)
use plaintext password auth and JSON response format. Old helpers that
injected context directly (newReq, newReqWithUser, newRawReq) are removed.
Sharing tests now set conf.Server.EnableSharing before router creation to
ensure sharing routes are registered.
---------
Signed-off-by: Deluan <deluan@navidrome.org>
2026-02-09 04:24:37 -09:00
|
|
|
"github.com/navidrome/navidrome/core/storage/storagetest"
|
|
|
|
|
"github.com/navidrome/navidrome/model"
|
|
|
|
|
"github.com/navidrome/navidrome/scanner"
|
|
|
|
|
"github.com/navidrome/navidrome/server/events"
|
|
|
|
|
"github.com/navidrome/navidrome/server/subsonic/responses"
|
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var _ = Describe("Multi-Library Support", Ordered, func() {
|
|
|
|
|
var lib2 model.Library
|
|
|
|
|
var adminWithLibs model.User // admin reloaded with both libraries
|
|
|
|
|
var userLib1Only model.User // non-admin with lib1 access only
|
|
|
|
|
|
|
|
|
|
BeforeAll(func() {
|
|
|
|
|
conf.Server.EnableSharing = true
|
|
|
|
|
setupTestDB()
|
|
|
|
|
|
|
|
|
|
// Create a second FakeFS with Classical music content
|
|
|
|
|
classical := template(_t{
|
|
|
|
|
"albumartist": "Ludwig van Beethoven",
|
|
|
|
|
"artist": "Ludwig van Beethoven",
|
|
|
|
|
"album": "Symphony No. 9",
|
|
|
|
|
"year": 1824,
|
|
|
|
|
"genre": "Classical",
|
|
|
|
|
})
|
|
|
|
|
classicalFS := storagetest.FakeFS{}
|
|
|
|
|
classicalFS.SetFiles(fstest.MapFS{
|
|
|
|
|
"Classical/Beethoven/Symphony No. 9/01 - Allegro ma non troppo.mp3": classical(track(1, "Allegro ma non troppo")),
|
|
|
|
|
"Classical/Beethoven/Symphony No. 9/02 - Ode to Joy.mp3": classical(track(2, "Ode to Joy")),
|
|
|
|
|
})
|
|
|
|
|
storagetest.Register("fake2", &classicalFS)
|
|
|
|
|
|
|
|
|
|
// Create the second library in the DB (Put auto-assigns admin users)
|
|
|
|
|
lib2 = model.Library{ID: 2, Name: "Classical Library", Path: "fake2:///classical"}
|
|
|
|
|
Expect(ds.Library(ctx).Put(&lib2)).To(Succeed())
|
|
|
|
|
|
|
|
|
|
// Reload admin user to get both libraries in the Libraries field
|
|
|
|
|
loadedAdmin, err := ds.User(ctx).FindByUsername(adminUser.UserName)
|
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
adminWithLibs = *loadedAdmin
|
|
|
|
|
|
|
|
|
|
// Run incremental scan to import lib2 content (lib1 files unchanged → skipped)
|
|
|
|
|
s := scanner.New(ctx, ds, artwork.NoopCacheWarmer(), events.NoopBroker(),
|
refactor: move playlist business logic from repositories to service layer (#5027)
* refactor: move playlist business logic from repositories to core.Playlists service
Move authorization, permission checks, and orchestration logic from
playlist repositories to the core.Playlists service, following the
existing pattern used by core.Share and core.Library.
Changes:
- Expand core.Playlists interface with read, mutation, track management,
and REST adapter methods
- Add playlistRepositoryWrapper for REST Save/Update/Delete with
permission checks (follows Share/Library pattern)
- Simplify persistence/playlist_repository.go: remove isWritable(),
auth checks from Delete()/Put()/updatePlaylist()
- Simplify persistence/playlist_track_repository.go: remove
isTracksEditable() and permission checks from Add/Delete/Reorder
- Update Subsonic API handlers to route through service
- Update Native API handlers to accept core.Playlists instead of
model.DataStore
* test: add coverage for playlist service methods and REST wrapper
Add 30 new tests covering the service methods added during the playlist
refactoring:
- Delete: owner, admin, denied, not found
- Create: new playlist, replace tracks, admin bypass, denied, not found
- AddTracks: owner, admin, denied, smart playlist, not found
- RemoveTracks: owner, smart playlist denied, non-owner denied
- ReorderTrack: owner, smart playlist denied
- NewRepository wrapper: Save (owner assignment, ID clearing),
Update (owner, admin, denied, ownership change, not found),
Delete (delegation with permission checks)
Expand mockedPlaylistRepo with Get, Delete, Tracks, GetWithTracks, and
rest.Persistable methods. Add mockedPlaylistTrackRepo for track
operation verification.
* fix: add authorization check to playlist Update method
Added ownership verification to the Subsonic Update endpoint in the
playlist service layer. The authorization check was present in the old
repository code but was not carried over during the refactoring to the
service layer, allowing any authenticated user to modify playlists they
don't own via the Subsonic API. Also added corresponding tests for the
Update method's permission logic.
* refactor: improve playlist permission checks and error handling, add e2e tests
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: rename core.Playlists to playlists package and update references
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: rename playlists_internal_test.go to parse_m3u_test.go and update tests; add new parse_nsp.go and rest_adapter.go files
Signed-off-by: Deluan <deluan@navidrome.org>
* fix: block track mutations on smart playlists in Create and Update
Create now rejects replacing tracks on smart playlists (pre-existing
gap). Update now uses checkTracksEditable instead of checkWritable
when track changes are requested, restoring the protection that was
removed from the repository layer during the refactoring. Metadata-only
updates on smart playlists remain allowed.
* test: add smart playlist protection tests to ensure readonly behavior and mutation restrictions
* refactor: optimize track removal and renumbering in playlists
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: implement track reordering in playlists with SQL updates
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: wrap track deletion and reordering in transactions for consistency
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: remove unused getTracks method from playlistTrackRepository
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: optimize playlist track renumbering with CTE-based UPDATE
Replace the DELETE + re-INSERT renumbering strategy with a two-step
UPDATE approach using a materialized CTE and ROW_NUMBER() window
function. The previous approach (SELECT all IDs, DELETE all tracks,
re-INSERT in chunks of 200) required 13 SQL operations for a 2000-track
playlist. The new approach uses just 2 UPDATEs: first negating all IDs
to clear the positive space, then assigning sequential positions via
UPDATE...FROM with a CTE. This avoids the UNIQUE constraint violations
that affected the original correlated subquery while reducing per-delete
request time from ~110ms to ~12ms on a 2000-track playlist.
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: rename New function to NewPlaylists for clarity
Signed-off-by: Deluan <deluan@navidrome.org>
* refactor: update mock playlist repository and tests for consistency
Signed-off-by: Deluan <deluan@navidrome.org>
---------
Signed-off-by: Deluan <deluan@navidrome.org>
2026-02-21 15:57:13 -09:00
|
|
|
playlists.NewPlaylists(ds), metrics.NewNoopInstance())
|
test(subsonic): add comprehensive e2e test suite for Subsonic API (#5003)
* test(e2e): add comprehensive tests for Subsonic API endpoints
Signed-off-by: Deluan <deluan@navidrome.org>
* fix(e2e): improve database handling and snapshot restoration in tests
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): add tests for album sharing and user isolation scenarios
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): add tests for multi-library support and user access control
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): tests are fast, no need to skip on -short
Signed-off-by: Deluan <deluan@navidrome.org>
* address gemini comments
Signed-off-by: Deluan <deluan@navidrome.org>
* fix(tests): prevent MockDataStore from caching repos with stale context
When RealDS is set, MockDataStore previously cached repository instances
on first access, binding them to the initial caller's context. This meant
repos created with an admin context would skip library filtering for all
subsequent non-admin calls, silently masking access control bugs. Changed
MockDataStore to delegate to RealDS on every call without caching, so each
caller gets a fresh repo with the correct context. Removed the pre-warm
calls in e2e setupTestDB that were working around the old caching behavior.
* test(e2e): route subsonic tests through full HTTP middleware stack
Replace direct router method calls with full HTTP round-trips via
router.ServeHTTP(w, r) across all 15 e2e test files. Tests now exercise
the complete chi middleware chain including postFormToQueryParams,
checkRequiredParameters, authenticate, UpdateLastAccessMiddleware,
getPlayer, and sendResponse/sendError serialization.
New helpers (doReq, doReqWithUser, doRawReq, buildReq, parseJSONResponse)
use plaintext password auth and JSON response format. Old helpers that
injected context directly (newReq, newReqWithUser, newRawReq) are removed.
Sharing tests now set conf.Server.EnableSharing before router creation to
ensure sharing routes are registered.
---------
Signed-off-by: Deluan <deluan@navidrome.org>
2026-02-09 04:24:37 -09:00
|
|
|
_, err = s.ScanAll(ctx, false)
|
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
|
|
// Create a non-admin user with access only to lib1
|
|
|
|
|
userLib1Only = model.User{
|
|
|
|
|
ID: "multilib-user-1",
|
|
|
|
|
UserName: "lib1user",
|
|
|
|
|
Name: "Lib1 User",
|
|
|
|
|
IsAdmin: false,
|
|
|
|
|
NewPassword: "password",
|
|
|
|
|
}
|
|
|
|
|
Expect(ds.User(ctx).Put(&userLib1Only)).To(Succeed())
|
|
|
|
|
Expect(ds.User(ctx).SetUserLibraries(userLib1Only.ID, []int{lib.ID})).To(Succeed())
|
|
|
|
|
|
|
|
|
|
loadedUser, err := ds.User(ctx).FindByUsername(userLib1Only.UserName)
|
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
userLib1Only.Libraries = loadedUser.Libraries
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Describe("getMusicFolders", func() {
|
|
|
|
|
It("returns both libraries for admin user", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "getMusicFolders")
|
|
|
|
|
|
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
|
|
|
Expect(resp.MusicFolders.Folders).To(HaveLen(2))
|
|
|
|
|
|
|
|
|
|
names := make([]string, len(resp.MusicFolders.Folders))
|
|
|
|
|
for i, f := range resp.MusicFolders.Folders {
|
|
|
|
|
names[i] = f.Name
|
|
|
|
|
}
|
|
|
|
|
Expect(names).To(ConsistOf("Music Library", "Classical Library"))
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Describe("getArtists - library filtering", func() {
|
|
|
|
|
It("returns only lib1 artists when musicFolderId=1", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "getArtists", "musicFolderId", fmt.Sprintf("%d", lib.ID))
|
|
|
|
|
|
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
|
|
|
Expect(resp.Artist).ToNot(BeNil())
|
|
|
|
|
|
|
|
|
|
var artistNames []string
|
|
|
|
|
for _, idx := range resp.Artist.Index {
|
|
|
|
|
for _, a := range idx.Artists {
|
|
|
|
|
artistNames = append(artistNames, a.Name)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Expect(artistNames).To(ContainElements("The Beatles", "Led Zeppelin", "Miles Davis"))
|
|
|
|
|
Expect(artistNames).ToNot(ContainElement("Ludwig van Beethoven"))
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
It("returns only lib2 artists when musicFolderId=2", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "getArtists", "musicFolderId", fmt.Sprintf("%d", lib2.ID))
|
|
|
|
|
|
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
|
|
|
Expect(resp.Artist).ToNot(BeNil())
|
|
|
|
|
|
|
|
|
|
var artistNames []string
|
|
|
|
|
for _, idx := range resp.Artist.Index {
|
|
|
|
|
for _, a := range idx.Artists {
|
|
|
|
|
artistNames = append(artistNames, a.Name)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Expect(artistNames).To(ContainElement("Ludwig van Beethoven"))
|
|
|
|
|
Expect(artistNames).ToNot(ContainElements("The Beatles", "Led Zeppelin", "Miles Davis"))
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
It("returns artists from all libraries when no musicFolderId is specified", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "getArtists")
|
|
|
|
|
|
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
|
|
|
|
|
|
|
|
var artistNames []string
|
|
|
|
|
for _, idx := range resp.Artist.Index {
|
|
|
|
|
for _, a := range idx.Artists {
|
|
|
|
|
artistNames = append(artistNames, a.Name)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Expect(artistNames).To(ContainElements("The Beatles", "Led Zeppelin", "Miles Davis", "Ludwig van Beethoven"))
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Describe("getAlbumList - library filtering", func() {
|
|
|
|
|
It("returns only lib1 albums when musicFolderId=1", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "getAlbumList", "type", "alphabeticalByName", "musicFolderId", fmt.Sprintf("%d", lib.ID))
|
|
|
|
|
|
|
|
|
|
Expect(resp.AlbumList).ToNot(BeNil())
|
2026-02-23 04:51:54 -09:00
|
|
|
Expect(resp.AlbumList.Album).To(HaveLen(6))
|
test(subsonic): add comprehensive e2e test suite for Subsonic API (#5003)
* test(e2e): add comprehensive tests for Subsonic API endpoints
Signed-off-by: Deluan <deluan@navidrome.org>
* fix(e2e): improve database handling and snapshot restoration in tests
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): add tests for album sharing and user isolation scenarios
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): add tests for multi-library support and user access control
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): tests are fast, no need to skip on -short
Signed-off-by: Deluan <deluan@navidrome.org>
* address gemini comments
Signed-off-by: Deluan <deluan@navidrome.org>
* fix(tests): prevent MockDataStore from caching repos with stale context
When RealDS is set, MockDataStore previously cached repository instances
on first access, binding them to the initial caller's context. This meant
repos created with an admin context would skip library filtering for all
subsequent non-admin calls, silently masking access control bugs. Changed
MockDataStore to delegate to RealDS on every call without caching, so each
caller gets a fresh repo with the correct context. Removed the pre-warm
calls in e2e setupTestDB that were working around the old caching behavior.
* test(e2e): route subsonic tests through full HTTP middleware stack
Replace direct router method calls with full HTTP round-trips via
router.ServeHTTP(w, r) across all 15 e2e test files. Tests now exercise
the complete chi middleware chain including postFormToQueryParams,
checkRequiredParameters, authenticate, UpdateLastAccessMiddleware,
getPlayer, and sendResponse/sendError serialization.
New helpers (doReq, doReqWithUser, doRawReq, buildReq, parseJSONResponse)
use plaintext password auth and JSON response format. Old helpers that
injected context directly (newReq, newReqWithUser, newRawReq) are removed.
Sharing tests now set conf.Server.EnableSharing before router creation to
ensure sharing routes are registered.
---------
Signed-off-by: Deluan <deluan@navidrome.org>
2026-02-09 04:24:37 -09:00
|
|
|
for _, a := range resp.AlbumList.Album {
|
|
|
|
|
Expect(a.Title).ToNot(Equal("Symphony No. 9"))
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
It("returns only lib2 albums when musicFolderId=2", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "getAlbumList", "type", "alphabeticalByName", "musicFolderId", fmt.Sprintf("%d", lib2.ID))
|
|
|
|
|
|
|
|
|
|
Expect(resp.AlbumList).ToNot(BeNil())
|
|
|
|
|
Expect(resp.AlbumList.Album).To(HaveLen(1))
|
|
|
|
|
Expect(resp.AlbumList.Album[0].Title).To(Equal("Symphony No. 9"))
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Describe("search3 - library filtering", func() {
|
|
|
|
|
It("does not find lib1 content when searching in lib2 only", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "search3", "query", "Beatles", "musicFolderId", fmt.Sprintf("%d", lib2.ID))
|
|
|
|
|
|
|
|
|
|
Expect(resp.SearchResult3).ToNot(BeNil())
|
|
|
|
|
Expect(resp.SearchResult3.Artist).To(BeEmpty())
|
|
|
|
|
Expect(resp.SearchResult3.Album).To(BeEmpty())
|
|
|
|
|
Expect(resp.SearchResult3.Song).To(BeEmpty())
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
It("finds lib2 content when searching in lib2", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "search3", "query", "Beethoven", "musicFolderId", fmt.Sprintf("%d", lib2.ID))
|
|
|
|
|
|
|
|
|
|
Expect(resp.SearchResult3).ToNot(BeNil())
|
|
|
|
|
Expect(resp.SearchResult3.Artist).ToNot(BeEmpty())
|
|
|
|
|
Expect(resp.SearchResult3.Artist[0].Name).To(Equal("Ludwig van Beethoven"))
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Describe("Cross-library playlists", Ordered, func() {
|
|
|
|
|
var playlistID string
|
|
|
|
|
var lib1SongID, lib2SongID string
|
|
|
|
|
|
|
|
|
|
BeforeAll(func() {
|
|
|
|
|
// Look up one song from each library
|
|
|
|
|
lib1Songs, err := ds.MediaFile(ctx).GetAll(model.QueryOptions{
|
|
|
|
|
Filters: squirrel.Eq{"media_file.library_id": lib.ID},
|
|
|
|
|
Max: 1, Sort: "title",
|
|
|
|
|
})
|
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
Expect(lib1Songs).ToNot(BeEmpty())
|
|
|
|
|
lib1SongID = lib1Songs[0].ID
|
|
|
|
|
|
|
|
|
|
lib2Songs, err := ds.MediaFile(ctx).GetAll(model.QueryOptions{
|
|
|
|
|
Filters: squirrel.Eq{"media_file.library_id": lib2.ID},
|
|
|
|
|
Max: 1, Sort: "title",
|
|
|
|
|
})
|
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
Expect(lib2Songs).ToNot(BeEmpty())
|
|
|
|
|
lib2SongID = lib2Songs[0].ID
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
It("admin creates a playlist with songs from both libraries", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "createPlaylist",
|
|
|
|
|
"name", "Cross-Library Playlist", "songId", lib1SongID, "songId", lib2SongID)
|
|
|
|
|
|
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
|
|
|
Expect(resp.Playlist).ToNot(BeNil())
|
|
|
|
|
Expect(resp.Playlist.SongCount).To(Equal(int32(2)))
|
|
|
|
|
Expect(resp.Playlist.Entry).To(HaveLen(2))
|
|
|
|
|
playlistID = resp.Playlist.Id
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
It("admin makes the playlist public", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "updatePlaylist",
|
|
|
|
|
"playlistId", playlistID, "public", "true")
|
|
|
|
|
|
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
It("non-admin user with lib1 only sees only lib1 tracks in the playlist", func() {
|
|
|
|
|
resp := doReqWithUser(userLib1Only, "getPlaylist", "id", playlistID)
|
|
|
|
|
|
|
|
|
|
Expect(resp.Playlist).ToNot(BeNil())
|
|
|
|
|
// The playlist has 2 songs total, but the non-admin user only has access to lib1
|
|
|
|
|
Expect(resp.Playlist.Entry).To(HaveLen(1))
|
|
|
|
|
Expect(resp.Playlist.Entry[0].Id).To(Equal(lib1SongID))
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Describe("Cross-library shares", Ordered, func() {
|
|
|
|
|
var lib2AlbumID string
|
|
|
|
|
|
|
|
|
|
BeforeAll(func() {
|
|
|
|
|
lib2Albums, err := ds.Album(ctx).GetAll(model.QueryOptions{
|
|
|
|
|
Filters: squirrel.Eq{"album.library_id": lib2.ID},
|
|
|
|
|
})
|
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
Expect(lib2Albums).ToNot(BeEmpty())
|
|
|
|
|
lib2AlbumID = lib2Albums[0].ID
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
It("admin creates a share for a lib2 album", func() {
|
|
|
|
|
resp := doReqWithUser(adminWithLibs, "createShare",
|
|
|
|
|
"id", lib2AlbumID, "description", "Classical album share")
|
|
|
|
|
|
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
|
|
|
Expect(resp.Shares).ToNot(BeNil())
|
|
|
|
|
Expect(resp.Shares.Share).To(HaveLen(1))
|
|
|
|
|
|
|
|
|
|
share := resp.Shares.Share[0]
|
|
|
|
|
Expect(share.Description).To(Equal("Classical album share"))
|
|
|
|
|
Expect(share.Entry).ToNot(BeEmpty())
|
|
|
|
|
Expect(share.Entry[0].Title).To(Equal("Symphony No. 9"))
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Describe("Library access control", func() {
|
|
|
|
|
It("returns error when non-admin user requests inaccessible library", func() {
|
|
|
|
|
resp := doReqWithUser(userLib1Only, "getArtists", "musicFolderId", fmt.Sprintf("%d", lib2.ID))
|
|
|
|
|
|
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusFailed))
|
|
|
|
|
Expect(resp.Error).ToNot(BeNil())
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
It("non-admin user sees only their library's content without musicFolderId", func() {
|
|
|
|
|
resp := doReqWithUser(userLib1Only, "getArtists")
|
|
|
|
|
|
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
|
|
|
|
|
|
|
|
var artistNames []string
|
|
|
|
|
for _, idx := range resp.Artist.Index {
|
|
|
|
|
for _, a := range idx.Artists {
|
|
|
|
|
artistNames = append(artistNames, a.Name)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Expect(artistNames).To(ContainElements("The Beatles", "Led Zeppelin", "Miles Davis"))
|
|
|
|
|
Expect(artistNames).ToNot(ContainElement("Ludwig van Beethoven"))
|
|
|
|
|
})
|
2026-02-23 04:51:54 -09:00
|
|
|
|
|
|
|
|
It("non-admin user search returns only their library's content", func() {
|
|
|
|
|
resp := doReqWithUser(userLib1Only, "search3", "query", "Beethoven")
|
|
|
|
|
|
|
|
|
|
Expect(resp.SearchResult3).ToNot(BeNil())
|
|
|
|
|
Expect(resp.SearchResult3.Artist).To(BeEmpty(), "userLib1Only should not see Beethoven (lib2)")
|
|
|
|
|
Expect(resp.SearchResult3.Album).To(BeEmpty())
|
|
|
|
|
Expect(resp.SearchResult3.Song).To(BeEmpty())
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
It("non-admin user search finds content from their library", func() {
|
|
|
|
|
resp := doReqWithUser(userLib1Only, "search3", "query", "Beatles")
|
|
|
|
|
|
|
|
|
|
Expect(resp.SearchResult3).ToNot(BeNil())
|
|
|
|
|
Expect(resp.SearchResult3.Artist).ToNot(BeEmpty(), "userLib1Only should find Beatles (lib1)")
|
|
|
|
|
})
|
test(subsonic): add comprehensive e2e test suite for Subsonic API (#5003)
* test(e2e): add comprehensive tests for Subsonic API endpoints
Signed-off-by: Deluan <deluan@navidrome.org>
* fix(e2e): improve database handling and snapshot restoration in tests
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): add tests for album sharing and user isolation scenarios
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): add tests for multi-library support and user access control
Signed-off-by: Deluan <deluan@navidrome.org>
* test(e2e): tests are fast, no need to skip on -short
Signed-off-by: Deluan <deluan@navidrome.org>
* address gemini comments
Signed-off-by: Deluan <deluan@navidrome.org>
* fix(tests): prevent MockDataStore from caching repos with stale context
When RealDS is set, MockDataStore previously cached repository instances
on first access, binding them to the initial caller's context. This meant
repos created with an admin context would skip library filtering for all
subsequent non-admin calls, silently masking access control bugs. Changed
MockDataStore to delegate to RealDS on every call without caching, so each
caller gets a fresh repo with the correct context. Removed the pre-warm
calls in e2e setupTestDB that were working around the old caching behavior.
* test(e2e): route subsonic tests through full HTTP middleware stack
Replace direct router method calls with full HTTP round-trips via
router.ServeHTTP(w, r) across all 15 e2e test files. Tests now exercise
the complete chi middleware chain including postFormToQueryParams,
checkRequiredParameters, authenticate, UpdateLastAccessMiddleware,
getPlayer, and sendResponse/sendError serialization.
New helpers (doReq, doReqWithUser, doRawReq, buildReq, parseJSONResponse)
use plaintext password auth and JSON response format. Old helpers that
injected context directly (newReq, newReqWithUser, newRawReq) are removed.
Sharing tests now set conf.Server.EnableSharing before router creation to
ensure sharing routes are registered.
---------
Signed-off-by: Deluan <deluan@navidrome.org>
2026-02-09 04:24:37 -09:00
|
|
|
})
|
|
|
|
|
})
|