Apabila menguji laluan Chi yang bergantung pada pembolehubah laluan, adalah penting untuk meniru akses kepada pembolehubah ini dalam ujian. Pada mulanya, anda mungkin menghadapi ralat "Entiti Tidak Boleh Diproses" disebabkan pembolehubah laluan tidak tersedia untuk konteks yang diakses dalam ujian.
Untuk menyelesaikan isu ini, tambahkan secara manual parameter laluan ke konteks permintaan sebelum melaksanakan pengendali di bawah ujian. Berikut ialah contoh:
<code class="go">package main import ( "context" "fmt" "net/http" "net/http/httptest" "testing" "github.com/go-chi/chi" ) type ctxKey struct { name string } func TestGetArticleID(t *testing.T) { tests := []struct { name string rec *httptest.ResponseRecorder req *http.Request expectedBody string expectedHeader string }{ { name: "OK_1", rec: httptest.NewRecorder(), req: httptest.NewRequest("GET", "/articles/1", nil), expectedBody: `article ID:1`, }, { name: "OK_100", rec: httptest.NewRecorder(), req: httptest.NewRequest("GET", "/articles/100", nil), expectedBody: `article ID:100`, }, { name: "BAD_REQUEST", rec: httptest.NewRecorder(), req: httptest.NewRequest("PUT", "/articles/bad", nil), expectedBody: fmt.Sprintf("%s\n", http.StatusText(http.StatusBadRequest)), }, } for _, test := range tests { t.Run(test.name, func(t *testing.T) { // Manually add the path variable to the request context rctx := chi.NewRouteContext() rctx.URLParams.Add("articleID", test.req.URL.Path[len("/articles/"):]) test.req = test.req.WithContext(context.WithValue(test.req.Context(), chi.RouteCtxKey, rctx)) ArticleCtx(http.HandlerFunc(GetArticleID)).ServeHTTP(test.rec, test.req) if test.expectedBody != test.rec.Body.String() { t.Errorf("Got: \t\t%s\n\tExpected: \t%s\n", test.rec.Body.String(), test.expectedBody) } }) } }</code>
Pengubahsuaian ini membenarkan ujian mengakses pembolehubah laluan melalui konteks, menyelesaikan ralat "Entiti Tidak Boleh Diproses".
Atas ialah kandungan terperinci Bagaimana untuk Mengakses Pembolehubah Laluan dalam Laluan Chi untuk Ujian Unit?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!