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 spartan_test
import (
"bytes"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"tildegit.org/tjp/sliderule/spartan"
)
func TestParseRequest(t *testing.T) {
tests := []struct {
requestLine string
host string
path string
clen int
}{
{
requestLine: "foobar.ninja /baz/quux 0\r\n",
host: "foobar.ninja",
path: "/baz/quux",
clen: 0,
},
{
requestLine: "foo.bar / 12\r\n",
host: "foo.bar",
path: "/",
clen: 12,
},
}
for _, test := range tests {
t.Run(test.requestLine, func(t *testing.T) {
request, clen, err := spartan.ParseRequest(bytes.NewBufferString(test.requestLine))
require.Nil(t, err)
assert.Equal(t, test.host, request.Host)
assert.Equal(t, test.path, request.Path)
assert.Equal(t, test.path, request.RawPath)
assert.Equal(t, test.clen, clen)
})
}
}
|