forked from ferluci/fasthttp-realip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
realip_test.go
106 lines (92 loc) · 2.24 KB
/
realip_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
package realip
import (
"fmt"
"net"
"testing"
"github.com/valyala/fasthttp"
)
func TestIsPrivateAddr(t *testing.T) {
testData := map[string]bool{
"127.0.0.0": true,
"10.0.0.0": true,
"169.254.0.0": true,
"192.168.0.0": true,
"::1": true,
"fc00::": true,
"172.15.0.0": false,
"172.16.0.0": true,
"172.31.0.0": true,
"172.32.0.0": false,
"147.12.56.11": false,
}
for addr, isLocal := range testData {
isPrivate, err := isPrivateAddress(addr)
if err != nil {
t.Errorf("fail processing %s: %v", addr, err)
}
if isPrivate != isLocal {
format := "%s should "
if !isLocal {
format += "not "
}
format += "be local address"
t.Errorf(format, addr)
}
}
}
type testIP struct {
name string
request *fasthttp.RequestCtx
expected string
}
func TestRealIP(t *testing.T) {
newRequest := func(remoteAddr string, headers map[string]string) *fasthttp.RequestCtx {
var ctx fasthttp.RequestCtx
addr := &net.TCPAddr{
IP: net.ParseIP(remoteAddr),
}
ctx.Init(&ctx.Request, addr, nil)
for header, value := range headers {
ctx.Request.Header.Set(header, value)
}
return &ctx
}
testData := []testIP{
{
name: "No header",
request: newRequest("144.12.54.87", map[string]string{}),
expected: "144.12.54.87",
},
{
name: "Has X-Forwarded-For",
request: newRequest("", map[string]string{"X-Forwarded-For": "144.12.54.87"}),
expected: "144.12.54.87",
},
{
name: "Has multiple X-Forwarded-For",
request: newRequest("", map[string]string{
"X-Forwarded-For": fmt.Sprintf("%s,%s,%s", "119.14.55.11", "144.12.54.87", "127.0.0.0"),
}),
expected: "119.14.55.11",
},
{
name: "Has X-Real-IP",
request: newRequest("", map[string]string{"X-Real-IP": "144.12.54.87"}),
expected: "144.12.54.87",
},
{
name: "Has multiple X-Forwarded-For and X-Real-IP",
request: newRequest("", map[string]string{
"X-Real-IP": "119.14.55.11",
"X-Forwarded-For": fmt.Sprintf("%s,%s", "144.12.54.87", "127.0.0.0"),
}),
expected: "144.12.54.87",
},
}
// Run test
for _, v := range testData {
if actual := FromRequest(v.request); v.expected != actual {
t.Errorf("%s: expected %s but get %s", v.name, v.expected, actual)
}
}
}