我正在测试 beego 的 http 自定义端点
package test
import (
"github.com/astaxie/beego"
. "github.com/smartystreets/goconvey/convey"
_ "golife-api-cons/routers"
"net/http"
"net/http/httptest"
"path/filepath"
"runtime"
"testing"
)
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 TestGet(t *testing.T) {
r, _ := http.NewRequest("GET", "/my/endpoint/fetches/data", nil)
w := httptest.NewRecorder()
beego.BeeApp.Handlers.ServeHTTP(w, r)
beego.Trace("testing", "TestGet", "Code[%d]\n%s", w.Code, w.Body.String())
Convey("Subject: Test Station Endpoint\n", t, func() {
Convey("Status Code Should Be 200", func() {
So(w.Code, ShouldEqual, 200)
})
Convey("The Result Should Not Be Empty", func() {
So(w.Body.Len(), ShouldBeGreaterThan, 0)
})
})
}
当我运行时go test -v
,
我得到回应dial tcp :0: getsockopt: connection refused
我正在使用在本地运行的 MariaDB,我已经验证使用netstat -tulpn
我的数据库运行良好(如果我使用邮递员并且我的服务器正在运行,我会得到有效的响应)
一个奇怪的观察,在包含行之后,_ "golife-api-cons/routers"
我什至在运行测试之前就收到了这个错误
我的测试通过了响应 200 OK,但没有任何数据,因为我得到了上述错误的响应
编辑
TestBeegoInit
使用的函数使用的默认路径/path/to/my/project/test
不是所需的路径,所以我也尝试给出绝对路径,但我仍然无法连接数据库。