mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Moved responses package and started getMusicFolders endpoint
This commit is contained in:
parent
c6dfea51ff
commit
c8b7695b09
7 changed files with 40 additions and 3 deletions
|
@ -2,7 +2,7 @@ package controllers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"github.com/deluan/gosonic/responses"
|
"github.com/deluan/gosonic/controllers/responses"
|
||||||
)
|
)
|
||||||
|
|
||||||
type GetLicenseController struct{ beego.Controller }
|
type GetLicenseController struct{ beego.Controller }
|
||||||
|
|
1
controllers/get_music_folders.go
Normal file
1
controllers/get_music_folders.go
Normal file
|
@ -0,0 +1 @@
|
||||||
|
package controllers
|
|
@ -3,7 +3,7 @@ package controllers
|
||||||
import (
|
import (
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
"github.com/deluan/gosonic/responses"
|
"github.com/deluan/gosonic/controllers/responses"
|
||||||
)
|
)
|
||||||
|
|
||||||
type PingController struct{ beego.Controller }
|
type PingController struct{ beego.Controller }
|
||||||
|
|
36
tests/controllers/get_music_folders_test.go
Normal file
36
tests/controllers/get_music_folders_test.go
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
package test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
"net/http/httptest"
|
||||||
|
"testing"
|
||||||
|
"runtime"
|
||||||
|
"path/filepath"
|
||||||
|
_ "github.com/deluan/gosonic/routers"
|
||||||
|
|
||||||
|
"github.com/astaxie/beego"
|
||||||
|
. "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) {
|
||||||
|
r, _ := http.NewRequest("GET", "/rest/getMusicFolders.view", nil)
|
||||||
|
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("Status code should be 200", func() {
|
||||||
|
So(w.Code, ShouldEqual, 200)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
|
@ -10,8 +10,8 @@ import (
|
||||||
_ "github.com/deluan/gosonic/routers"
|
_ "github.com/deluan/gosonic/routers"
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
. "github.com/smartystreets/goconvey/convey"
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
"github.com/deluan/gosonic/responses"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/deluan/gosonic/controllers/responses"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue