> 백엔드 개발 > Golang > Go 테스트에서 `http.Request.FormFile`을 모의하는 방법은 무엇입니까?

Go 테스트에서 `http.Request.FormFile`을 모의하는 방법은 무엇입니까?

Barbara Streisand
풀어 주다: 2024-10-31 12:31:02
원래의
913명이 탐색했습니다.

How to Mock `http.Request.FormFile` in Go Tests?

Go에서 Request.FormFile 테스트

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿