-
Notifications
You must be signed in to change notification settings - Fork 13
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
martian: run unit tests againts http2 server #869
Milestone
Comments
mmatczuk
added a commit
that referenced
this issue
Jul 26, 2024
Use http2.Response.Close() to send RST_STREAM frame. Reimplement writeFlusher as h2Writer. This is to be tested in Sauce Connect due to lack of testing infrastructure for http2 at the moment. I added #869 to fix that.
mmatczuk
added a commit
that referenced
this issue
Jul 26, 2024
Use http2.Response.Close() to send RST_STREAM frame. Reimplement writeFlusher as h2Writer. This is to be tested in Sauce Connect due to lack of testing infrastructure for http2 at the moment. I added #869 to fix that.
mmatczuk
added a commit
that referenced
this issue
Jul 26, 2024
Use http2.Response.Close() to send RST_STREAM frame. Reimplement writeFlusher as h2Writer. This is to be tested in Sauce Connect due to lack of testing infrastructure for http2 at the moment. I added #869 to fix that.
mmatczuk
added a commit
that referenced
this issue
Jul 29, 2024
Use http2.Response.Close() to send RST_STREAM frame. Reimplement writeFlusher as h2Writer. This is to be tested in Sauce Connect due to lack of testing infrastructure for http2 at the moment. I added #869 to fix that.
mmatczuk
added a commit
that referenced
this issue
Jul 30, 2024
Use http2.Response.Close() to send RST_STREAM frame. Reimplement writeFlusher as h2Writer. This is to be tested in Sauce Connect due to lack of testing infrastructure for http2 at the moment. I added #869 to fix that.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Previously we added tests running over TLS and against HTTP handler implementation.
Is's important to also run the tests against add HTTP2 server.
This is bit complicated as Go does not support http2 proxy servers out of the box,
and adding it would require tests fork or refactoring as we cannot send plain text.
Maybe we could make use of a translation layer or come with another trick to minimize the amount of changes.
The text was updated successfully, but these errors were encountered: