summaryrefslogtreecommitdiff
path: root/src/net/http/client_test.go
Commit message (Expand)AuthorAgeFilesLines
* net/http: handle 3xx responses with no LocationDamien Neil2022-03-311-20/+24
* net/http: skip TestClientTimeout_Headers_h{1,2} on windows/arm and windows/arm64Bryan C. Mills2022-01-181-0/+3
* net/http: skip TestClientTimeout_h{1,2} on windows/arm and windows/arm64Bryan C. Mills2022-01-051-0/+5
* all: gofmt -w -r 'interface{} -> any' srcRuss Cox2021-12-131-1/+1
* net/http: do not cancel request context on response body readDamien Neil2021-11-121-0/+27
* net/http: reduce TestClientTimeout_h{1,2} latencyBryan C. Mills2021-11-041-42/+58
* all: use bytes.Cut, strings.CutRuss Cox2021-10-061-4/+3
* net/http: fix hang in probing for a zero-length request bodyDamien Neil2021-09-021-0/+44
* all: fix spellingsNaman Gera2021-04-101-1/+1
* net/http: use consistent case in URL in names徐志伟2021-03-311-3/+3
* all: update references to symbols moved from io/ioutil to ioRuss Cox2020-10-201-13/+12
* net/http: ensure Request.Body.Close is called once and only onceRoss Light2020-10-161-0/+57
* net/http: treat a nil Body from a custom RoundTripper as an empty oneBryan C. Mills2020-03-311-0/+35
* net/http: fix and lock-in Client.Do docs on request cancelationEmmanuel T Odeke2019-10-141-0/+55
* net/http: propagate Client.Timeout down into Request's context deadlineBrad Fitzpatrick2019-09-251-1/+20
* net/url: improve url parsing error messages by quotingStefan Baebler2019-08-281-8/+8
* net/http: quiet some log spam in testsBrad Fitzpatrick2019-05-281-1/+1
* net/http: strip escaped password from errorThanabodee Charoenpiriyakij2019-05-031-0/+5
* net/http: add func NewRequestWithContext, Request.CloneBrad Fitzpatrick2019-05-031-2/+1
* crypto/tls: enable TLS 1.3 and update testsFilippo Valsorda2018-11-121-0/+1
* net/http: add Client.CloseIdleConnectionsBrad Fitzpatrick2018-08-201-0/+24
* net/http: strip password from error messageGregory Man2018-03-311-0/+34
* net/http: preserve Host header following a relative redirectTom Bergan2017-10-161-1/+71
* net/http: use canonicalAddr on shouldCopyHeaderOnRedirectGuilherme Rezende2017-10-021-2/+6
* net/http: make Transport retry GetBody requests if nothing writtenDavid Glasser2017-06-051-2/+2
* net/http: use httptest.Server Client in testsJohan Brandhorst2017-03-081-120/+61
* net/http: clean up Transport.RoundTrip error handlingBrad Fitzpatrick2017-03-021-3/+7
* net/http: deflake TestClientRedirect308NoGetBodyBrad Fitzpatrick2017-03-011-1/+2
* net/http: fix flaky TestClientRedirect308NoLocationBrad Fitzpatrick2017-03-011-1/+2
* net/http: don't send body on redirects for 301, 302, 303 when GetBody is setBrad Fitzpatrick2017-01-241-20/+41
* net/http: preserve original HTTP method when possibleJoe Tsai2017-01-091-3/+3
* net/http: don't retry Transport requests if they have a bodyBrad Fitzpatrick2016-12-081-0/+74
* net/http: deflake TestClientTimeoutBrad Fitzpatrick2016-11-211-10/+9
* net/http: make Server log on bad requests from clientsKenny Grant2016-11-111-0/+1
* all: fix vet nitsJosh Bleecher Snyder2016-11-111-1/+1
* net/http: deflake TestClientTimeoutBrad Fitzpatrick2016-11-101-1/+1
* net/http: don't wrap request cancellation errors in timeoutsEmmanuel Odeke2016-11-101-12/+49
* net/http: deflake TestClientRedirectsBrad Fitzpatrick2016-11-081-5/+8
* net/http: deflake TestClientRedirectTypes and maybe some similar onesBrad Fitzpatrick2016-11-051-18/+46
* net/http: speed up tests, use t.Parallel when it's safeBrad Fitzpatrick2016-11-041-0/+6
* net/http: tweak the new Client 307/308 redirect behavior a bitBrad Fitzpatrick2016-11-041-0/+51
* net/http: handle 3xx redirects properlyEmmanuel Odeke2016-10-301-34/+145
* net/http: gofmt -w -sMikio Hara2016-10-261-20/+20
* net/http: fix redirect logic to handle mutations of cookiesJoe Tsai2016-10-251-0/+96
* net/http: add Client tests for various 3xx redirect codesEmmanuel Odeke2016-09-261-0/+68
* net/http: make Client copy headers on redirectBrad Fitzpatrick2016-09-091-0/+109
* net/http: if context is canceled, return its errorIan Lance Taylor2016-08-231-2/+2
* net/http: allow Client.CheckRedirect to use most recent responseBrad Fitzpatrick2016-05-181-0/+38
* net/http: don't assume Response.Request is populated after redirect errorsBrad Fitzpatrick2016-05-061-0/+23
* net/http: fixed trivial go vet warningsEmmanuel Odeke2016-04-081-1/+1