@@ -26,7 +26,6 @@ import (
26
26
"testing"
27
27
"time"
28
28
29
- "github.com/sirupsen/logrus"
30
29
"k8s.io/apimachinery/pkg/util/wait"
31
30
"k8s.io/client-go/tools/clientcmd"
32
31
@@ -306,7 +305,8 @@ func waitForPortForwardEvent(t *testing.T, entries chan *proto.LogEntry, resourc
306
305
307
306
// assertResponseFromPort waits for two minutes for the expected response at port.
308
307
func assertResponseFromPort (t * testing.T , port int , expected string ) {
309
- logrus .Infof ("Waiting for response %s from port %d" , expected , port )
308
+ url := fmt .Sprintf ("http://%s:%d" , util .Loopback , port )
309
+ t .Logf ("Waiting on %s to return: %s" , url , expected )
310
310
ctx , cancelTimeout := context .WithTimeout (context .Background (), 2 * time .Minute )
311
311
defer cancelTimeout ()
312
312
@@ -315,21 +315,22 @@ func assertResponseFromPort(t *testing.T, port int, expected string) {
315
315
case <- ctx .Done ():
316
316
t .Fatalf ("Timed out waiting for response from port %d" , port )
317
317
case <- time .After (1 * time .Second ):
318
- resp , err := http .Get (fmt .Sprintf ("http://%s:%d" , util .Loopback , port ))
318
+ client := http.Client {Timeout : 1 * time .Second }
319
+ resp , err := client .Get (url )
319
320
if err != nil {
320
- logrus . Infof ( "error getting response from port %d : %v", port , err )
321
+ t . Logf ( "[retriable error] : %v" , err )
321
322
continue
322
323
}
323
324
defer resp .Body .Close ()
324
325
body , err := ioutil .ReadAll (resp .Body )
325
326
if err != nil {
326
- logrus . Infof ( " error reading response: %v" , err )
327
+ t . Logf ( "[retriable error] reading response: %v" , err )
327
328
continue
328
329
}
329
330
if string (body ) == expected {
330
331
return
331
332
}
332
- logrus . Infof ( " didn't get expected response from port. got: %s, expected: %s" , string (body ), expected )
333
+ t . Logf ( "[retriable error] didn't get expected response from port. got: %s, expected: %s" , string (body ), expected )
333
334
}
334
335
}
335
336
}
0 commit comments