-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
proposal: net/http/httptest: add support for 1XX responses #56346
Comments
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
These tests started failing in go1.19, presumably due to support for valid 1xx responses being added. golang/go#56346
These tests started failing in go1.19, presumably due to support for valid 1xx responses being added. golang/go#56346
These tests started failing in go1.19, presumably due to support for valid 1xx responses being added. golang/go#56346
These tests started failing in go1.19, presumably due to support for valid 1xx responses being added. golang/go#56346
These tests started failing in go1.19, presumably due to support for valid 1xx responses being added. golang/go#56346
These tests started failing in go1.19, presumably due to support for valid 1xx responses being added. golang/go#56346
Updated API proposal following https://go-review.googlesource.com/c/go/+/442215/1#message-b8b8e699ed0237031dbfec5e34b8adf1bf8a31d8: // InformationalResponse is an HTTP response sent with a [1xx status code].
//
// [1xx status code]: https://httpwg.org/specs/rfc9110.html#status.1xx
type InformationalResponse struct {
// Code is the 1xx HTTP response code of this informational response.
Code int
// Header contains the headers of this informational response.
Header http.Header
}
type ResponseRecorder struct {
// Informational HTTP responses (1xx status code) sent before the main response.
InformationalResponses []InformationalResponse
// ...
} |
Change https://go.dev/cl/442215 mentions this issue: |
The updated proposal in #56346 (comment) seems reasonable to me. |
Thank you for working on this! It would be helpful to have support for informational responses and the proposed API looks good to me. In https://go-review.googlesource.com/c/go/+/442215, @neild mentioned that an accepted proposal is needed to proceed here. I am new to contributing to Go, but what are the steps to continue with the proposal process? Is a design document necessary as mentioned in https://github.com/golang/proposal#readme? |
@dunglas Thank you for implementing the proposed API. To try it out and use it today, I pulled the response recorder and your PR into a separate package: https://github.com/Acconut/go-httptest-recorder I hope this is OK and helps to experiment with the new feature. |
@Acconut thanks for creating the package. It works just fine for me, although I hope this patch lands in the stdlib at some point 🙂 |
@neild @ianlancetaylor What is the process to get this from Incoming to Active proposal? |
There is currently no way to test 1XX responses with the httptest package.
Support for 1XX responses has been added to the built-in HTTP server and reverse proxy in Go 1.19 (#42597, #53164).
I propose to add support for inspecting 1XX responses with the test package by integrating the httptrace package with it (as we've done for the reverse proxy).
Regarding the API, I suggest implementing the same API as when using the non-test client:
Proposal implementation: #56151
The text was updated successfully, but these errors were encountered: