Skip to content

Commit 736cc70

Browse files
authored
Merge pull request kubernetes-sigs#690 from cheftako/extendTimeout
Switching to a longer test timeout.
2 parents be4b6ba + f620421 commit 736cc70

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

tests/concurrent_client_request_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"testing"
2828
"time"
2929

30-
"k8s.io/apimachinery/pkg/util/wait"
30+
"sigs.k8s.io/apiserver-network-proxy/tests/framework"
3131
)
3232

3333
type simpleServer struct {
@@ -59,7 +59,7 @@ func getTestClient(front string, t *testing.T) *http.Client {
5959
Transport: &http.Transport{
6060
DialContext: tunnel.DialContext,
6161
},
62-
Timeout: wait.ForeverTestTimeout,
62+
Timeout: framework.ForeverTestTimeout,
6363
}
6464
}
6565

tests/framework/agent.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func (*InProcessAgentRunner) Start(t testing.TB, opts AgentOpts) (Agent, error)
7878
}()
7979

8080
healthAddr := net.JoinHostPort(o.HealthServerHost, strconv.Itoa(o.HealthServerPort))
81-
if err := wait.PollImmediateWithContext(ctx, 100*time.Millisecond, wait.ForeverTestTimeout, func(context.Context) (bool, error) {
81+
if err := wait.PollImmediateWithContext(ctx, 100*time.Millisecond, ForeverTestTimeout, func(context.Context) (bool, error) {
8282
return checkLiveness(healthAddr), nil
8383
}); err != nil {
8484
close(stopCh)
@@ -215,7 +215,7 @@ func (a *externalAgent) Metrics() metricstest.AgentTester {
215215
}
216216

217217
func (a *externalAgent) waitForLiveness() error {
218-
err := wait.PollImmediate(100*time.Millisecond, wait.ForeverTestTimeout, func() (bool, error) {
218+
err := wait.PollImmediate(100*time.Millisecond, ForeverTestTimeout, func() (bool, error) {
219219
resp, err := http.Get(fmt.Sprintf("http://%s/healthz", a.healthAddr))
220220
if err != nil {
221221
return false, nil

tests/framework/proxy_server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func (*InProcessProxyServerRunner) Start(t testing.TB, opts ProxyServerOpts) (Pr
7373
}()
7474

7575
healthAddr := net.JoinHostPort(o.HealthBindAddress, strconv.Itoa(o.HealthPort))
76-
if err := wait.PollImmediateWithContext(ctx, 100*time.Millisecond, wait.ForeverTestTimeout, func(context.Context) (bool, error) {
76+
if err := wait.PollImmediateWithContext(ctx, 100*time.Millisecond, ForeverTestTimeout, func(context.Context) (bool, error) {
7777
return checkLiveness(healthAddr), nil
7878
}); err != nil {
7979
close(stopCh)

tests/framework/util.go

+3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,11 @@ import (
2121
"net"
2222
"net/http"
2323
"strconv"
24+
"time"
2425
)
2526

27+
var ForeverTestTimeout = time.Minute
28+
2629
func checkReadiness(addr string) bool {
2730
resp, err := http.Get(fmt.Sprintf("http://%s/readyz", addr))
2831
if err != nil {

tests/proxy_test.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ func TestProxyHandle_RequestDeadlineExceeded_GRPC(t *testing.T) {
302302
select {
303303
case <-tunnel.Done():
304304
t.Log("Tunnel closed successfully")
305-
case <-time.After(wait.ForeverTestTimeout):
305+
case <-time.After(framework.ForeverTestTimeout):
306306
t.Errorf("Timed out waiting for tunnel to close")
307307
}
308308
}()
@@ -352,7 +352,7 @@ func TestProxyDial_RequestCancelled_GRPC(t *testing.T) {
352352

353353
select {
354354
case <-tunnel.Done():
355-
case <-time.After(wait.ForeverTestTimeout):
355+
case <-time.After(framework.ForeverTestTimeout):
356356
t.Errorf("Timed out waiting for tunnel to close")
357357
}
358358
}()
@@ -415,7 +415,7 @@ func TestProxyDial_RequestCancelled_Concurrent_GRPC(t *testing.T) {
415415

416416
select {
417417
case <-tunnel.Done():
418-
case <-time.After(wait.ForeverTestTimeout):
418+
case <-time.After(framework.ForeverTestTimeout):
419419
t.Errorf("Timed out waiting for tunnel to close")
420420
}
421421
}
@@ -441,7 +441,7 @@ func TestProxyDial_RequestCancelled_Concurrent_GRPC(t *testing.T) {
441441

442442
// Wait for the closed connections to propogate
443443
var endpointConnsErr, goLeaksErr error
444-
wait.PollImmediate(time.Second, wait.ForeverTestTimeout, func() (done bool, err error) {
444+
wait.PollImmediate(time.Second, framework.ForeverTestTimeout, func() (done bool, err error) {
445445
endpointConnsErr = a.Metrics().ExpectAgentEndpointConnections(0)
446446
goLeaksErr = goleak.Find(ignoredGoRoutines...)
447447
return endpointConnsErr == nil && goLeaksErr == nil, nil
@@ -503,7 +503,7 @@ func TestProxyDial_AgentTimeout_GRPC(t *testing.T) {
503503

504504
select {
505505
case <-tunnel.Done():
506-
case <-time.After(wait.ForeverTestTimeout):
506+
case <-time.After(framework.ForeverTestTimeout):
507507
t.Errorf("Timed out waiting for tunnel to close")
508508
}
509509
}()
@@ -979,7 +979,7 @@ func waitForConnectedServerCount(t testing.TB, expectedServerCount int, a framew
979979
// agents (backends). This assumes the ProxyServer is using a single ProxyStrategy.
980980
func waitForConnectedAgentCount(t testing.TB, expectedAgentCount int, ps framework.ProxyServer) {
981981
t.Helper()
982-
err := wait.PollImmediate(100*time.Millisecond, wait.ForeverTestTimeout, func() (bool, error) {
982+
err := wait.PollImmediate(100*time.Millisecond, framework.ForeverTestTimeout, func() (bool, error) {
983983
count, err := ps.ConnectedBackends()
984984
if err != nil {
985985
return false, err

0 commit comments

Comments
 (0)