-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
107 lines (80 loc) · 1.88 KB
/
main_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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package main
import (
"io/ioutil"
"net/http"
"testing"
)
func TestRunMain(t *testing.T) {
go main()
}
func TestGetRequest(t *testing.T) {
client := &http.Client{}
r, _ := http.NewRequest("GET", "http://localhost:8181", nil)
resp, err := client.Do(r)
if err != nil {
t.Errorf("Error with response")
}
defer resp.Body.Close()
bodyBytes, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Errorf("Error with body")
}
bodyString := string(bodyBytes)
if bodyString != "Index Page" {
t.Errorf("Error with body content")
}
}
func TestProducts(t *testing.T) {
// go main()
client := &http.Client{}
r, _ := http.NewRequest("GET", "http://localhost:8181/products/1", nil)
resp, err := client.Do(r)
if err != nil {
t.Errorf("Error with response")
}
defer resp.Body.Close()
bodyBytes, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Errorf("Error with body")
}
bodyString := string(bodyBytes)
if bodyString != "id=1" {
t.Errorf("Error with body content")
}
}
func TestArticlesGet(t *testing.T) {
// go main()
client := &http.Client{}
r, _ := http.NewRequest("GET", "http://localhost:8181/articles/1", nil)
resp, err := client.Do(r)
if err != nil {
t.Errorf("Error with response")
}
defer resp.Body.Close()
bodyBytes, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Errorf("Error with body")
}
bodyString := string(bodyBytes)
if bodyString != "" {
t.Errorf("Error with body content")
}
}
func TestArticlesPost(t *testing.T) {
// go main()
client := &http.Client{}
r, _ := http.NewRequest("POST", "http://localhost:8181/articles/1", nil)
resp, err := client.Do(r)
if err != nil {
t.Errorf("Error with response")
}
defer resp.Body.Close()
bodyBytes, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Errorf("Error with body")
}
bodyString := string(bodyBytes)
if bodyString != "id=1" {
t.Errorf("Error with body content")
}
}