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

requests_test.go « queueing « internal « workhorse - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb098a6242e9693739eda1eb042a6394fdc8e601 (plain)
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
package queueing

import (
	"fmt"
	"net/http"
	"net/http/httptest"
	"testing"
	"time"

	"github.com/prometheus/client_golang/prometheus"
)

var httpHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
	fmt.Fprintln(w, "OK")
})

func pausedHttpHandler(pauseCh chan struct{}) http.Handler {
	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		<-pauseCh
		fmt.Fprintln(w, "OK")
	})
}

func TestNormalRequestProcessing(t *testing.T) {
	w := httptest.NewRecorder()
	h := QueueRequests("Normal request processing", httpHandler, 1, 1, time.Second, prometheus.NewRegistry())
	h.ServeHTTP(w, nil)
	if w.Code != 200 {
		t.Fatal("QueueRequests should process request")
	}
}

// testSlowRequestProcessing creates a new queue,
// then it runs a number of requests that are going through queue,
// we return the response of first finished request,
// where status of request can be 200, 429 or 503
func testSlowRequestProcessing(name string, count int, limit, queueLimit uint, queueTimeout time.Duration) *httptest.ResponseRecorder {
	pauseCh := make(chan struct{})
	defer close(pauseCh)

	handler := QueueRequests("Slow request processing: "+name, pausedHttpHandler(pauseCh), limit, queueLimit, queueTimeout, prometheus.NewRegistry())

	respCh := make(chan *httptest.ResponseRecorder, count)

	// queue requests to use up the queue
	for i := 0; i < count; i++ {
		go func() {
			w := httptest.NewRecorder()
			handler.ServeHTTP(w, nil)
			respCh <- w
		}()
	}

	// dequeue first request
	return <-respCh
}

// TestQueueingTimeout performs 2 requests
// the queue limit and length is 1,
// the second request gets timed-out
func TestQueueingTimeout(t *testing.T) {
	w := testSlowRequestProcessing("timeout", 2, 1, 1, time.Microsecond)

	if w.Code != 503 {
		t.Fatal("QueueRequests should timeout queued request")
	}
}

// TestQueueingTooManyRequests performs 3 requests
// the queue limit and length is 1,
// so the third request has to be rejected with 429
func TestQueueingTooManyRequests(t *testing.T) {
	w := testSlowRequestProcessing("too many requests", 3, 1, 1, time.Minute)

	if w.Code != 429 {
		t.Fatal("QueueRequests should return immediately and return too many requests")
	}
}