-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathparser_req_test.go
More file actions
397 lines (351 loc) · 9.65 KB
/
parser_req_test.go
File metadata and controls
397 lines (351 loc) · 9.65 KB
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
package httparser
import (
"bytes"
"fmt"
"io"
"testing"
)
// 测试请求行
func Test_ParserResponse_RequestLine(t *testing.T) {
p := New(REQUEST)
messageBegin := false
rsp := []byte("GET /somedir/page.html HTTP/1.1\r\n")
url := []byte("/somedir/page.html")
setting := &Setting{
URL: func(p *Parser, buf []byte, _ int) {
if string(url) != string(buf) {
t.Errorf("url error: %s\n", buf)
}
}, MessageBegin: func(p *Parser, _ int) {
messageBegin = true
},
}
_, err := p.Execute(setting, rsp)
if err != nil {
t.Fatalf("Execute:%v", err)
}
if messageBegin == false {
t.Fatalf("messageBegin is false\n")
}
}
// 测试请求body
func Test_ParserResponse_RequestBody(t *testing.T) {
p := New(REQUEST)
var data = []byte(
"POST /joyent/http-parser HTTP/1.1\r\n" +
"Host: github.com\r\n" +
"DNT: 1\r\n" +
"Accept-Encoding: gzip, deflate, sdch\r\n" +
"Accept-Language: ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4\r\n" +
"User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) " +
"AppleWebKit/537.36 (KHTML, like Gecko) " +
"Chrome/39.0.2171.65 Safari/537.36\r\n" +
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9," +
"image/webp,*/*;q=0.8\r\n" +
"Referer: https://github.com/joyent/http-parser\r\n" +
"Connection: keep-alive\r\n" +
"Transfer-Encoding: chunked\r\n" +
"Cache-Control: max-age=0\r\n\r\nb\r\nhello world\r\n0\r\n\r\n")
messageBegin := false
messageComplete := false
headersComplete := false
var body []byte
var url []byte
var field []byte
var value []byte
body2 := "hello world"
var value2 = "github.com" +
"1" +
"gzip, deflate, sdch" +
"ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4" +
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) " +
"AppleWebKit/537.36 (KHTML, like Gecko) " +
"Chrome/39.0.2171.65 Safari/537.36" +
"text/html,application/xhtml+xml,application/xml;q=0.9," +
"image/webp,*/*;q=0.8" +
"https://github.com/joyent/http-parser" +
"keep-alive" +
"chunked" +
"max-age=0"
var field2 = []byte(
"Host" +
"DNT" +
"Accept-Encoding" +
"Accept-Language" +
"User-Agent" +
"Accept" +
"Referer" +
"Connection" +
"Transfer-Encoding" +
"Cache-Control")
var setting = Setting{
MessageBegin: func(*Parser, int) {
messageBegin = true
},
URL: func(p *Parser, buf []byte, _ int) {
url = append(url, buf...)
},
Status: func(*Parser, []byte, int) {
// 响应包才需要用到
},
HeaderField: func(p *Parser, buf []byte, _ int) {
field = append(field, buf...)
},
HeaderValue: func(_ *Parser, buf []byte, _ int) {
value = append(value, buf...)
},
HeadersComplete: func(*Parser, int) {
headersComplete = true
},
Body: func(_ *Parser, buf []byte, _ int) {
body = append(body, buf...)
},
MessageComplete: func(*Parser, int) {
messageComplete = true
},
}
i, err := p.Execute(&setting, data)
if err != nil {
t.Errorf("Execute:%v", err)
return
}
if bytes.Equal(url, []byte("/joyent/http-parser")) == false {
t.Errorf("url error: %s\n", url)
return
}
if i != len(data) {
t.Errorf("data length error\n")
return
}
if bytes.Equal(field, field2) == false {
t.Errorf("field error: %s\n", field)
return
}
if bytes.Equal(value, []byte(value2)) == false {
t.Errorf("value error: %s\n", value)
return
}
if bytes.Equal(body, []byte(body2)) == false {
t.Errorf("body error: %s\n", body)
return
}
if messageBegin == false {
t.Errorf("messageBegin is false\n")
return
}
if messageComplete == false {
t.Errorf("messageComplete is false\n")
return
}
if headersComplete == false {
t.Errorf("headersComplete is false\n")
return
}
if p.EOF() == false {
t.Errorf("EOF is false\n")
return
}
//fmt.Printf("##:%s", stateTab[p.currState])
}
// 测试请求body2, chunked是两位数的
func Test_ParserResponse_RequestBody2(t *testing.T) {
p := New(REQUEST)
var data = []byte(
"POST /joyent/http-parser HTTP/1.1\r\n" +
"Host: github.com\r\n" +
"DNT: 1\r\n" +
"Accept-Encoding: gzip, deflate, sdch\r\n" +
"Accept-Language: ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4\r\n" +
"User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) " +
"AppleWebKit/537.36 (KHTML, like Gecko) " +
"Chrome/39.0.2171.65 Safari/537.36\r\n" +
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9," +
"image/webp,*/*;q=0.8\r\n" +
"Referer: https://github.com/joyent/http-parser\r\n" +
"Connection: keep-alive\r\n" +
"Transfer-Encoding: chunked\r\n" +
"Cache-Control: max-age=0\r\n\r\n10\r\nhello world12345\r\n0\r\n\r\n")
messageBegin := false
messageComplete := false
headersComplete := false
var body []byte
var url []byte
var field []byte
var value []byte
body2 := "hello world12345"
var value2 = "github.com" +
"1" +
"gzip, deflate, sdch" +
"ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4" +
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) " +
"AppleWebKit/537.36 (KHTML, like Gecko) " +
"Chrome/39.0.2171.65 Safari/537.36" +
"text/html,application/xhtml+xml,application/xml;q=0.9," +
"image/webp,*/*;q=0.8" +
"https://github.com/joyent/http-parser" +
"keep-alive" +
"chunked" +
"max-age=0"
var field2 = []byte(
"Host" +
"DNT" +
"Accept-Encoding" +
"Accept-Language" +
"User-Agent" +
"Accept" +
"Referer" +
"Connection" +
"Transfer-Encoding" +
"Cache-Control")
var setting = Setting{
MessageBegin: func(*Parser, int) {
messageBegin = true
},
URL: func(_ *Parser, buf []byte, _ int) {
url = append(url, buf...)
},
Status: func(*Parser, []byte, int) {
// 响应包才需要用到
},
HeaderField: func(_ *Parser, buf []byte, _ int) {
field = append(field, buf...)
},
HeaderValue: func(_ *Parser, buf []byte, _ int) {
value = append(value, buf...)
},
HeadersComplete: func(*Parser, int) {
headersComplete = true
},
Body: func(_ *Parser, buf []byte, _ int) {
body = append(body, buf...)
},
MessageComplete: func(_ *Parser, _ int) {
messageComplete = true
},
}
i, err := p.Execute(&setting, data)
if err != nil {
t.Errorf("Execute:%v", err)
return
}
if bytes.Equal(url, []byte("/joyent/http-parser")) == false {
t.Errorf("url error: %s\n", url)
return
}
if i != len(data) {
t.Errorf("data length error\n")
return
}
if bytes.Equal(field, field2) == false {
t.Errorf("field error: %s\n", field)
return
}
if bytes.Equal(value, []byte(value2)) == false {
t.Errorf("value error: %s\n", value)
return
}
if bytes.Equal(body, []byte(body2)) == false {
t.Errorf("body error: %s\n", body)
return
}
if messageBegin == false {
t.Errorf("messageBegin is false\n")
return
}
if messageComplete == false {
t.Errorf("messageComplete is false\n")
return
}
if headersComplete == false {
t.Errorf("headersComplete is false\n")
return
}
if p.EOF() == false {
t.Errorf("EOF is false\n")
return
}
}
// https://github.com/antlabs/httparser/issues/1
func Test_ParserRequest_chunked_segment(t *testing.T) {
var data = []byte(
"POST /joyent/http-parser HTTP/1.1\r\n" +
"Host: github.com\r\n" +
"DNT: 1\r\n" +
"Accept-Encoding: gzip, deflate, sdch\r\n" +
"Accept-Language: ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4\r\n" +
"User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) " +
"AppleWebKit/537.36 (KHTML, like Gecko) " +
"Chrome/39.0.2171.65 Safari/537.36\r\n" +
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9," +
"image/webp,*/*;q=0.8\r\n" +
"Referer: https://github.com/joyent/http-parser\r\n" +
"Connection: keep-alive\r\n" +
"Transfer-Encoding: chunked\r\n" +
"Cache-Control: max-age=0\r\n\r\nb\r\nhello world\r\n0\r\n\r\n" +
"POST /joyent/http-parser HTTP/1.1\r\n" +
"Host: github.com\r\n" +
"DNT: 1\r\n" +
"Accept-Encoding: gzip, deflate, sdch\r\n" +
"Accept-Language: ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4\r\n" +
"User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) " +
"AppleWebKit/537.36 (KHTML, like Gecko) " +
"Chrome/39.0.2171.65 Safari/537.36\r\n" +
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9," +
"image/webp,*/*;q=0.8\r\n" +
"Referer: https://github.com/joyent/http-parser\r\n" +
"Connection: keep-alive\r\n" +
"Transfer-Encoding: chunked\r\n" +
"Cache-Control: max-age=0\r\n\r\nb\r\nhello world\r\n0\r\n\r\n")
var body []byte
var setting = Setting{
Body: func(_ *Parser, buf []byte, _ int) {
//fmt.Printf("###:%s\n", buf)
body = append(body, buf...)
},
}
p := New(REQUEST)
for size := 120; size < 2*len(data); size++ {
// 双缓冲buffer
// 左边放溢出的,右边放本次读入数据, 这么设计可以减少内存拷贝
tb := NewTwoBuf(size * 2)
body = []byte{}
totalSentBuf := []byte{} //存放送入Execute的总数据
r := bytes.NewReader(data)
for {
// 取右边buffer
buf := tb.Right()
//模拟从异步io里面填充一块buffer
n, err := r.Read(buf)
if err == io.EOF {
break
}
// 把溢出数据包含进来
// 左边放需要重新解析数据,右边放新塞的buffer
currSentData := tb.All(n)
//解析
success, err := p.Execute(&setting, currSentData)
if err != nil {
panic(err.Error() + fmt.Sprintf(" size:%d", size))
}
if success != len(currSentData) {
// 测试用, 把送入解析器的buffer累加起来,最后验证下数据送得对不对
totalSentBuf = append(totalSentBuf, currSentData[:success]...)
tb.MoveLeft(currSentData[success:])
} else {
// 测试用
totalSentBuf = append(totalSentBuf, currSentData...)
tb.Reset()
}
}
tb.Reset()
if string(data) != string(totalSentBuf) {
t.Fatalf("fail:%s", string(data))
return
}
if string(body) != "hello worldhello world" {
t.Fatalf("fail:%s", string(body))
return
}
}
p.Reset()
}