UT上传文件的方法
How to UT upload files
我正在为我的 GraphQL API 制作 UT。我需要在上传文件的地方测试突变。
我在这个项目上使用 gqlgen。
...
localFile, err := os.Open("./file.xlsx")
if err != nil {
fmt.Errorf(err.Error())
}
c.MustPost(queries.UPLOAD_CSV, &resp, client.Var("id", id), client.Var("file", localFile), client.AddHeader("Authorization", "Bearer "+hub.AccessToken))
c.MustPost 恐慌并发送错误:
--- FAIL: TestUploadCSV (0.00s)
panic: [{"message":"map[string]interface {} is not an Upload","path":["uploadCSV","file"]}] [recovered]
panic: [{"message":"map[string]interface {} is not an Upload","path":["uploadCSV","file"]}]
如何将 localFile
发送到我的 API?我考虑过通过 curl 实现它,但我不确定这样做是否是一种干净的方法。
你不能就这样传递 os.File
。您需要实际读取文件,构造 MIME 多部分请求正文(请参阅 spec)并在 POST 请求中发送它。
buf := &bytes.Buffer{}
w := multipart.NewWriter(...)
// add other required fields (operations, map) here
// load file (you can do these directly I am emphasizing them
// as variables so code below is more understandable
fileKey := "0" // file key in 'map'
fileName := "file.xslx" // file name
fileContentType := "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
fileContents, err := ioutil.ReadFile("./file.xlsx")
// ...
// make multipart body
h := make(textproto.MIMEHeader)
h.Set("Content-Disposition", fmt.Sprintf(`form-data; name="%s"; filename="%s"`, fileKey, fileName))
h.Set("Content-Type", fileContentType)
ff, err := bodyWriter.CreatePart(h)
// ...
_, err = ff.Write(fileContents)
// ...
err = bodyWriter.Close()
// ...
req, err := http.NewRequest("POST", fmt.Sprintf("https://endpoint"), buf)
//...
在 gqlgen
存储库本身中有一个很好的工作示例:example/fileupload/fileupload_test.go.
在该示例中,每个文件都加载到(并由其表示)file
在我链接的行上定义的结构类型,乍一看可能有点混乱。
我正在为我的 GraphQL API 制作 UT。我需要在上传文件的地方测试突变。 我在这个项目上使用 gqlgen。
...
localFile, err := os.Open("./file.xlsx")
if err != nil {
fmt.Errorf(err.Error())
}
c.MustPost(queries.UPLOAD_CSV, &resp, client.Var("id", id), client.Var("file", localFile), client.AddHeader("Authorization", "Bearer "+hub.AccessToken))
c.MustPost 恐慌并发送错误:
--- FAIL: TestUploadCSV (0.00s)
panic: [{"message":"map[string]interface {} is not an Upload","path":["uploadCSV","file"]}] [recovered]
panic: [{"message":"map[string]interface {} is not an Upload","path":["uploadCSV","file"]}]
如何将 localFile
发送到我的 API?我考虑过通过 curl 实现它,但我不确定这样做是否是一种干净的方法。
你不能就这样传递 os.File
。您需要实际读取文件,构造 MIME 多部分请求正文(请参阅 spec)并在 POST 请求中发送它。
buf := &bytes.Buffer{}
w := multipart.NewWriter(...)
// add other required fields (operations, map) here
// load file (you can do these directly I am emphasizing them
// as variables so code below is more understandable
fileKey := "0" // file key in 'map'
fileName := "file.xslx" // file name
fileContentType := "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
fileContents, err := ioutil.ReadFile("./file.xlsx")
// ...
// make multipart body
h := make(textproto.MIMEHeader)
h.Set("Content-Disposition", fmt.Sprintf(`form-data; name="%s"; filename="%s"`, fileKey, fileName))
h.Set("Content-Type", fileContentType)
ff, err := bodyWriter.CreatePart(h)
// ...
_, err = ff.Write(fileContents)
// ...
err = bodyWriter.Close()
// ...
req, err := http.NewRequest("POST", fmt.Sprintf("https://endpoint"), buf)
//...
在 gqlgen
存储库本身中有一个很好的工作示例:example/fileupload/fileupload_test.go.
在该示例中,每个文件都加载到(并由其表示)file
在我链接的行上定义的结构类型,乍一看可能有点混乱。