From 1c71600431df7167c583e5c6b35ccd38b3e5d027 Mon Sep 17 00:00:00 2001 From: Bruce Date: Wed, 19 Sep 2018 15:19:35 +0800 Subject: [PATCH] test http post --- playground/http/upload_test.go | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/playground/http/upload_test.go b/playground/http/upload_test.go index 2caed0c..50fc56f 100644 --- a/playground/http/upload_test.go +++ b/playground/http/upload_test.go @@ -7,7 +7,6 @@ import ( "io/ioutil" "mime/multipart" "net/http" - "os" "path/filepath" "testing" ) @@ -16,22 +15,21 @@ func TestUploadFormFile(t *testing.T) { var filePath = "/Users/bruce/Desktop/HVAC-CoolMasterNet.yml" var url = "http://localhost:48081/api/v1/deviceprofile/uploadfile" - // fetch file - file, err := os.Open(filePath) + // Retch file + fmt.Println("Read file: ", filepath.Base(filePath)) + yamlFile, err := ioutil.ReadFile(filePath) if err != nil { t.Fatal(err) } - defer file.Close() // create form data var body bytes.Buffer writer := multipart.NewWriter(&body) - fmt.Println(filepath.Base(file.Name())) - formFile, err := writer.CreateFormFile("file", filepath.Base(file.Name())) + formFile, err := writer.CreateFormFile("file", filepath.Base(filePath)) if err != nil { t.Fatal(err) } - if _, err = io.Copy(formFile, file); err != nil { + if _, err = io.Copy(formFile, bytes.NewReader(yamlFile)); err != nil { t.Fatal(err) } writer.Close()