-
Notifications
You must be signed in to change notification settings - Fork 146
/
render_data_test.go
71 lines (55 loc) · 1.69 KB
/
render_data_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
package render
import (
"net/http"
"net/http/httptest"
"testing"
)
func TestDataBinaryBasic(t *testing.T) {
render := New(Options{
// nothing here to configure
})
var err error
h := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
err = render.Data(w, 299, []byte("hello there"))
})
res := httptest.NewRecorder()
req, _ := http.NewRequestWithContext(ctx, http.MethodGet, "/foo", nil)
h.ServeHTTP(res, req)
expectNil(t, err)
expect(t, res.Code, 299)
expect(t, res.Header().Get(ContentType), ContentBinary)
expect(t, res.Body.String(), "hello there")
}
func TestDataCustomMimeType(t *testing.T) {
render := New(Options{
// nothing here to configure
})
var err error
h := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
w.Header().Set(ContentType, "image/jpeg")
err = render.Data(w, http.StatusOK, []byte("..jpeg data.."))
})
res := httptest.NewRecorder()
req, _ := http.NewRequestWithContext(ctx, http.MethodGet, "/foo", nil)
h.ServeHTTP(res, req)
expectNil(t, err)
expect(t, res.Code, http.StatusOK)
expect(t, res.Header().Get(ContentType), "image/jpeg")
expect(t, res.Body.String(), "..jpeg data..")
}
func TestDataCustomContentType(t *testing.T) {
render := New(Options{
BinaryContentType: "image/png",
})
var err error
h := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
err = render.Data(w, http.StatusOK, []byte("..png data.."))
})
res := httptest.NewRecorder()
req, _ := http.NewRequestWithContext(ctx, http.MethodGet, "/foo", nil)
h.ServeHTTP(res, req)
expectNil(t, err)
expect(t, res.Code, http.StatusOK)
expect(t, res.Header().Get(ContentType), "image/png")
expect(t, res.Body.String(), "..png data..")
}