mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
27 lines
628 B
Go
27 lines
628 B
Go
package api_test
|
|
|
|
import (
|
|
"encoding/xml"
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
"testing"
|
|
"github.com/deluan/gosonic/tests"
|
|
)
|
|
|
|
func TestGetLicense(t *testing.T) {
|
|
tests.Init(t, false)
|
|
|
|
_, w := Get(AddParams("/rest/getLicense.view"), "TestGetLicense")
|
|
|
|
Convey("Subject: GetLicense Endpoint", t, func() {
|
|
Convey("Status code should be 200", func() {
|
|
So(w.Code, ShouldEqual, 200)
|
|
})
|
|
Convey("The license should always be valid", func() {
|
|
v := new(string)
|
|
err := xml.Unmarshal(w.Body.Bytes(), &v)
|
|
So(err, ShouldBeNil)
|
|
So(w.Body.String(), ShouldContainSubstring, `license valid="true"`)
|
|
})
|
|
|
|
})
|
|
}
|