Httptest를 사용하여 Go에서 HTTP 호출 테스트
httptest 패키지는 HTTP 클라이언트 및 서버를 테스트하는 기능을 제공합니다. Go 코드 테스트에 이 패키지를 활용하려면 다음 전략을 고려하세요.
응답 테스트:
httptest.NewRecorder()를 통해 새 레코더 인스턴스를 만듭니다. 이 레코더를 활용하여 응답 상태 코드와 본문 내용을 평가하세요.
예:
resp := httptest.NewRecorder() req, _ := http.NewRequest("GET", "/", nil) http.DefaultServeMux.ServeHTTP(resp, req) if resp.Code != http.StatusOK { t.Errorf("Expected status code 200, got %d", resp.Code) }
서버 테스트:
httptest.NewServer(http.HandlerFunc(func(w)를 사용하여 새 서버를 설정합니다. http.ResponseWriter, r *http.Request) {}) 이 서버는 HTTP 서버를 시뮬레이션하여 HTTP 클라이언트 상호 작용을 테스트할 수 있습니다.
예:
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, `{"fake twitter json string"}`) })) defer ts.Close() twitterUrl = ts.URL c := make(chan *twitterResult) go retrieveTweets(c) tweet := <-c if tweet != expected1 { t.Fail() }
위 내용은 Go의 `httptest` 패키지는 어떻게 HTTP 클라이언트 및 서버 테스트를 단순화할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!