Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJaime Martinez <jmartinez@gitlab.com>2021-10-08 08:57:46 +0300
committerJaime Martinez <jmartinez@gitlab.com>2021-10-14 09:01:02 +0300
commitd21ad4d3f334774bbbcd9a586c7bdfd32a0ae804 (patch)
treea9e0148c24672883c80f3d41776c646f7efa0a13 /test
parent3f78e6ad2b2a99804c979bdd516f8579e8a0d152 (diff)
test: rate limiter acceptance tests
test: rate limit with all listener types
Diffstat (limited to 'test')
-rw-r--r--test/acceptance/helpers_test.go16
-rw-r--r--test/acceptance/ratelimiter_test.go133
2 files changed, 126 insertions, 23 deletions
diff --git a/test/acceptance/helpers_test.go b/test/acceptance/helpers_test.go
index e2e1c1d0..e600a9e5 100644
--- a/test/acceptance/helpers_test.go
+++ b/test/acceptance/helpers_test.go
@@ -399,6 +399,22 @@ func GetCompressedPageFromListener(t *testing.T, spec ListenSpec, host, urlsuffi
return DoPagesRequest(t, spec, req)
}
+func GetPageFromListenerWithRemoteAddrAndXFF(t *testing.T, spec ListenSpec, host, urlsuffix, xForwardedFor, xForwardedHost string) (*http.Response, error) {
+ t.Helper()
+
+ url := spec.URL(urlsuffix)
+ req, err := http.NewRequest("GET", url, nil)
+ if err != nil {
+ return nil, err
+ }
+
+ req.Host = host
+ req.Header.Set("X-Forwarded-For", xForwardedFor)
+ req.Header.Set("X-Forwarded-Host", xForwardedHost)
+
+ return DoPagesRequest(t, spec, req)
+}
+
func GetProxiedPageFromListener(t *testing.T, spec ListenSpec, host, xForwardedHost, urlsuffix string) (*http.Response, error) {
url := spec.URL(urlsuffix)
req, err := http.NewRequest("GET", url, nil)
diff --git a/test/acceptance/ratelimiter_test.go b/test/acceptance/ratelimiter_test.go
index d67b3d04..8f96d74b 100644
--- a/test/acceptance/ratelimiter_test.go
+++ b/test/acceptance/ratelimiter_test.go
@@ -1,6 +1,7 @@
package acceptance_test
import (
+ "fmt"
"net/http"
"testing"
"time"
@@ -10,30 +11,116 @@ import (
"gitlab.com/gitlab-org/gitlab-pages/internal/testhelpers"
)
-func TestRateLimitMiddleware(t *testing.T) {
+func TestSourceIPRateLimitMiddleware(t *testing.T) {
testhelpers.EnableRateLimiter(t)
- RunPagesProcess(t,
- withListeners([]ListenSpec{httpListener}),
- // 10 = 1 req every 100ms
- withExtraArgument("rate-limit-source-ip", "1.0"),
- withExtraArgument("rate-limit-source-ip-burst", "1"),
- )
-
- for i := 0; i < 20; i++ {
- rsp1, err := GetPageFromListener(t, httpListener, "group.gitlab-example.com", "project/")
- require.NoError(t, err)
- rsp1.Body.Close()
-
- // every other request should fail
- //if i%2 != 0 {
- // require.Equal(t, http.StatusTooManyRequests, rsp1.StatusCode, "group.gitlab-example.com request: %d failed", i)
- // // wait for another token to become available
- // time.Sleep(100 * time.Millisecond)
- // continue
- //}
-
- require.Equal(t, http.StatusOK, rsp1.StatusCode, "group.gitlab-example.com request: %d failed", i)
- time.Sleep(time.Millisecond)
+ tcs := map[string]struct {
+ listener ListenSpec
+ rateLimit float64
+ rateBurst string
+ blockedIP string
+ xForwardedHost string
+ xForwardedFor string
+ expectFail bool
+ sleep time.Duration
+ }{
+ "http_slow_requests_should_not_be_blocked": {
+ listener: httpListener,
+ rateLimit: 1000,
+ // RunPagesProcess makes one request, so we need to allow a burst of 2
+ // because r.RemoteAddr == 127.0.0.1 and X-Forwarded-For is ignored for non-proxy requests
+ // TODO: consider using X-Real-IP https://gitlab.com/gitlab-org/gitlab-pages/-/issues/644
+ rateBurst: "2",
+ sleep: 10 * time.Millisecond,
+ },
+ "https_slow_requests_should_not_be_blocked": {
+ listener: httpsListener,
+ rateLimit: 1000,
+ rateBurst: "2",
+ sleep: 10 * time.Millisecond,
+ },
+ "proxy_slow_requests_should_not_be_blocked": {
+ listener: proxyListener,
+ rateLimit: 1000,
+ // listen-proxy uses X-Forwarded-For
+ rateBurst: "1",
+ xForwardedFor: "172.16.123.1",
+ xForwardedHost: "group.gitlab-example.com",
+ sleep: 10 * time.Millisecond,
+ },
+ "proxyv2_slow_requests_should_not_be_blocked": {
+ listener: httpsProxyv2Listener,
+ rateLimit: 1000,
+ rateBurst: "2",
+ sleep: 10 * time.Millisecond,
+ },
+ "http_fast_requests_blocked_after_burst": {
+ listener: httpListener,
+ rateLimit: 1,
+ rateBurst: "2",
+ expectFail: true,
+ blockedIP: "127.0.0.1",
+ },
+ "https_fast_requests_blocked_after_burst": {
+ listener: httpsListener,
+ rateLimit: 1,
+ rateBurst: "2",
+ expectFail: true,
+ blockedIP: "127.0.0.1",
+ },
+ "proxy_fast_requests_blocked_after_burst": {
+ listener: proxyListener,
+ rateLimit: 1,
+ rateBurst: "1",
+ xForwardedFor: "172.16.123.1",
+ xForwardedHost: "group.gitlab-example.com",
+ expectFail: true,
+ blockedIP: "172.16.123.1",
+ },
+ "proxyv2_fast_requests_blocked_after_burst": {
+ listener: httpsProxyv2Listener,
+ rateLimit: 1,
+ rateBurst: "2",
+ expectFail: true,
+ // use TestProxyv2Client SourceIP
+ blockedIP: "10.1.1.1",
+ },
}
+
+ for tn, tc := range tcs {
+ t.Run(tn, func(t *testing.T) {
+ logBuf := RunPagesProcess(t,
+ withListeners([]ListenSpec{tc.listener}),
+ withExtraArgument("rate-limit-source-ip", fmt.Sprint(tc.rateLimit)),
+ withExtraArgument("rate-limit-source-ip-burst", tc.rateBurst),
+ )
+
+ for i := 0; i < 5; i++ {
+ rsp, err := GetPageFromListenerWithRemoteAddrAndXFF(t, tc.listener, "group.gitlab-example.com", "project/", tc.xForwardedFor, tc.xForwardedHost)
+ require.NoError(t, err)
+ rsp.Body.Close()
+
+ if tc.expectFail && i >= int(tc.rateLimit) {
+ require.Equal(t, http.StatusTooManyRequests, rsp.StatusCode, "group.gitlab-example.com request: %d failed", i)
+ assertLogFound(t, logBuf, []string{"source IP hit rate limit", "\"source_ip\":\"" + tc.blockedIP + "\""})
+ continue
+ }
+
+ require.Equal(t, http.StatusOK, rsp.StatusCode, "request: %d failed", i)
+ time.Sleep(tc.sleep)
+ }
+ })
+ }
+}
+
+func assertLogFound(t *testing.T, logBuf *LogCaptureBuffer, expectedLogs []string) {
+ t.Helper()
+
+ // give the process enough time to write the log message
+ require.Eventually(t, func() bool {
+ for _, e := range expectedLogs {
+ require.Contains(t, logBuf.String(), e, "log mismatch")
+ }
+ return true
+ }, 100*time.Millisecond, 10*time.Millisecond)
}