Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: tweak timings so we cancel during HTTP processing #696

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 22 additions & 8 deletions tests/proxy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,17 +105,26 @@ type delayedServer struct {
maxWait time.Duration
}

func newDelayedServer() *delayedServer {
// randomDuration returns a random duration in the [min, max) interval
func randomDuration(min, max time.Duration) time.Duration {
d := min
if max != min {
d += time.Duration(rand.Int63n(int64(max - min)))
}
return d
}

func newDelayedServer(minWait time.Duration, maxWait time.Duration) *delayedServer {
return &delayedServer{
minWait: 500 * time.Millisecond,
maxWait: 2 * time.Second,
minWait: minWait,
maxWait: maxWait,
}
}

var _ = newDelayedServer() // Suppress unused lint error.
var _ = newDelayedServer(time.Second, time.Second) // Suppress unused lint error.

func (s *delayedServer) ServeHTTP(w http.ResponseWriter, _ *http.Request) {
delay := time.Duration(rand.Int63n(int64(s.maxWait-s.minWait))) + s.minWait /* #nosec G404 */
delay := randomDuration(s.minWait, s.maxWait)
time.Sleep(delay)
w.Write([]byte("hello"))
}
Expand Down Expand Up @@ -360,7 +369,8 @@ func TestProxyDial_RequestCancelled_GRPC(t *testing.T) {
func TestProxyDial_RequestCancelled_Concurrent_GRPC(t *testing.T) {
expectCleanShutdown(t)

slowServer := newDelayedServer()
// An HTTP server that always waits 3 seconds before replying
slowServer := newDelayedServer(3*time.Second, 3*time.Second)
server := httptest.NewServer(slowServer)
defer server.Close()

Expand Down Expand Up @@ -420,8 +430,12 @@ func TestProxyDial_RequestCancelled_Concurrent_GRPC(t *testing.T) {
const concurrentConns = 50
wg.Add(concurrentConns)
for i := 0; i < concurrentConns; i++ {
cancelDelayMs := rand.Int63n(1000) + 5 /* #nosec G404 */
go dialFn(i, time.Duration(cancelDelayMs)*time.Millisecond)
// The delay before we cancel the HTTP request:
// * at least 1 second for the HTTP connection to establish
// * less than 2 seconds so that we cancel during the 3 second delay in our slowServer
// TODO: Can we try to cancel during the dial? Or after the HTTP request has returned?
cancelDelay := randomDuration(time.Second, 2*time.Second)
go dialFn(i, cancelDelay)
}
wg.Wait()

Expand Down
Loading