-
Notifications
You must be signed in to change notification settings - Fork 894
feat: add panic recovery middleware #3687
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
5a1a196
feat: add panic recovery middleware
sreya 5d37630
add some more tests
sreya f9d48b3
pr comments
sreya 1fc5987
Merge branch 'main' into jon/fixpanic
sreya 1086ff9
unexport ResponseBody
sreya 8493dfe
Merge branch 'main' into jon/fixpanic
sreya 2814949
fix unique constraint
sreya File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add some more tests
- Loading branch information
commit 5d37630c71ff56cae658f4997af750fb84caad07
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -4,6 +4,8 @@ import ( | |||||||
"bufio" | ||||||||
"net" | ||||||||
"net/http" | ||||||||
|
||||||||
"golang.org/x/xerrors" | ||||||||
) | ||||||||
|
||||||||
var _ http.ResponseWriter = (*StatusWriter)(nil) | ||||||||
|
@@ -17,32 +19,38 @@ type StatusWriter struct { | |||||||
Status int | ||||||||
Hijacked bool | ||||||||
ResponseBody []byte | ||||||||
|
||||||||
wroteHeader bool | ||||||||
} | ||||||||
|
||||||||
func (w *StatusWriter) WriteHeader(status int) { | ||||||||
w.Status = status | ||||||||
w.ResponseWriter.WriteHeader(status) | ||||||||
if !w.wroteHeader { | ||||||||
w.Status = status | ||||||||
w.wroteHeader = true | ||||||||
w.ResponseWriter.WriteHeader(status) | ||||||||
} | ||||||||
} | ||||||||
|
||||||||
func (w *StatusWriter) Write(b []byte) (int, error) { | ||||||||
const maxBodySize = 4096 | ||||||||
|
||||||||
if w.Status == 0 { | ||||||||
if !w.wroteHeader { | ||||||||
w.Status = http.StatusOK | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Technically this will be true once we hit
Suggested change
|
||||||||
} | ||||||||
|
||||||||
if w.Status >= http.StatusBadRequest { | ||||||||
// Instantiate the recorded response body to be at most | ||||||||
// maxBodySize length. | ||||||||
// This is technically wrong as multiple calls to write | ||||||||
// will simply overwrite w.ResponseBody but given that | ||||||||
// we typically only write to the response body once | ||||||||
// and this field is only used for logging I'm leaving | ||||||||
// this as-is. | ||||||||
w.ResponseBody = make([]byte, minInt(len(b), maxBodySize)) | ||||||||
copy(w.ResponseBody, b) | ||||||||
} | ||||||||
|
||||||||
return w.ResponseWriter.Write(b) | ||||||||
} | ||||||||
|
||||||||
// minInt returns the smaller of a or b. This is helpful because math.Min only | ||||||||
// works with float64s. | ||||||||
func minInt(a, b int) int { | ||||||||
if a < b { | ||||||||
return a | ||||||||
|
@@ -52,5 +60,10 @@ func minInt(a, b int) int { | |||||||
|
||||||||
func (w *StatusWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) { | ||||||||
w.Hijacked = true | ||||||||
return w.ResponseWriter.(http.Hijacker).Hijack() | ||||||||
hijacker, ok := w.ResponseWriter.(http.Hijacker) | ||||||||
if !ok { | ||||||||
return nil, nil, xerrors.Errorf("%T is not a http.Hijacker", w.ResponseWriter) | ||||||||
} | ||||||||
|
||||||||
return hijacker.Hijack() | ||||||||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
package httpapi_test | ||
|
||
import ( | ||
"bufio" | ||
"crypto/rand" | ||
"net" | ||
"net/http" | ||
"net/http/httptest" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
"golang.org/x/xerrors" | ||
|
||
"github.com/coder/coder/coderd/httpapi" | ||
) | ||
|
||
func TestStatusWriter(t *testing.T) { | ||
t.Parallel() | ||
|
||
t.Run("WriteHeader", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
var ( | ||
rec = httptest.NewRecorder() | ||
w = &httpapi.StatusWriter{ResponseWriter: rec} | ||
) | ||
|
||
w.WriteHeader(http.StatusOK) | ||
require.Equal(t, http.StatusOK, w.Status) | ||
// Validate that the code is written to the underlying Response. | ||
require.Equal(t, http.StatusOK, rec.Code) | ||
}) | ||
|
||
t.Run("WriteHeaderTwice", func(t *testing.T) { | ||
t.Parallel() | ||
|
||
var ( | ||
rec = httptest.NewRecorder() | ||
w = &httpapi.StatusWriter{ResponseWriter: rec} | ||
code = http.StatusNotFound | ||
) | ||
|
||
w.WriteHeader(code) | ||
w.WriteHeader(http.StatusOK) | ||
// Validate that we only record the first status code. | ||
require.Equal(t, code, w.Status) | ||
// Validate that the code is written to the underlying Response. | ||
require.Equal(t, code, rec.Code) | ||
}) | ||
|
||
t.Run("WriteNoHeader", func(t *testing.T) { | ||
t.Parallel() | ||
var ( | ||
rec = httptest.NewRecorder() | ||
w = &httpapi.StatusWriter{ResponseWriter: rec} | ||
body = []byte("hello") | ||
) | ||
|
||
_, err := w.Write(body) | ||
require.NoError(t, err) | ||
|
||
// Should set the status to OK. | ||
require.Equal(t, http.StatusOK, w.Status) | ||
// We don't record the body for codes <400. | ||
require.Equal(t, []byte(nil), w.ResponseBody) | ||
require.Equal(t, body, rec.Body.Bytes()) | ||
}) | ||
|
||
t.Run("WriteAfterHeader", func(t *testing.T) { | ||
t.Parallel() | ||
var ( | ||
rec = httptest.NewRecorder() | ||
w = &httpapi.StatusWriter{ResponseWriter: rec} | ||
body = []byte("hello") | ||
code = http.StatusInternalServerError | ||
) | ||
|
||
w.WriteHeader(code) | ||
_, err := w.Write(body) | ||
require.NoError(t, err) | ||
|
||
require.Equal(t, code, w.Status) | ||
require.Equal(t, body, w.ResponseBody) | ||
require.Equal(t, body, rec.Body.Bytes()) | ||
}) | ||
|
||
t.Run("WriteMaxBody", func(t *testing.T) { | ||
t.Parallel() | ||
var ( | ||
rec = httptest.NewRecorder() | ||
w = &httpapi.StatusWriter{ResponseWriter: rec} | ||
// 8kb body. | ||
body = make([]byte, 8<<10) | ||
code = http.StatusInternalServerError | ||
) | ||
|
||
_, err := rand.Read(body) | ||
require.NoError(t, err) | ||
|
||
w.WriteHeader(code) | ||
_, err = w.Write(body) | ||
require.NoError(t, err) | ||
|
||
require.Equal(t, code, w.Status) | ||
require.Equal(t, body, rec.Body.Bytes()) | ||
require.Equal(t, body[:4096], w.ResponseBody) | ||
}) | ||
|
||
t.Run("Hijack", func(t *testing.T) { | ||
t.Parallel() | ||
var ( | ||
rec = httptest.NewRecorder() | ||
) | ||
|
||
w := &httpapi.StatusWriter{ResponseWriter: hijacker{rec}} | ||
|
||
_, _, err := w.Hijack() | ||
require.Error(t, err) | ||
require.Equal(t, "hijacked", err.Error()) | ||
}) | ||
} | ||
|
||
type hijacker struct { | ||
http.ResponseWriter | ||
} | ||
|
||
func (hijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) { | ||
return nil, nil, xerrors.New("hijacked") | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.