-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc.go
94 lines (81 loc) · 2.22 KB
/
doc.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
/*
Package simular provides tools for mocking HTTP responses.
Simple Example:
func TestFetchArticles(t *testing.T) {
simular.Activate()
defer simular.DeactivateAndReset()
simular.RegisterStubRequests(
simular.NewStubRequest(
"GET",
"https://api.mybiz.com/articles.json",
simular.NewStringResponder(200, `[{"id": 1, "name": "My Great Article"}]`),
),
)
// do stuff that makes a request to articles.json
// verify that all stubs were called
if err := simular.AllStubsCalled(); err != nil {
t.Errorf("Not all stubs were called: %s", err)
}
}
Advanced Example:
func TestFetchArticles(t *testing.T) {
simular.Activate(
WithAllowedHosts("localhost"),
)
defer simular.DeactivateAndReset()
// our database of articles
articles := make([]map[string]interface{}, 0)
// mock to list out the articles
simular.RegisterStubRequests(
simular.NewStubRequest(
"GET",
"https://api.mybiz.com/articles.json",
func(req *http.Request) (*http.Response, error) {
resp, err := simular.NewJsonResponse(200, articles)
if err != nil {
return simular.NewStringResponse(500, ""), nil
}
return resp
},
simular.WithHeader(
&http.Header{
"Api-Key": []string{"1234abcd"},
},
),
),
)
// mock to add a new article
simular.RegisterStubRequests(
simular.NewStubRequest(
"POST",
"https://api.mybiz.com/articles.json",
func(req *http.Request) (*http.Response, error) {
article := make(map[string]interface{})
if err := json.NewDecoder(req.Body).Decode(&article); err != nil {
return simular.NewStringResponse(400, ""), nil
}
articles = append(articles, article)
resp, err := simular.NewJsonResponse(200, article)
if err != nil {
return simular.NewStringResponse(500, ""), nil
}
return resp, nil
},
simular.WithHeader(
&http.Header{
"Api-Key": []string{"1234abcd"},
},
),
simular.WithBody(
bytes.NewBufferString(`{"title":"article"}`),
),
),
)
// do stuff that adds and checks articles
// verify that all stubs were called
if err := simular.AllStubsCalled(); err != nil {
t.Errorf("Not all stubs were called: %s", err)
}
}
*/
package simular