0

この go swagger 生成コードについて 2 つの質問があります。最初に go swagger で最初の API を作成しましたが、雇用主からユニットの実装 (go テスト) を求められましたが、通常の http テストを実行しようとしてもうまくいきません。これが私のテスト コードです。怒鳴る

// handlers_test.go
package handlers

import (
    "net/http"
    "net/http/httptest"
    "testing"
    "StocksApp/restapi/operations"
)

func TestStockHandler(t *testing.T) {
    // Create a request to pass to our handler. We don't have any query parameters for now, so we'll
    // pass 'nil' as the third parameter.
    req, err := http.NewRequest("GET", "/api/v1/stocks", nil)
    if err != nil {
        t.Fatal(err)
    }

    // We create a ResponseRecorder (which satisfies http.ResponseWriter) to record the response.
    rr := httptest.NewRecorder()
    handler := http.HandlerFunc(operations.StocksHandler)

    // Our handlers satisfy http.Handler, so we can call their ServeHTTP method
    // directly and pass in our Request and ResponseRecorder.
    handler.ServeHTTP(rr, req)

    // Check the status code is what we expect.
    if status := rr.Code; status != http.StatusOK {
        t.Errorf("handler returned wrong status code: got %v want %v",
            status, http.StatusOK)
    }

    // Check the response body is what we expect.
    expected := `{"alive": true}`
    if rr.Body.String() != expected {
        t.Errorf("handler returned unexpected body: got %v want %v",
            rr.Body.String(), expected)
    }
}

しかし、このエラーが発生し、解決方法がわかりません

# StocksApp/handlers [StocksApp/handlers.test]
.\handlers_test.go:21:32: type operations.StocksHandler is not an expression
FAIL    StocksApp/handlers [build failed]

第二に、go run main.go コマンドを実行するたびに、サーバーは別のポートで実行されます。サーバーが常に実行される永続的なポート番号をハードコーディングする方法を知りたいです。

4

1 に答える 1

0

メソッドを使用HandlerForして、操作に有効な http.Handler を取得できます。次の例を参照してください: https://github.com/go-swagger/go-swagger/blob/master/examples/generated/restapi/operations/petstore_api.go#L436

于 2022-01-14T15:27:53.297 に答える