mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
44 lines
1.4 KiB
Go
44 lines
1.4 KiB
Go
package subsonic_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
|
|
"github.com/navidrome/navidrome/server/subsonic"
|
|
"github.com/navidrome/navidrome/server/subsonic/responses"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("GetOpenSubsonicExtensions", func() {
|
|
var (
|
|
router *subsonic.Router
|
|
w *httptest.ResponseRecorder
|
|
r *http.Request
|
|
)
|
|
|
|
BeforeEach(func() {
|
|
router = subsonic.New(nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil)
|
|
w = httptest.NewRecorder()
|
|
r = httptest.NewRequest("GET", "/getOpenSubsonicExtensions?f=json", nil)
|
|
})
|
|
|
|
It("should return the correct OpenSubsonicExtensions", func() {
|
|
router.ServeHTTP(w, r)
|
|
|
|
// Make sure the endpoint is public, by not passing any authentication
|
|
Expect(w.Code).To(Equal(http.StatusOK))
|
|
Expect(w.Header().Get("Content-Type")).To(Equal("application/json"))
|
|
|
|
var response responses.JsonWrapper
|
|
err := json.Unmarshal(w.Body.Bytes(), &response)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(*response.Subsonic.OpenSubsonicExtensions).To(SatisfyAll(
|
|
HaveLen(3),
|
|
ContainElement(responses.OpenSubsonicExtension{Name: "transcodeOffset", Versions: []int32{1}}),
|
|
ContainElement(responses.OpenSubsonicExtension{Name: "formPost", Versions: []int32{1}}),
|
|
ContainElement(responses.OpenSubsonicExtension{Name: "songLyrics", Versions: []int32{1}}),
|
|
))
|
|
})
|
|
})
|