87 lines
2.3 KiB
Go
87 lines
2.3 KiB
Go
|
|
package middleware
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
"net/http/httptest"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestIPAllowlist_EmptyCIDRsAllowsAll(t *testing.T) {
|
||
|
|
h, err := IPAllowlist(nil, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
|
w.WriteHeader(http.StatusOK)
|
||
|
|
}))
|
||
|
|
if err != nil {
|
||
|
|
t.Fatalf("IPAllowlist() error = %v", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
rec := httptest.NewRecorder()
|
||
|
|
req := httptest.NewRequest(http.MethodGet, "/", nil)
|
||
|
|
req.RemoteAddr = "203.0.113.5:1234"
|
||
|
|
h.ServeHTTP(rec, req)
|
||
|
|
|
||
|
|
if rec.Code != http.StatusOK {
|
||
|
|
t.Fatalf("status = %d, want %d", rec.Code, http.StatusOK)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestIPAllowlist_RejectsOutsideCIDR(t *testing.T) {
|
||
|
|
h, err := IPAllowlist([]string{"192.168.1.0/24"}, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
|
w.WriteHeader(http.StatusOK)
|
||
|
|
}))
|
||
|
|
if err != nil {
|
||
|
|
t.Fatalf("IPAllowlist() error = %v", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
rec := httptest.NewRecorder()
|
||
|
|
req := httptest.NewRequest(http.MethodGet, "/api/config", nil)
|
||
|
|
req.RemoteAddr = "10.0.0.8:1234"
|
||
|
|
h.ServeHTTP(rec, req)
|
||
|
|
|
||
|
|
if rec.Code != http.StatusForbidden {
|
||
|
|
t.Fatalf("status = %d, want %d", rec.Code, http.StatusForbidden)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestIPAllowlist_AllowsInsideCIDR(t *testing.T) {
|
||
|
|
h, err := IPAllowlist([]string{"192.168.1.0/24"}, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
|
w.WriteHeader(http.StatusOK)
|
||
|
|
}))
|
||
|
|
if err != nil {
|
||
|
|
t.Fatalf("IPAllowlist() error = %v", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
rec := httptest.NewRecorder()
|
||
|
|
req := httptest.NewRequest(http.MethodGet, "/", nil)
|
||
|
|
req.RemoteAddr = "192.168.1.88:1234"
|
||
|
|
h.ServeHTTP(rec, req)
|
||
|
|
|
||
|
|
if rec.Code != http.StatusOK {
|
||
|
|
t.Fatalf("status = %d, want %d", rec.Code, http.StatusOK)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestIPAllowlist_AlwaysAllowsLoopback(t *testing.T) {
|
||
|
|
h, err := IPAllowlist([]string{"192.168.1.0/24"}, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
|
w.WriteHeader(http.StatusOK)
|
||
|
|
}))
|
||
|
|
if err != nil {
|
||
|
|
t.Fatalf("IPAllowlist() error = %v", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
rec := httptest.NewRecorder()
|
||
|
|
req := httptest.NewRequest(http.MethodGet, "/", nil)
|
||
|
|
req.RemoteAddr = "127.0.0.1:1234"
|
||
|
|
h.ServeHTTP(rec, req)
|
||
|
|
|
||
|
|
if rec.Code != http.StatusOK {
|
||
|
|
t.Fatalf("status = %d, want %d", rec.Code, http.StatusOK)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestIPAllowlist_InvalidCIDR(t *testing.T) {
|
||
|
|
_, err := IPAllowlist([]string{"bad-cidr"}, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
|
||
|
|
if err == nil {
|
||
|
|
t.Fatal("IPAllowlist() expected error for invalid CIDR")
|
||
|
|
}
|
||
|
|
}
|