mirror of
https://github.com/navidrome/navidrome.git
synced 2026-03-04 06:35:52 +00:00
* 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>
143 lines
4.3 KiB
Go
143 lines
4.3 KiB
Go
package e2e
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/navidrome/navidrome/model"
|
|
"github.com/navidrome/navidrome/server/subsonic/responses"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Bookmark and PlayQueue Endpoints", Ordered, func() {
|
|
BeforeAll(func() {
|
|
setupTestDB()
|
|
})
|
|
|
|
Describe("Bookmark Endpoints", Ordered, func() {
|
|
var trackID string
|
|
|
|
BeforeAll(func() {
|
|
// Get a media file ID from the database to use for bookmarks
|
|
mfs, err := ds.MediaFile(ctx).GetAll(model.QueryOptions{Max: 1})
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(mfs).ToNot(BeEmpty())
|
|
trackID = mfs[0].ID
|
|
})
|
|
|
|
It("getBookmarks returns empty initially", func() {
|
|
resp := doReq("getBookmarks")
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
Expect(resp.Bookmarks).ToNot(BeNil())
|
|
Expect(resp.Bookmarks.Bookmark).To(BeEmpty())
|
|
})
|
|
|
|
It("createBookmark creates a bookmark with position", func() {
|
|
resp := doReq("createBookmark", "id", trackID, "position", "12345", "comment", "test bookmark")
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
})
|
|
|
|
It("getBookmarks shows the created bookmark", func() {
|
|
resp := doReq("getBookmarks")
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
Expect(resp.Bookmarks).ToNot(BeNil())
|
|
Expect(resp.Bookmarks.Bookmark).To(HaveLen(1))
|
|
|
|
bmk := resp.Bookmarks.Bookmark[0]
|
|
Expect(bmk.Entry.Id).To(Equal(trackID))
|
|
Expect(bmk.Position).To(Equal(int64(12345)))
|
|
Expect(bmk.Comment).To(Equal("test bookmark"))
|
|
Expect(bmk.Username).To(Equal(adminUser.UserName))
|
|
})
|
|
|
|
It("deleteBookmark removes the bookmark", func() {
|
|
resp := doReq("deleteBookmark", "id", trackID)
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
|
|
// Verify it's gone
|
|
resp = doReq("getBookmarks")
|
|
Expect(resp.Bookmarks.Bookmark).To(BeEmpty())
|
|
})
|
|
})
|
|
|
|
Describe("PlayQueue Endpoints", Ordered, func() {
|
|
var trackIDs []string
|
|
|
|
BeforeAll(func() {
|
|
// Get multiple media file IDs from the database
|
|
mfs, err := ds.MediaFile(ctx).GetAll(model.QueryOptions{Max: 3, Sort: "title"})
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(len(mfs)).To(BeNumerically(">=", 2))
|
|
for _, mf := range mfs {
|
|
trackIDs = append(trackIDs, mf.ID)
|
|
}
|
|
})
|
|
|
|
It("getPlayQueue returns empty when nothing saved", func() {
|
|
resp := doReq("getPlayQueue")
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
// When no play queue exists, PlayQueue should be nil (no entry returned)
|
|
Expect(resp.PlayQueue).To(BeNil())
|
|
})
|
|
|
|
It("savePlayQueue stores current play queue", func() {
|
|
resp := doReq("savePlayQueue",
|
|
"id", trackIDs[0],
|
|
"id", trackIDs[1],
|
|
"current", trackIDs[1],
|
|
"position", "5000",
|
|
)
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
})
|
|
|
|
It("getPlayQueue returns saved queue with tracks", func() {
|
|
resp := doReq("getPlayQueue")
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
Expect(resp.PlayQueue).ToNot(BeNil())
|
|
Expect(resp.PlayQueue.Entry).To(HaveLen(2))
|
|
Expect(resp.PlayQueue.Current).To(Equal(trackIDs[1]))
|
|
Expect(resp.PlayQueue.Position).To(Equal(int64(5000)))
|
|
Expect(resp.PlayQueue.Username).To(Equal(adminUser.UserName))
|
|
Expect(resp.PlayQueue.ChangedBy).To(Equal("test-client"))
|
|
})
|
|
|
|
It("getPlayQueueByIndex returns data with current index", func() {
|
|
resp := doReq("getPlayQueueByIndex")
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
Expect(resp.PlayQueueByIndex).ToNot(BeNil())
|
|
Expect(resp.PlayQueueByIndex.Entry).To(HaveLen(2))
|
|
Expect(resp.PlayQueueByIndex.CurrentIndex).ToNot(BeNil())
|
|
Expect(*resp.PlayQueueByIndex.CurrentIndex).To(Equal(1))
|
|
Expect(resp.PlayQueueByIndex.Position).To(Equal(int64(5000)))
|
|
})
|
|
|
|
It("savePlayQueueByIndex stores queue by index", func() {
|
|
resp := doReq("savePlayQueueByIndex",
|
|
"id", trackIDs[0],
|
|
"id", trackIDs[1],
|
|
"id", trackIDs[2],
|
|
"currentIndex", fmt.Sprintf("%d", 0),
|
|
"position", "9999",
|
|
)
|
|
|
|
Expect(resp.Status).To(Equal(responses.StatusOK))
|
|
|
|
// Verify with getPlayQueueByIndex
|
|
resp = doReq("getPlayQueueByIndex")
|
|
Expect(resp.PlayQueueByIndex).ToNot(BeNil())
|
|
Expect(resp.PlayQueueByIndex.Entry).To(HaveLen(3))
|
|
Expect(resp.PlayQueueByIndex.CurrentIndex).ToNot(BeNil())
|
|
Expect(*resp.PlayQueueByIndex.CurrentIndex).To(Equal(0))
|
|
Expect(resp.PlayQueueByIndex.Position).To(Equal(int64(9999)))
|
|
})
|
|
})
|
|
})
|