http.Request.FormFile을 사용하여 파일 업로드와 관련된 엔드포인트를 테스트할 때 값이 있는 요청을 생성해야 합니다. 이 방법을 통해 검색할 수 있습니다.
httptest 라이브러리는 전체 FormFile 구조체를 모의하는 간단한 방법을 제공하지 않습니다. 그러나 mime/multipart 패키지를 사용하면 CreateFormFile 함수를 사용하여 FormFile을 생성할 수 있습니다.
<code class="go">func (w *Writer) CreateFormFile(fieldname, filename string) (io.Writer, error)</code>
이 함수는 필드 이름과 파일 이름을 매개변수로 사용하고 사용할 수 있는 io.Writer를 반환합니다. 실제 파일 데이터를 작성합니다.
테스트에서 CreateFormFile을 사용하려면 io.ReaderWriter 버퍼에 데이터를 쓰거나 io.Pipe를 사용할 수 있습니다. 다음 예에서는 io.Pipe를 사용합니다.
<code class="go">func TestUploadImage(t *testing.T) { // Set up a pipe to avoid buffering pr, pw := io.Pipe() // Create a multipart form data writer using the pipe as the destination writer := multipart.NewWriter(pw) go func() { defer writer.Close() // Create the 'fileupload' form data field part, err := writer.CreateFormFile("fileupload", "someimg.png") if err != nil { t.Error(err) } // Write an image to the form data field using an io.Writer interface // (e.g., png.Encode) }() // Read from the pipe, which contains the multipart form data generated by the multipart writer request := httptest.NewRequest("POST", "/", pr) request.Header.Add("Content-Type", writer.FormDataContentType()) response := httptest.NewRecorder() handler := UploadFileHandler() handler.ServeHTTP(response, request) // Assert HTTP status code and other test verifications }</code>
이 예에서는 이미지 패키지를 사용하여 이미지 파일을 동적으로 생성하고 io.Writer 인터페이스를 통해 멀티파트 기록기에 씁니다. 비슷한 접근 방식을 사용하여 다른 형식(예: CSV)의 데이터를 즉석에서 생성할 수도 있습니다.
위 내용은 Go 테스트에서 `http.Request.FormFile`을 모의하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!