mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-23 13:06:02 +03:00
64 lines
1.2 KiB
Go
64 lines
1.2 KiB
Go
package http
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"mime/multipart"
|
|
"net/http"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
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)
|
|
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()))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if _, err = io.Copy(formFile, file); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
writer.Close()
|
|
|
|
// create http post request
|
|
req, err := http.NewRequest(http.MethodPost, url, &body)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
req.Header.Add("Content-Type", writer.FormDataContentType())
|
|
|
|
// submit request
|
|
client := &http.Client{}
|
|
res, err := client.Do(req)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// check response
|
|
fmt.Println("== upload finish ==")
|
|
resBody, err := ioutil.ReadAll(res.Body)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
fmt.Println(res.StatusCode)
|
|
fmt.Println(res.Header)
|
|
res.Body.Close()
|
|
fmt.Println(string(resBody))
|
|
}
|