Skip to content

Commit 0f3cef4

Browse files
Merge pull request #18451 from bparees/debug
Automatic merge from submit-queue. better failure debug for fetch url tests trying to debug failures where the nodejs app pagecount reports as: ``` <span class="code" id="count-value">61</span> ``` when we should have only hit the app once (we must be hitting it multiple times but not realizing we've successfully hit the app/not gotten the appropriate response)
2 parents 0d9f796 + 544912c commit 0f3cef4

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

test/extended/image_ecosystem/sample_repos.go

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ func NewSampleRepoTest(c SampleRepoConfig) func() {
111111
if strings.Contains(response, c.expectedString) {
112112
return true, nil
113113
}
114+
e2e.Logf("url check got %s, expected it to contain %s", response, c.expectedString)
114115
return false, nil
115116
})
116117
o.Expect(response).Should(o.ContainSubstring(c.expectedString))

test/extended/util/framework.go

+6
Original file line numberDiff line numberDiff line change
@@ -1283,6 +1283,12 @@ func FetchURL(url string, retryTimeout time.Duration) (response string, err erro
12831283
if err != nil || r.StatusCode != 200 {
12841284
// lie to the poller that we didn't get an error even though we did
12851285
// because otherwise it's going to give up.
1286+
if err != nil {
1287+
e2e.Logf("error fetching url: %v", err)
1288+
}
1289+
if r != nil {
1290+
e2e.Logf("non-200 status code fetching url: %d", r.StatusCode)
1291+
}
12861292
return false, nil
12871293
}
12881294
defer r.Body.Close()

0 commit comments

Comments
 (0)