-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_test.go
45 lines (34 loc) · 866 Bytes
/
example_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
package gojsonclient_test
import (
"context"
"fmt"
"net/http"
"net/http/httptest"
"github.com/blizzy78/gojsonclient"
"github.com/go-json-experiment/json"
)
func Example() {
type request struct {
Message string `json:"message"`
}
type response struct {
Reply string `json:"reply"`
}
server := httptest.NewServer(http.HandlerFunc(func(writer http.ResponseWriter, httpReq *http.Request) {
var req *request
_ = json.UnmarshalRead(httpReq.Body, &req)
_ = json.MarshalWrite(writer, &response{
Reply: "Hello " + req.Message + "!",
})
}))
defer server.Close()
client := gojsonclient.New()
req := gojsonclient.NewRequest[*request, *response](
server.URL+"/foo",
http.MethodGet,
&request{Message: "client"},
)
res, _ := gojsonclient.Do(context.Background(), client, req)
fmt.Println(res.Res.Reply)
// Output: Hello client!
}