|
| 1 | +package middleware |
| 2 | + |
| 3 | +import ( |
| 4 | + "net/http" |
| 5 | + "net/http/httptest" |
| 6 | + "testing" |
| 7 | + |
| 8 | + "github.com/go-chi/chi/v5" |
| 9 | +) |
| 10 | + |
| 11 | +func TestClientIPFromHeader(t *testing.T) { |
| 12 | + tt := []struct { |
| 13 | + name string |
| 14 | + in string |
| 15 | + out string |
| 16 | + }{ |
| 17 | + // Empty header. |
| 18 | + {name: "empty", in: "", out: ""}, |
| 19 | + |
| 20 | + // Valid X-Real-IP header values. |
| 21 | + {name: "valid_ipv4", in: "100.100.100.100", out: "100.100.100.100"}, |
| 22 | + {name: "valid_ipv4", in: "178.25.203.2", out: "178.25.203.2"}, |
| 23 | + {name: "valid_ipv6_lower", in: "2345:0425:2ca1:0000:0000:0567:5673:23b5", out: "2345:425:2ca1::567:5673:23b5"}, |
| 24 | + {name: "valid_ipv6_upper", in: "2345:0425:2CA1:0000:0000:0567:5673:23B5", out: "2345:425:2ca1::567:5673:23b5"}, |
| 25 | + {name: "valid_ipv6_lower_short", in: "2345:425:2ca1::567:5673:23b5", out: "2345:425:2ca1::567:5673:23b5"}, |
| 26 | + {name: "valid_ipv6_upper_short", in: "2345:425:2CA1::567:5673:23B5", out: "2345:425:2ca1::567:5673:23b5"}, |
| 27 | + |
| 28 | + // Invalid X-Real-IP header values. |
| 29 | + {name: "invalid_ip", in: "invalid", out: ""}, |
| 30 | + {name: "invalid_ip_with_port", in: "100.100.100.100:80", out: ""}, |
| 31 | + {name: "invalid_multiple_ips", in: "100.100.100.100;100.100.100.101;100.100.100.102", out: ""}, |
| 32 | + {name: "invalid_loopback", in: "127.0.0.1", out: ""}, |
| 33 | + {name: "invalid_zeroes", in: "0.0.0.0", out: ""}, |
| 34 | + {name: "invalid_loopback", in: "127.0.0.1", out: ""}, |
| 35 | + {name: "invalid_private_ipv4_1", in: "192.168.0.1", out: ""}, |
| 36 | + {name: "invalid_private_ipv4_2", in: "192.168.10.12", out: ""}, |
| 37 | + {name: "invalid_private_ipv4_3", in: "172.16.0.0", out: ""}, |
| 38 | + {name: "invalid_private_ipv4_4", in: "172.25.203.2", out: ""}, |
| 39 | + {name: "invalid_private_ipv4_5", in: "10.0.0.0", out: ""}, |
| 40 | + {name: "invalid_private_ipv4_6", in: "10.0.1.10", out: ""}, |
| 41 | + {name: "invalid_private_ipv6_1", in: "fc00::1", out: ""}, |
| 42 | + {name: "invalid_private_ipv6_2", in: "fc00:0425:2ca1:0000:0000:0567:5673:23b5", out: ""}, |
| 43 | + } |
| 44 | + |
| 45 | + for _, tc := range tt { |
| 46 | + t.Run(tc.name, func(t *testing.T) { |
| 47 | + req, _ := http.NewRequest("GET", "/", nil) |
| 48 | + req.Header.Add("X-Real-IP", tc.in) |
| 49 | + w := httptest.NewRecorder() |
| 50 | + |
| 51 | + r := chi.NewRouter() |
| 52 | + r.Use(ClientIPFromHeader("X-Real-IP")) |
| 53 | + |
| 54 | + var clientIP string |
| 55 | + r.Get("/", func(w http.ResponseWriter, r *http.Request) { |
| 56 | + clientIP = GetClientIP(r.Context()) |
| 57 | + w.Write([]byte("Hello World")) |
| 58 | + }) |
| 59 | + r.ServeHTTP(w, req) |
| 60 | + |
| 61 | + if w.Code != 200 { |
| 62 | + t.Errorf("Response Code should be 200") |
| 63 | + } |
| 64 | + |
| 65 | + if clientIP != tc.out { |
| 66 | + t.Errorf("expected %v, got %v", tc.out, clientIP) |
| 67 | + } |
| 68 | + }) |
| 69 | + } |
| 70 | +} |
| 71 | + |
| 72 | +func TestClientIPFromXFFHeader(t *testing.T) { |
| 73 | + tt := []struct { |
| 74 | + name string |
| 75 | + xff []string |
| 76 | + out string |
| 77 | + }{ |
| 78 | + {name: "empty", xff: []string{""}, out: ""}, |
| 79 | + |
| 80 | + {name: "", xff: []string{"100.100.100.100"}, out: "100.100.100.100"}, |
| 81 | + {name: "", xff: []string{"100.100.100.100, 200.200.200.200"}, out: "200.200.200.200"}, |
| 82 | + {name: "", xff: []string{"100.100.100.100,200.200.200.200"}, out: "200.200.200.200"}, |
| 83 | + {name: "", xff: []string{"100.100.100.100", "200.200.200.200"}, out: "200.200.200.200"}, |
| 84 | + {name: "", xff: []string{"2001:db8:85a3:8d3:1319:8a2e:370:7348"}, out: "2001:db8:85a3:8d3:1319:8a2e:370:7348"}, |
| 85 | + {name: "", xff: []string{"203.0.113.195, 2001:db8:85a3:8d3:1319:8a2e:370:7348"}, out: "2001:db8:85a3:8d3:1319:8a2e:370:7348"}, |
| 86 | + {name: "", xff: []string{"5.5.5.5, 203.0.113.195, 2001:db8:85a3:8d3:1319:8a2e:370:7348", "7.7.7.7, 4.4.4.4"}, out: "4.4.4.4"}, |
| 87 | + } |
| 88 | + |
| 89 | + r := chi.NewRouter() |
| 90 | + r.Use(ClientIPFromXFFHeader()) |
| 91 | + |
| 92 | + for _, tc := range tt { |
| 93 | + req, _ := http.NewRequest("GET", "/", nil) |
| 94 | + for _, v := range tc.xff { |
| 95 | + req.Header.Add("X-Forwarded-For", v) |
| 96 | + } |
| 97 | + |
| 98 | + w := httptest.NewRecorder() |
| 99 | + |
| 100 | + clientIP := "" |
| 101 | + r.Get("/", func(w http.ResponseWriter, r *http.Request) { |
| 102 | + clientIP = GetClientIP(r.Context()) |
| 103 | + w.Write([]byte("Hello World")) |
| 104 | + }) |
| 105 | + r.ServeHTTP(w, req) |
| 106 | + |
| 107 | + if w.Code != 200 { |
| 108 | + t.Errorf("Response Code should be 200") |
| 109 | + } |
| 110 | + |
| 111 | + if clientIP != tc.out { |
| 112 | + t.Errorf("expected %v, got %v", tc.out, clientIP) |
| 113 | + } |
| 114 | + } |
| 115 | +} |
| 116 | + |
| 117 | +func TestClientIPFromRemoteAddr(t *testing.T) { |
| 118 | + req, _ := http.NewRequest("GET", "/", nil) |
| 119 | + req.RemoteAddr = "192.0.2.1:1234" // Simulate the remote address set by http.Server. |
| 120 | + |
| 121 | + w := httptest.NewRecorder() |
| 122 | + |
| 123 | + r := chi.NewRouter() |
| 124 | + r.Use(ClientIPFromRemoteAddr) |
| 125 | + |
| 126 | + var clientIP string |
| 127 | + r.Get("/", func(w http.ResponseWriter, r *http.Request) { |
| 128 | + clientIP = GetClientIP(r.Context()) |
| 129 | + w.Write([]byte("Hello World")) |
| 130 | + }) |
| 131 | + r.ServeHTTP(w, req) |
| 132 | + |
| 133 | + if w.Code != 200 { |
| 134 | + t.Errorf("Response Code should be 200") |
| 135 | + } |
| 136 | + |
| 137 | + expected := "192.0.2.1" |
| 138 | + if clientIP != expected { |
| 139 | + t.Errorf("expected %v, got %v", expected, clientIP) |
| 140 | + } |
| 141 | +} |
0 commit comments