-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmiddleware_test.go
136 lines (100 loc) · 2.61 KB
/
middleware_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
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
package accessLimit
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
)
func setupRouter(CIDRs string) *gin.Engine {
// no debug mode
gin.SetMode(gin.ReleaseMode)
// create a default
r := gin.Default()
// our middle-ware
r.Use(CIDR(CIDRs))
// routes
r.GET("/", testGET)
return r
}
func TestAllowAccessSource(t *testing.T) {
r := setupRouter("127.0.0.1/32")
// prepare
ExpectedResponseStatus := 200
// run
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/", nil)
req.RemoteAddr = "127.0.0.1:80"
r.ServeHTTP(w, req)
// check
assert.Equal(t, ExpectedResponseStatus, w.Code)
}
func TestNotAllowAccessSource(t *testing.T) {
r := setupRouter("172.18.0.0/16")
// prepare
ExpectedResponseStatus := 403
// run
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/", nil)
req.RemoteAddr = "127.0.0.1:80"
r.ServeHTTP(w, req)
// check
assert.Equal(t, ExpectedResponseStatus, w.Code)
}
func TestAllowAccessFromManySource(t *testing.T) {
r := setupRouter("172.18.0.0/16, 127.0.0.1/32, ::1/128")
// prepare
ExpectedResponseStatus := 200
// run
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/", nil)
req.RemoteAddr = "127.0.0.1:80"
r.ServeHTTP(w, req)
// check
assert.Equal(t, ExpectedResponseStatus, w.Code)
}
func TestNotAllowAccessFromManySource(t *testing.T) {
r := setupRouter("172.18.0.0/16, 127.0.0.1/32, ::1/128")
// prepare
ExpectedResponseStatus := 403
// run
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/", nil)
req.RemoteAddr = "192.168.1.12:80"
r.ServeHTTP(w, req)
// check
assert.Equal(t, ExpectedResponseStatus, w.Code)
}
func TestTrustedHeader(t *testing.T) {
// Allow Trust Header
TrustedHeaderField = "X-Real-Ip"
r := setupRouter("172.18.0.0/16, 127.0.0.1/32, ::1/128")
// prepare
ExpectedResponseStatus := 200
// run
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/", nil)
req.RemoteAddr = "192.168.1.12:80"
req.Header.Add("X-Real-Ip", "127.0.0.1")
r.ServeHTTP(w, req)
// check
assert.Equal(t, ExpectedResponseStatus, w.Code)
}
func TestNotInTrustedHeader(t *testing.T) {
// Allow Trust Header
TrustedHeaderField = "X-Real-Ip"
r := setupRouter("172.18.0.0/16, 127.0.0.1/32, ::1/128")
// prepare
ExpectedResponseStatus := 403
// run
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/", nil)
req.RemoteAddr = "192.168.1.12:80"
req.Header.Add("X-Forwarded-For", "127.0.0.1")
r.ServeHTTP(w, req)
// check
assert.Equal(t, ExpectedResponseStatus, w.Code)
}
func testGET(c *gin.Context) {
c.String(200, "pong")
}