-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontext_test.go
275 lines (216 loc) · 7.91 KB
/
context_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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
// SPDX-FileCopyrightText: 2018-2024 caixw
//
// SPDX-License-Identifier: MIT
package web
import (
"bytes"
"context"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/issue9/assert/v4"
"github.com/issue9/mux/v9/header"
"github.com/issue9/mux/v9/types"
"golang.org/x/text/language"
)
var (
_ http.ResponseWriter = &Context{}
_ context.Context = &Context{}
)
func (ctx *Context) apply(r Responser) { r.Apply(ctx) }
func newContext(a *assert.Assertion, w http.ResponseWriter, r *http.Request) *Context {
if w == nil {
w = httptest.NewRecorder()
}
if r == nil {
r := httptest.NewRequest(http.MethodGet, "/path", bytes.NewBufferString("123"))
r.Header.Set(header.Accept, "*/*")
}
return newTestServer(a).NewContext(w, r, types.NewContext())
}
func TestContext_KeepAlive(t *testing.T) {
a := assert.New(t, false)
s := newTestServer(a)
ctx := s.NewContext(httptest.NewRecorder(), httptest.NewRequest(http.MethodGet, "/p", nil), types.NewContext())
dur := 500 * time.Millisecond
begin := time.Now()
c, cancel := context.WithCancel(context.Background())
time.AfterFunc(dur, func() { cancel() })
KeepAlive(c).Apply(ctx)
a.True(time.Since(begin) >= 500*time.Millisecond)
}
func TestNewContext(t *testing.T) {
a := assert.New(t, false)
s := newTestServer(a)
t.Run("unset request id key", func(*testing.T) {
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodGet, "/path", nil)
s.NewContext(w, r, types.NewContext())
a.NotEmpty(w.Header().Get(header.XRequestID))
})
t.Run("set request id key", func(*testing.T) {
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodGet, "/path", nil)
r.Header.Set(header.XRequestID, "111")
s.NewContext(w, r, types.NewContext())
a.Equal(w.Header().Get(header.XRequestID), "111")
})
t.Run("accept", func(*testing.T) {
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodGet, "/path", nil)
r.Header.Set(header.Accept, "111")
s.NewContext(w, r, types.NewContext())
a.Equal(w.Result().StatusCode, http.StatusNotAcceptable)
})
t.Run("accept-charset", func(*testing.T) {
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodGet, "/path", nil)
r.Header.Set(header.AcceptCharset, "111")
s.NewContext(w, r, types.NewContext())
a.Equal(w.Result().StatusCode, http.StatusNotAcceptable)
})
t.Run("accept-encoding", func(*testing.T) {
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodGet, "/path", nil)
r.Header.Set(header.AcceptEncoding, "*;q=0") // *;q=0
s.NewContext(w, r, types.NewContext())
a.Equal(w.Result().StatusCode, http.StatusNotAcceptable)
})
t.Run("content-type", func(*testing.T) {
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodGet, "/path", nil)
r.Header.Set(header.ContentType, "111")
s.NewContext(w, r, types.NewContext())
a.Equal(w.Result().StatusCode, http.StatusUnsupportedMediaType)
})
}
func TestContext_SetMimetype(t *testing.T) {
a := assert.New(t, false)
srv := newTestServer(a)
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodPost, "/path", bytes.NewBufferString("123"))
r.Header.Set(header.Accept, header.JSON)
ctx := srv.NewContext(w, r, types.NewContext())
a.NotNil(ctx)
a.PanicString(func() {
ctx.SetMimetype("not-exists")
}, "指定的编码 not-exists 不存在").
Equal(ctx.Mimetype(false), header.JSON) // 不改变原有的值
ctx.SetMimetype(header.XML)
a.Equal(ctx.Mimetype(false), header.XML)
ctx.Render(200, 200) // 输出内容
a.PanicString(func() {
ctx.SetMimetype(header.JSON)
}, "已有内容输出,不可再更改!")
}
func TestContext_SetCharset(t *testing.T) {
a := assert.New(t, false)
srv := newTestServer(a)
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodPost, "/path", bytes.NewBufferString("123"))
r.Header.Set(header.Accept, header.JSON)
ctx := srv.NewContext(w, r, types.NewContext())
a.NotNil(ctx)
a.PanicString(func() {
ctx.SetCharset("not-exists")
}, "指定的字符集 not-exists 不存在")
ctx.SetCharset("gb2312")
a.Equal(ctx.Charset(), "gbk")
ctx.Render(200, 200) // 输出内容
a.PanicString(func() {
ctx.SetCharset("gb18030")
}, "已有内容输出,不可再更改!")
}
func TestContext_SetEncoding(t *testing.T) {
a := assert.New(t, false)
srv := newTestServer(a)
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodPost, "/path", bytes.NewBufferString("123"))
r.Header.Set(header.Accept, header.JSON)
ctx := srv.NewContext(w, r, types.NewContext())
a.NotNil(ctx)
a.PanicString(func() {
ctx.SetEncoding("*;q=0")
}, "指定的压缩编码 *;q=0 不存在")
ctx.SetEncoding("gzip")
a.Equal(ctx.Encoding(), "gzip")
_, err := ctx.Write([]byte("200"))
a.NotError(err).
PanicString(func() {
ctx.SetEncoding("br")
}, "已有内容输出,不可再更改!")
}
func TestContext_SetLanguage(t *testing.T) {
a := assert.New(t, false)
srv := newTestServer(a)
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodPost, "/path", bytes.NewBufferString("123"))
r.Header.Set(header.Accept, header.JSON)
ctx := srv.NewContext(w, r, types.NewContext())
a.NotNil(ctx)
a.Equal(ctx.LanguageTag(), ctx.Server().Locale().ID())
cmnHant := language.MustParse("cmn-hant")
ctx.SetLanguage(cmnHant)
a.Equal(ctx.LanguageTag(), cmnHant)
}
func TestContext_IsXHR(t *testing.T) {
a := assert.New(t, false)
s := newTestServer(a)
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodGet, "/p", nil)
ctx := s.NewContext(w, r, types.NewContext())
a.False(ctx.IsXHR())
w = httptest.NewRecorder()
r = httptest.NewRequest(http.MethodGet, "/p", nil)
r.Header.Set(header.XRequestedWith, "XMLHttpRequest")
ctx = s.NewContext(w, r, types.NewContext())
a.True(ctx.IsXHR())
}
func TestContext_Idempotent(t *testing.T) {
a := assert.New(t, false)
s := newTestServer(a)
w := httptest.NewRecorder()
r := httptest.NewRequest(http.MethodGet, "/p", nil)
ctx := s.NewContext(w, r, types.NewContext())
a.True(ctx.Idempotent())
w = httptest.NewRecorder()
r = httptest.NewRequest(http.MethodPatch, "/p", nil)
ctx = s.NewContext(w, r, types.NewContext())
a.False(ctx.Idempotent())
}
func TestServer_acceptLanguage(t *testing.T) {
a := assert.New(t, false)
srv := newTestServer(a)
b := srv.Locale()
a.NotError(b.SetString(language.Und, "lang", "und"))
a.NotError(b.SetString(language.SimplifiedChinese, "lang", "hans"))
a.NotError(b.SetString(language.TraditionalChinese, "lang", "hant"))
a.NotError(b.SetString(language.AmericanEnglish, "lang", "en_US"))
tag := acceptLanguage(srv, "")
a.Equal(tag, srv.Locale().ID(), "v1:%s, v2:%s", tag.String(), language.Und.String())
tag = acceptLanguage(srv, "zh") // 匹配 zh-hans
a.Equal(tag, language.SimplifiedChinese, "v1:%s, v2:%s", tag.String(), language.SimplifiedChinese.String())
tag = acceptLanguage(srv, "zh-Hant")
a.Equal(tag, language.TraditionalChinese, "v1:%s, v2:%s", tag.String(), language.TraditionalChinese.String())
tag = acceptLanguage(srv, "zh-Hans")
a.Equal(tag, language.SimplifiedChinese, "v1:%s, v2:%s", tag.String(), language.SimplifiedChinese.String())
tag = acceptLanguage(srv, "english") // english 非正确的 tag,但是常用。
a.Equal(tag, language.AmericanEnglish, "v1:%s, v2:%s", tag.String(), language.AmericanEnglish.String())
tag = acceptLanguage(srv, "zh-Hans;q=0.1,zh-Hant;q=0.3,en")
a.Equal(tag, language.AmericanEnglish, "v1:%s, v2:%s", tag.String(), language.AmericanEnglish.String())
}
func TestContext_ClientIP(t *testing.T) {
a := assert.New(t, false)
r := httptest.NewRequest(http.MethodPost, "/path", bytes.NewBufferString("123"))
ctx := newContext(a, nil, r)
a.NotNil(ctx).Equal(ctx.ClientIP(), r.RemoteAddr)
}
func TestContext_time(t *testing.T) {
a := assert.New(t, false)
r := httptest.NewRequest(http.MethodPost, "/path", bytes.NewBufferString("123"))
ctx := newContext(a, nil, r)
a.Equal(ctx.Location(), ctx.Server().Location()).
Equal(ctx.Now().Location(), ctx.Location()).
Equal(ctx.Begin().Location(), ctx.Location())
}