-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GQLgen test client to work with multipart form data (take 2) (#…
…1661) * Update GQLgen test client to work with multipart form data Update the GQLgen to support multipart form data, like those present within the fileupload examples. - Add missing space between "unsupported encoding " and failing content-type header error (cherry picked from commit 101842f) * Add WithFiles client option for fileupload GQLgen client tests Add a `WithFiles` GQLgen client option to support the fileupload input within tests, using the core Golang `os` package and File type, which converts `os.File`s to their appropriate multipart form data within a request. - If there are no files this should just simply convert a `application/json` Content-Type to supported `multipart/form-data` (cherry picked from commit 08ef942) * Update fileupload test to use GQLgen test client Update the fileupload test to use the GQLgen test client and `WithFiles` option to remove the need for `createUploadRequest` helper with raw http posts - Fix setting the Content Type by using the appropriate `http` package function to dectect it + https://godoc.org/net/http#DetectContentType (cherry picked from commit 5e573d5) * Update WithFiles option test with multipart Reader (cherry picked from commit 6dfa3cb) * Update file upload tests `WithFiles` option Update the file upload tests to use the GQL test client and its `WithFiles` option to remove the need for a custom raw HTTP post request builder `createUploadRequest`. - Also update `WithFiles` option to group & map identical files; e.g. ``` { "0": ["variables.req.0.file", "variables.req.1.file"] } ``` (cherry picked from commit 486d9f1) * Make sure `WithFiles` does not add duplicates to multipart form data (cherry picked from commit 0c2364d) * Fix use of byte vs string in `WithFiles` tests (cherry picked from commit ba10b5b) * Fix strict withFiles option test for race conditions Fix a problem with how strict the test's expected response was for tests with files in their request, since it always expected a strict order of files input that is somewhat random or dependent on what OS it is running the test on and/or race condition
- Loading branch information
Showing
5 changed files
with
538 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
package client | ||
|
||
import ( | ||
"bytes" | ||
"encoding/json" | ||
"fmt" | ||
"io/ioutil" | ||
"mime/multipart" | ||
"net/http" | ||
"net/textproto" | ||
"os" | ||
"strings" | ||
) | ||
|
||
type fileFormDataMap struct { | ||
mapKey string | ||
file *os.File | ||
} | ||
|
||
func findFiles(parentMapKey string, variables map[string]interface{}) []*fileFormDataMap { | ||
files := []*fileFormDataMap{} | ||
for key, value := range variables { | ||
if v, ok := value.(map[string]interface{}); ok { | ||
files = append(files, findFiles(parentMapKey+"."+key, v)...) | ||
} else if v, ok := value.([]map[string]interface{}); ok { | ||
for i, arr := range v { | ||
files = append(files, findFiles(fmt.Sprintf(`%s.%s.%d`, parentMapKey, key, i), arr)...) | ||
} | ||
} else if v, ok := value.([]*os.File); ok { | ||
for i, file := range v { | ||
files = append(files, &fileFormDataMap{ | ||
mapKey: fmt.Sprintf(`%s.%s.%d`, parentMapKey, key, i), | ||
file: file, | ||
}) | ||
} | ||
} else if v, ok := value.(*os.File); ok { | ||
files = append(files, &fileFormDataMap{ | ||
mapKey: parentMapKey + "." + key, | ||
file: v, | ||
}) | ||
} | ||
} | ||
|
||
return files | ||
} | ||
|
||
// WithFiles encodes the outgoing request body as multipart form data for file variables | ||
func WithFiles() Option { | ||
return func(bd *Request) { | ||
bodyBuf := &bytes.Buffer{} | ||
bodyWriter := multipart.NewWriter(bodyBuf) | ||
|
||
//-b7955bd2e1d17b67ac157b9e9ddb6238888caefc6f3541920a1debad284d | ||
// Content-Disposition: form-data; name="operations" | ||
// | ||
// {"query":"mutation ($input: Input!) {}","variables":{"input":{"file":{}}} | ||
requestBody, _ := json.Marshal(bd) | ||
bodyWriter.WriteField("operations", string(requestBody)) | ||
|
||
// --b7955bd2e1d17b67ac157b9e9ddb6238888caefc6f3541920a1debad284d | ||
// Content-Disposition: form-data; name="map" | ||
// | ||
// `{ "0":["variables.input.file"] }` | ||
// or | ||
// `{ "0":["variables.input.files.0"], "1":["variables.input.files.1"] }` | ||
// or | ||
// `{ "0": ["variables.input.0.file"], "1": ["variables.input.1.file"] }` | ||
// or | ||
// `{ "0": ["variables.req.0.file", "variables.req.1.file"] }` | ||
mapData := "" | ||
filesData := findFiles("variables", bd.Variables) | ||
filesGroup := [][]*fileFormDataMap{} | ||
for _, fd := range filesData { | ||
foundDuplicate := false | ||
for j, fg := range filesGroup { | ||
f1, _ := fd.file.Stat() | ||
f2, _ := fg[0].file.Stat() | ||
if os.SameFile(f1, f2) { | ||
foundDuplicate = true | ||
filesGroup[j] = append(filesGroup[j], fd) | ||
} | ||
} | ||
|
||
if !foundDuplicate { | ||
filesGroup = append(filesGroup, []*fileFormDataMap{fd}) | ||
} | ||
} | ||
if len(filesGroup) > 0 { | ||
mapDataFiles := []string{} | ||
|
||
for i, fileData := range filesGroup { | ||
mapDataFiles = append( | ||
mapDataFiles, | ||
fmt.Sprintf(`"%d":[%s]`, i, strings.Join(collect(fileData, wrapMapKeyInQuotes), ",")), | ||
) | ||
} | ||
|
||
mapData = `{` + strings.Join(mapDataFiles, ",") + `}` | ||
} | ||
bodyWriter.WriteField("map", mapData) | ||
|
||
// --b7955bd2e1d17b67ac157b9e9ddb6238888caefc6f3541920a1debad284d | ||
// Content-Disposition: form-data; name="0"; filename="tempFile" | ||
// Content-Type: text/plain; charset=utf-8 | ||
// or | ||
// Content-Type: application/octet-stream | ||
// | ||
for i, fileData := range filesGroup { | ||
h := make(textproto.MIMEHeader) | ||
h.Set("Content-Disposition", fmt.Sprintf(`form-data; name="%d"; filename="%s"`, i, fileData[0].file.Name())) | ||
b, _ := ioutil.ReadFile(fileData[0].file.Name()) | ||
h.Set("Content-Type", http.DetectContentType(b)) | ||
ff, _ := bodyWriter.CreatePart(h) | ||
ff.Write(b) | ||
} | ||
bodyWriter.Close() | ||
|
||
bd.HTTP.Body = ioutil.NopCloser(bodyBuf) | ||
bd.HTTP.Header.Set("Content-Type", bodyWriter.FormDataContentType()) | ||
} | ||
} | ||
|
||
func collect(strArr []*fileFormDataMap, f func(s *fileFormDataMap) string) []string { | ||
result := make([]string, len(strArr)) | ||
for i, str := range strArr { | ||
result[i] = f(str) | ||
} | ||
return result | ||
} | ||
|
||
func wrapMapKeyInQuotes(s *fileFormDataMap) string { | ||
return fmt.Sprintf("\"%s\"", s.mapKey) | ||
} |
Oops, something went wrong.