3

私は以下のテストファイルを持っています:

package tests

import (
    "net/http"
    "net/http/httptest"
    "testing"
    "runtime"
    "path/filepath"
    _ "hello/routers"
    _ "github.com/lib/pq"

    "github.com/astaxie/beego"
    . "github.com/smartystreets/goconvey/convey"
)

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", "/api/testing", 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 tests/*.go

私は得る:

2015/01/14 23:55:19 [config.go:284] [W] open /home/IdeaProjects/go/src/hello/tests/conf/app.conf: no such file or directory 
[ORM]register db Ping `default`, pq: password authentication failed for user "hello"
must have one register DataBase alias named `default`
FAIL    command-line-arguments  0.008s

bee apiPGデータベース用のpq Postgres Driverを使用してBeegoをブートストラップしました。

また、なぜそれが探すべきファイルの/hello/tests/conf/app.confパスを見ているのかわかりません。app.conf/hello/conf/app.conf

これが起こっている理由はありますか?

4

1 に答える 1

0

PG があなたを認証できないのは、おそらくapp.confファイル内のパスワードが見つからないためです。また、間違った場所を探しているためにパスワードを見つけることもできません。

関数にある複雑な方法ではなく、構成への絶対パスを使用してみてくださいinit()

于 2015-01-14T13:11:49.883 に答える