-
Notifications
You must be signed in to change notification settings - Fork 147
/
render_xml_test.go
139 lines (107 loc) · 3.61 KB
/
render_xml_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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package render
import (
"encoding/xml"
"net/http"
"net/http/httptest"
"testing"
)
type GreetingXML struct {
XMLName xml.Name `xml:"greeting"`
One string `xml:"one,attr"`
Two string `xml:"two,attr"`
}
func TestXMLBasic(t *testing.T) {
render := New(Options{
// nothing here to configure
})
var err error
h := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
err = render.XML(w, 299, GreetingXML{One: "hello", Two: "world"})
})
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), ContentXML+"; charset=UTF-8")
expect(t, res.Body.String(), "<greeting one=\"hello\" two=\"world\"></greeting>")
}
func TestXMLPrefix(t *testing.T) {
prefix := "<?xml version='1.0' encoding='UTF-8'?>\n"
render := New(Options{
PrefixXML: []byte(prefix),
})
var err error
h := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
err = render.XML(w, 300, GreetingXML{One: "hello", Two: "world"})
})
res := httptest.NewRecorder()
req, _ := http.NewRequestWithContext(ctx, http.MethodGet, "/foo", nil)
h.ServeHTTP(res, req)
expectNil(t, err)
expect(t, res.Code, 300)
expect(t, res.Header().Get(ContentType), ContentXML+"; charset=UTF-8")
expect(t, res.Body.String(), prefix+"<greeting one=\"hello\" two=\"world\"></greeting>")
}
func TestXMLIndented(t *testing.T) {
render := New(Options{
IndentXML: true,
})
var err error
h := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
err = render.XML(w, http.StatusOK, GreetingXML{One: "hello", Two: "world"})
})
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), ContentXML+"; charset=UTF-8")
expect(t, res.Body.String(), "<greeting one=\"hello\" two=\"world\"></greeting>\n")
}
func TestXMLWithError(t *testing.T) {
render := New(Options{
// nothing here to configure
})
var err error
h := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
err = render.XML(w, 299, map[string]string{"foo": "bar"})
})
res := httptest.NewRecorder()
req, _ := http.NewRequestWithContext(ctx, http.MethodGet, "/foo", nil)
h.ServeHTTP(res, req)
expectNotNil(t, err)
expect(t, res.Code, 500)
}
func TestXMLCustomContentType(t *testing.T) {
render := New(Options{
XMLContentType: "application/customxml",
})
var err error
h := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
err = render.XML(w, http.StatusOK, GreetingXML{One: "hello", Two: "world"})
})
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), "application/customxml; charset=UTF-8")
expect(t, res.Body.String(), "<greeting one=\"hello\" two=\"world\"></greeting>")
}
func TestXMLDisabledCharset(t *testing.T) {
render := New(Options{
DisableCharset: true,
})
var err error
h := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
err = render.XML(w, http.StatusOK, GreetingXML{One: "hello", Two: "world"})
})
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), ContentXML)
expect(t, res.Body.String(), "<greeting one=\"hello\" two=\"world\"></greeting>")
}