diff options
author | Andrei Vagin <avagin@google.com> | 2019-05-13 00:49:32 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-05-13 00:50:44 -0700 |
commit | 9f2b12c624a4a07c6662d1a5f1bced28b6eb86da (patch) | |
tree | 2502e216d1a5f9712f9d4b79c649d8f59d73d112 /runsc/test/image | |
parent | c61a2e709a810233c310e409c07b0ed696f4e858 (diff) |
gvisor/runsc/tests: set timeout for http.Get()
WaitForHTTP tries GET requests on a port until the call succeeds or timeout.
But we want to be sure that one of our attempts will not stuck for
the whole timeout.
All timeouts are increased to 30 seconds, because test cases with smaller
timeouts fail sometimes even for the native container runtime (runc).
PiperOrigin-RevId: 247888467
Change-Id: I03cfd3275286bc686a78fd26da43231d20667851
Diffstat (limited to 'runsc/test/image')
-rw-r--r-- | runsc/test/image/image_test.go | 41 |
1 files changed, 29 insertions, 12 deletions
diff --git a/runsc/test/image/image_test.go b/runsc/test/image/image_test.go index 8322dd001..b969731b0 100644 --- a/runsc/test/image/image_test.go +++ b/runsc/test/image/image_test.go @@ -24,6 +24,7 @@ package image import ( "fmt" "io/ioutil" + "log" "net/http" "os" "path/filepath" @@ -46,7 +47,7 @@ func TestHelloWorld(t *testing.T) { } } -func testHTTPServer(port int) error { +func runHTTPRequest(port int) error { url := fmt.Sprintf("http://localhost:%d/not-found", port) resp, err := http.Get(url) if err != nil { @@ -78,6 +79,26 @@ func testHTTPServer(port int) error { return nil } +func testHTTPServer(t *testing.T, port int) { + const requests = 10 + ch := make(chan error, requests) + for i := 0; i < requests; i++ { + go func() { + start := time.Now() + err := runHTTPRequest(port) + log.Printf("Response time %v: %v", time.Since(start).String(), err) + ch <- err + }() + } + + for i := 0; i < requests; i++ { + err := <-ch + if err != nil { + t.Errorf("testHTTPServer(%d) failed: %v", port, err) + } + } +} + func TestHttpd(t *testing.T) { if err := testutil.Pull("httpd"); err != nil { t.Fatalf("docker pull failed: %v", err) @@ -103,13 +124,11 @@ func TestHttpd(t *testing.T) { } // Wait until it's up and running. - if err := testutil.WaitForHTTP(port, 10*time.Second); err != nil { - t.Fatalf("WaitForHTTP() timeout: %v", err) + if err := testutil.WaitForHTTP(port, 30*time.Second); err != nil { + t.Errorf("WaitForHTTP() timeout: %v", err) } - if err := testHTTPServer(port); err != nil { - t.Fatalf("testHTTPServer(%d) failed: %v", port, err) - } + testHTTPServer(t, port) } func TestNginx(t *testing.T) { @@ -137,13 +156,11 @@ func TestNginx(t *testing.T) { } // Wait until it's up and running. - if err := testutil.WaitForHTTP(port, 10*time.Second); err != nil { - t.Fatalf("WaitForHTTP() timeout: %v", err) + if err := testutil.WaitForHTTP(port, 30*time.Second); err != nil { + t.Errorf("WaitForHTTP() timeout: %v", err) } - if err := testHTTPServer(port); err != nil { - t.Fatalf("testHTTPServer(%d) failed: %v", port, err) - } + testHTTPServer(t, port) } func TestMysql(t *testing.T) { @@ -240,7 +257,7 @@ func TestTomcat(t *testing.T) { } // Wait until it's up and running. - if err := testutil.WaitForHTTP(port, 10*time.Second); err != nil { + if err := testutil.WaitForHTTP(port, 30*time.Second); err != nil { t.Fatalf("WaitForHTTP() timeout: %v", err) } |