-
Notifications
You must be signed in to change notification settings - Fork 0
/
webreq_post_test.go
52 lines (44 loc) · 1022 Bytes
/
webreq_post_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package webreq_test
import (
"encoding/json"
"github.com/tonnytg/webreq"
"testing"
"time"
)
type Friend struct {
CreatedAt time.Time `json:"createdAt"`
Name string `json:"name"`
Job string `json:"job"`
FamilyName string `json:"familyName"`
}
func TestPackagePost(t *testing.T) {
headers := webreq.NewHeaders(nil)
headers.Add("Content-Type", "application/json")
if len(headers.ListHeaders) != 1 {
t.Error("headers is empty")
}
f := Friend{
CreatedAt: time.Now(),
Name: "Tonny",
Job: "Developer",
FamilyName: "Gomes",
}
// convert f to bytes
fBytes, err := json.Marshal(f)
if err != nil {
t.Error(err)
}
request := webreq.NewRequest("POST")
request.SetURL("https://examples.com/values")
request.SetData(fBytes)
request.SetHeaders(headers.ListHeaders) // Set map directly
request.SetTimeout(10)
body, err := request.Execute()
if err != nil {
t.Error(err)
}
bodyString := string(body)
if bodyString == "" {
t.Error("body is empty")
}
}