mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
64 lines
2.5 KiB
Go
64 lines
2.5 KiB
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"github.com/navidrome/navidrome/conf"
|
|
"github.com/navidrome/navidrome/conf/configtest"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("AbsoluteURL", func() {
|
|
BeforeEach(func() {
|
|
DeferCleanup(configtest.SetupConfig())
|
|
})
|
|
When("BaseURL is empty", func() {
|
|
BeforeEach(func() {
|
|
conf.Server.BasePath = ""
|
|
})
|
|
It("uses the scheme/host from the request", func() {
|
|
r, _ := http.NewRequest("GET", "https://myserver.com/rest/ping?id=123", nil)
|
|
actual := AbsoluteURL(r, "/share/img/123", url.Values{"a": []string{"xyz"}})
|
|
Expect(actual).To(Equal("https://myserver.com/share/img/123?a=xyz"))
|
|
})
|
|
It("does not override provided schema/host", func() {
|
|
r, _ := http.NewRequest("GET", "http://127.0.0.1/rest/ping?id=123", nil)
|
|
actual := AbsoluteURL(r, "http://public.myserver.com/share/img/123", url.Values{"a": []string{"xyz"}})
|
|
Expect(actual).To(Equal("http://public.myserver.com/share/img/123?a=xyz"))
|
|
})
|
|
})
|
|
When("BaseURL has only path", func() {
|
|
BeforeEach(func() {
|
|
conf.Server.BasePath = "/music"
|
|
})
|
|
It("uses the scheme/host from the request", func() {
|
|
r, _ := http.NewRequest("GET", "https://myserver.com/rest/ping?id=123", nil)
|
|
actual := AbsoluteURL(r, "/share/img/123", url.Values{"a": []string{"xyz"}})
|
|
Expect(actual).To(Equal("https://myserver.com/music/share/img/123?a=xyz"))
|
|
})
|
|
It("does not override provided schema/host", func() {
|
|
r, _ := http.NewRequest("GET", "http://127.0.0.1/rest/ping?id=123", nil)
|
|
actual := AbsoluteURL(r, "http://public.myserver.com/share/img/123", url.Values{"a": []string{"xyz"}})
|
|
Expect(actual).To(Equal("http://public.myserver.com/share/img/123?a=xyz"))
|
|
})
|
|
})
|
|
When("BaseURL has full URL", func() {
|
|
BeforeEach(func() {
|
|
conf.Server.BaseScheme = "https"
|
|
conf.Server.BaseHost = "myserver.com:8080"
|
|
conf.Server.BasePath = "/music"
|
|
})
|
|
It("use the configured scheme/host/path", func() {
|
|
r, _ := http.NewRequest("GET", "https://localhost:4533/rest/ping?id=123", nil)
|
|
actual := AbsoluteURL(r, "/share/img/123", url.Values{"a": []string{"xyz"}})
|
|
Expect(actual).To(Equal("https://myserver.com:8080/music/share/img/123?a=xyz"))
|
|
})
|
|
It("does not override provided schema/host", func() {
|
|
r, _ := http.NewRequest("GET", "http://127.0.0.1/rest/ping?id=123", nil)
|
|
actual := AbsoluteURL(r, "http://public.myserver.com/share/img/123", url.Values{"a": []string{"xyz"}})
|
|
Expect(actual).To(Equal("http://public.myserver.com/share/img/123?a=xyz"))
|
|
})
|
|
})
|
|
})
|