2018-08-24 14:20:03 +00:00
|
|
|
package ip
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRemoteAddrStrategy_GetIP(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Use RemoteAddr",
|
2019-08-26 10:20:06 +00:00
|
|
|
expected: "192.0.2.1",
|
2018-08-24 14:20:03 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
strategy := RemoteAddrStrategy{}
|
|
|
|
req := httptest.NewRequest(http.MethodGet, "http://127.0.0.1", nil)
|
|
|
|
actual := strategy.GetIP(req)
|
|
|
|
assert.Equal(t, test.expected, actual)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDepthStrategy_GetIP(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
depth int
|
|
|
|
xForwardedFor string
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Use depth",
|
|
|
|
depth: 3,
|
|
|
|
xForwardedFor: "10.0.0.4,10.0.0.3,10.0.0.2,10.0.0.1",
|
|
|
|
expected: "10.0.0.3",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Use non existing depth in XForwardedFor",
|
|
|
|
depth: 2,
|
|
|
|
xForwardedFor: "",
|
|
|
|
expected: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Use depth that match the first IP in XForwardedFor",
|
|
|
|
depth: 2,
|
|
|
|
xForwardedFor: "10.0.0.2,10.0.0.1",
|
|
|
|
expected: "10.0.0.2",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
strategy := DepthStrategy{Depth: test.depth}
|
|
|
|
req := httptest.NewRequest(http.MethodGet, "http://127.0.0.1", nil)
|
|
|
|
req.Header.Set(xForwardedFor, test.xForwardedFor)
|
|
|
|
actual := strategy.GetIP(req)
|
|
|
|
assert.Equal(t, test.expected, actual)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-07 15:46:14 +00:00
|
|
|
func TestTrustedIPsStrategy_GetIP(t *testing.T) {
|
2018-08-24 14:20:03 +00:00
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
2021-06-07 15:46:14 +00:00
|
|
|
trustedIPs []string
|
2018-08-24 14:20:03 +00:00
|
|
|
xForwardedFor string
|
|
|
|
expected string
|
2021-06-07 15:46:14 +00:00
|
|
|
useRemote bool
|
2018-08-24 14:20:03 +00:00
|
|
|
}{
|
|
|
|
{
|
2021-06-07 15:46:14 +00:00
|
|
|
desc: "Trust all IPs",
|
|
|
|
trustedIPs: []string{"10.0.0.4", "10.0.0.3", "10.0.0.2", "10.0.0.1"},
|
2018-08-24 14:20:03 +00:00
|
|
|
xForwardedFor: "10.0.0.4,10.0.0.3,10.0.0.2,10.0.0.1",
|
|
|
|
expected: "",
|
|
|
|
},
|
|
|
|
{
|
2021-06-07 15:46:14 +00:00
|
|
|
desc: "Do not trust all IPs",
|
|
|
|
trustedIPs: []string{"10.0.0.2", "10.0.0.1"},
|
2018-08-24 14:20:03 +00:00
|
|
|
xForwardedFor: "10.0.0.4,10.0.0.3,10.0.0.2,10.0.0.1",
|
|
|
|
expected: "10.0.0.3",
|
|
|
|
},
|
|
|
|
{
|
2021-06-07 15:46:14 +00:00
|
|
|
desc: "Do not trust all IPs with CIDR",
|
|
|
|
trustedIPs: []string{"10.0.0.1/24"},
|
2018-08-24 14:20:03 +00:00
|
|
|
xForwardedFor: "127.0.0.1,10.0.0.4,10.0.0.3,10.0.0.2,10.0.0.1",
|
|
|
|
expected: "127.0.0.1",
|
|
|
|
},
|
|
|
|
{
|
2021-06-07 15:46:14 +00:00
|
|
|
desc: "Trust all IPs with CIDR",
|
|
|
|
trustedIPs: []string{"10.0.0.1/24"},
|
2018-08-24 14:20:03 +00:00
|
|
|
xForwardedFor: "10.0.0.4,10.0.0.3,10.0.0.2,10.0.0.1",
|
|
|
|
expected: "",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
2021-06-07 15:46:14 +00:00
|
|
|
checker, err := NewChecker(test.trustedIPs)
|
2018-08-24 14:20:03 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2021-06-07 15:46:14 +00:00
|
|
|
strategy := PoolStrategy{Checker: checker}
|
2018-08-24 14:20:03 +00:00
|
|
|
req := httptest.NewRequest(http.MethodGet, "http://127.0.0.1", nil)
|
|
|
|
req.Header.Set(xForwardedFor, test.xForwardedFor)
|
|
|
|
actual := strategy.GetIP(req)
|
|
|
|
assert.Equal(t, test.expected, actual)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|