mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
Controller tests are in fact API tests
This commit is contained in:
parent
30be51517e
commit
f04ec42fdf
4 changed files with 4 additions and 4 deletions
48
tests/api/validation_test.go
Normal file
48
tests/api/validation_test.go
Normal file
|
@ -0,0 +1,48 @@
|
|||
package api_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"encoding/xml"
|
||||
_ "github.com/deluan/gosonic/routers"
|
||||
. "github.com/deluan/gosonic/tests"
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
"github.com/deluan/gosonic/controllers/responses"
|
||||
)
|
||||
|
||||
func TestCheckParams(t *testing.T) {
|
||||
_, w := Get("/rest/ping.view", "TestCheckParams")
|
||||
|
||||
Convey("Subject: CheckParams\n", t, func() {
|
||||
Convey("Status code should be 200", func() {
|
||||
So(w.Code, ShouldEqual, 200)
|
||||
})
|
||||
Convey("The errorCode should be 10", func() {
|
||||
So(w.Body.String(), ShouldContainSubstring, `error code="10" message=`)
|
||||
})
|
||||
Convey("The status should be 'fail'", func() {
|
||||
v := responses.Subsonic{}
|
||||
xml.Unmarshal(w.Body.Bytes(), &v)
|
||||
So(v.Status, ShouldEqual, "fail")
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
func TestAuthentication(t *testing.T) {
|
||||
_, w := Get("/rest/ping.view?u=INVALID&p=INVALID&c=test&v=1.0.0", "TestAuthentication")
|
||||
|
||||
Convey("Subject: Authentication\n", t, func() {
|
||||
Convey("Status code should be 200", func() {
|
||||
So(w.Code, ShouldEqual, 200)
|
||||
})
|
||||
Convey("The errorCode should be 10", func() {
|
||||
So(w.Body.String(), ShouldContainSubstring, `error code="40" message=`)
|
||||
})
|
||||
Convey("The status should be 'fail'", func() {
|
||||
v := responses.Subsonic{}
|
||||
xml.Unmarshal(w.Body.Bytes(), &v)
|
||||
So(v.Status, ShouldEqual, "fail")
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue