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
|
package finger_test
import (
"bytes"
"io"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"tildegit.org/tjp/gus/finger"
)
func TestParseRequest(t *testing.T) {
tests := []struct {
source string
host string
path string
err error
}{
{
source: "/W tjp\r\n",
host: "",
path: "/tjp",
},
{
source: "tjp@host.com\r\n",
host: "host.com",
path: "/tjp",
},
{
source: "tjp@forwarder.com@host.com\r\n",
err: finger.ForwardingDenied,
},
{
source: "tjp\r\n",
host: "",
path: "/tjp",
},
{
source: "\r\n",
host: "",
path: "/",
},
{
source: "/W\r\n",
host: "",
path: "/",
},
{
source: "tjp",
err: io.EOF,
},
}
for _, test := range tests {
t.Run(test.source, func(t *testing.T) {
request, err := finger.ParseRequest(bytes.NewBufferString(test.source))
require.Equal(t, test.err, err)
if err == nil {
assert.Equal(t, "finger", request.Scheme)
assert.Equal(t, test.host, request.Host)
assert.Equal(t, test.path, request.Path)
}
})
}
}
|