mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Tests refactored
This commit is contained in:
parent
975327a6cb
commit
086d8e1578
5 changed files with 33 additions and 80 deletions
|
@ -1,33 +1,15 @@
|
||||||
package test
|
package test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"net/http"
|
|
||||||
"net/http/httptest"
|
|
||||||
"testing"
|
"testing"
|
||||||
"runtime"
|
|
||||||
"path/filepath"
|
|
||||||
_ "github.com/deluan/gosonic/routers"
|
_ "github.com/deluan/gosonic/routers"
|
||||||
|
. "github.com/deluan/gosonic/tests"
|
||||||
"github.com/astaxie/beego"
|
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"fmt"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"github.com/deluan/gosonic/tests"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
|
||||||
_, file, _, _ := runtime.Caller(1)
|
|
||||||
appPath, _ := filepath.Abs(filepath.Dir(filepath.Join(file, "../.." + string(filepath.Separator))))
|
|
||||||
beego.TestBeegoInit(appPath)
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestGet is a sample to run an endpoint test
|
|
||||||
func TestGetLicense(t *testing.T) {
|
func TestGetLicense(t *testing.T) {
|
||||||
r, _ := http.NewRequest("GET", test.AddParams("/rest/getLicense.view"), nil)
|
_, w := Get(AddParams("/rest/getLicense.view"), "TestGetLicense")
|
||||||
w := httptest.NewRecorder()
|
|
||||||
beego.BeeApp.Handlers.ServeHTTP(w, r)
|
|
||||||
|
|
||||||
beego.Trace("testing", "TestGetLicense", fmt.Sprintf("Code[%d]\n%s", w.Code, w.Body.String()))
|
|
||||||
|
|
||||||
Convey("Subject: GetLicense Endpoint\n", t, func() {
|
Convey("Subject: GetLicense Endpoint\n", t, func() {
|
||||||
Convey("Status code should be 200", func() {
|
Convey("Status code should be 200", func() {
|
||||||
|
|
|
@ -1,31 +1,15 @@
|
||||||
package test
|
package test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"net/http"
|
|
||||||
"net/http/httptest"
|
|
||||||
"testing"
|
"testing"
|
||||||
"runtime"
|
|
||||||
"path/filepath"
|
|
||||||
_ "github.com/deluan/gosonic/routers"
|
_ "github.com/deluan/gosonic/routers"
|
||||||
|
. "github.com/deluan/gosonic/tests"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"fmt"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
|
||||||
_, file, _, _ := runtime.Caller(1)
|
|
||||||
appPath, _ := filepath.Abs(filepath.Dir(filepath.Join(file, "../.." + string(filepath.Separator))))
|
|
||||||
beego.TestBeegoInit(appPath)
|
|
||||||
}
|
|
||||||
|
|
||||||
// TestGet is a sample to run an endpoint test
|
|
||||||
func TestGetMusicFolders(t *testing.T) {
|
func TestGetMusicFolders(t *testing.T) {
|
||||||
r, _ := http.NewRequest("GET", "/rest/getMusicFolders.view", nil)
|
_, w := Get(AddParams("/rest/getMusicFolders.view"), "TestGetMusicFolders")
|
||||||
w := httptest.NewRecorder()
|
|
||||||
beego.BeeApp.Handlers.ServeHTTP(w, r)
|
|
||||||
|
|
||||||
beego.Trace("testing", "TestGetMusicFolders", fmt.Sprintf("Code[%d]\n%s", w.Code, w.Body.String()))
|
|
||||||
|
|
||||||
Convey("Subject: GetMusicFolders Endpoint\n", t, func() {
|
Convey("Subject: GetMusicFolders Endpoint\n", t, func() {
|
||||||
Convey("Status code should be 200", func() {
|
Convey("Status code should be 200", func() {
|
||||||
|
|
|
@ -1,32 +1,16 @@
|
||||||
package test
|
package test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"net/http"
|
|
||||||
"net/http/httptest"
|
|
||||||
"testing"
|
"testing"
|
||||||
"runtime"
|
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"path/filepath"
|
|
||||||
_ "github.com/deluan/gosonic/routers"
|
_ "github.com/deluan/gosonic/routers"
|
||||||
"github.com/astaxie/beego"
|
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"fmt"
|
|
||||||
"github.com/deluan/gosonic/controllers/responses"
|
"github.com/deluan/gosonic/controllers/responses"
|
||||||
"github.com/deluan/gosonic/tests"
|
. "github.com/deluan/gosonic/tests"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
|
||||||
_, file, _, _ := runtime.Caller(1)
|
|
||||||
appPath, _ := filepath.Abs(filepath.Dir(filepath.Join(file, "../.." + string(filepath.Separator))))
|
|
||||||
beego.TestBeegoInit(appPath)
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestPing(t *testing.T) {
|
func TestPing(t *testing.T) {
|
||||||
r, _ := http.NewRequest("GET", test.AddParams("/rest/ping.view"), nil)
|
_, w := Get(AddParams("/rest/ping.view"), "TestPing")
|
||||||
w := httptest.NewRecorder()
|
|
||||||
beego.BeeApp.Handlers.ServeHTTP(w, r)
|
|
||||||
|
|
||||||
beego.Trace("testing", "TestPing", fmt.Sprintf("\nUrl: %s\n\nCode[%d]\n%s", r.URL, w.Code, w.Body.String()))
|
|
||||||
|
|
||||||
Convey("Subject: Ping Endpoint\n", t, func() {
|
Convey("Subject: Ping Endpoint\n", t, func() {
|
||||||
Convey("Status code should be 200", func() {
|
Convey("Status code should be 200", func() {
|
||||||
|
|
|
@ -1,31 +1,16 @@
|
||||||
package test
|
package test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"net/http"
|
|
||||||
"net/http/httptest"
|
|
||||||
"testing"
|
"testing"
|
||||||
"runtime"
|
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"path/filepath"
|
|
||||||
_ "github.com/deluan/gosonic/routers"
|
_ "github.com/deluan/gosonic/routers"
|
||||||
"github.com/astaxie/beego"
|
. "github.com/deluan/gosonic/tests"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"fmt"
|
|
||||||
"github.com/deluan/gosonic/controllers/responses"
|
"github.com/deluan/gosonic/controllers/responses"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
|
||||||
_, file, _, _ := runtime.Caller(1)
|
|
||||||
appPath, _ := filepath.Abs(filepath.Dir(filepath.Join(file, "../.." + string(filepath.Separator))))
|
|
||||||
beego.TestBeegoInit(appPath)
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestCheckParams(t *testing.T) {
|
func TestCheckParams(t *testing.T) {
|
||||||
r, _ := http.NewRequest("GET", "/rest/ping.view", nil)
|
_, w := Get("/rest/ping.view", "TestCheckParams")
|
||||||
w := httptest.NewRecorder()
|
|
||||||
beego.BeeApp.Handlers.ServeHTTP(w, r)
|
|
||||||
|
|
||||||
beego.Trace("testing", "TestCheckParams", fmt.Sprintf("\nUrl: %s\n\nCode[%d]\n%s", r.URL, w.Code, w.Body.String()))
|
|
||||||
|
|
||||||
Convey("Subject: Validation\n", t, func() {
|
Convey("Subject: Validation\n", t, func() {
|
||||||
Convey("Status code should be 200", func() {
|
Convey("Status code should be 200", func() {
|
||||||
|
@ -43,11 +28,7 @@ func TestCheckParams(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestAuthentication(t *testing.T) {
|
func TestAuthentication(t *testing.T) {
|
||||||
r, _ := http.NewRequest("GET", "/rest/ping.view?u=INVALID&p=INVALID&c=test&v=1.0.0", nil)
|
_, w := Get("/rest/ping.view?u=INVALID&p=INVALID&c=test&v=1.0.0", "TestAuthentication")
|
||||||
w := httptest.NewRecorder()
|
|
||||||
beego.BeeApp.Handlers.ServeHTTP(w, r)
|
|
||||||
|
|
||||||
beego.Trace("testing", "TestCheckParams", fmt.Sprintf("\nUrl: %s\n\nCode[%d]\n%s", r.URL, w.Code, w.Body.String()))
|
|
||||||
|
|
||||||
Convey("Subject: Validation\n", t, func() {
|
Convey("Subject: Validation\n", t, func() {
|
||||||
Convey("Status code should be 200", func() {
|
Convey("Status code should be 200", func() {
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
package test
|
package test
|
||||||
|
|
||||||
import "fmt"
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/astaxie/beego"
|
||||||
|
"net/http/httptest"
|
||||||
|
"net/http"
|
||||||
|
"path/filepath"
|
||||||
|
"runtime"
|
||||||
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
testUser = "deluan"
|
testUser = "deluan"
|
||||||
|
@ -9,8 +16,23 @@ const (
|
||||||
testVersion = "1.0.0"
|
testVersion = "1.0.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
_, file, _, _ := runtime.Caller(1)
|
||||||
|
appPath, _ := filepath.Abs(filepath.Dir(filepath.Join(file, ".." + string(filepath.Separator))))
|
||||||
|
beego.TestBeegoInit(appPath)
|
||||||
|
}
|
||||||
|
|
||||||
func AddParams(url string) string {
|
func AddParams(url string) string {
|
||||||
return fmt.Sprintf("%s?u=%s&p=%s&c=%s&v=%s", url, testUser, testPassword, testClient, testVersion)
|
return fmt.Sprintf("%s?u=%s&p=%s&c=%s&v=%s", url, testUser, testPassword, testClient, testVersion)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Get(url string, methodName string) (*http.Request, *httptest.ResponseRecorder) {
|
||||||
|
r, _ := http.NewRequest("GET", url, nil)
|
||||||
|
w := httptest.NewRecorder()
|
||||||
|
beego.BeeApp.Handlers.ServeHTTP(w, r)
|
||||||
|
|
||||||
|
beego.Trace("testing", methodName, fmt.Sprintf("\nUrl: %s\n\nCode[%d]\n%s", r.URL, w.Code, w.Body.String()))
|
||||||
|
|
||||||
|
return r, w
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue