forked from DiceDB/playground-mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add trailing slash middleware to prevent unexpected API crash (DiceD…
- Loading branch information
Showing
3 changed files
with
92 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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,64 @@ | ||
package middleware_test | ||
|
||
import ( | ||
"net/http" | ||
"net/http/httptest" | ||
"server/internal/middleware" | ||
"testing" | ||
) | ||
|
||
func TestTrailingSlashMiddleware(t *testing.T) { | ||
|
||
handler := middleware.TrailingSlashMiddleware(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
w.WriteHeader(http.StatusOK) | ||
})) | ||
|
||
tests := []struct { | ||
name string | ||
requestURL string | ||
expectedCode int | ||
expectedUrl string | ||
}{ | ||
{ | ||
name: "url with trailing slash", | ||
requestURL: "/example/", | ||
expectedCode: http.StatusMovedPermanently, | ||
expectedUrl: "/example", | ||
}, | ||
{ | ||
name: "url without trailing slash", | ||
requestURL: "/example", | ||
expectedCode: http.StatusOK, | ||
expectedUrl: "", | ||
}, | ||
{ | ||
name: "root url with trailing slash", | ||
requestURL: "/", | ||
expectedCode: http.StatusOK, | ||
expectedUrl: "", | ||
}, | ||
{ | ||
name: "URL with Query Parameters", | ||
requestURL: "/example?query=1", | ||
expectedCode: http.StatusOK, | ||
expectedUrl: "", | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
req := httptest.NewRequest("GET", tt.requestURL, nil) | ||
w := httptest.NewRecorder() | ||
|
||
handler.ServeHTTP(w, req) | ||
|
||
if w.Code != tt.expectedCode { | ||
t.Errorf("expected status %d, got %d", tt.expectedCode, w.Code) | ||
} | ||
|
||
if tt.expectedUrl != "" && w.Header().Get("Location") != tt.expectedUrl { | ||
t.Errorf("expected location %s, got %s", tt.expectedUrl, w.Header().Get("Location")) | ||
} | ||
}) | ||
} | ||
} |
This file contains 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,23 @@ | ||
package middleware | ||
|
||
import ( | ||
"net/http" | ||
"strings" | ||
) | ||
|
||
func TrailingSlashMiddleware(next http.Handler) http.Handler { | ||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
if r.URL.Path != "/" && strings.HasSuffix(r.URL.Path, "/") { | ||
// remove slash | ||
newPath := strings.TrimSuffix(r.URL.Path, "/") | ||
// if query params exist append them | ||
newURL := newPath | ||
if r.URL.RawQuery != "" { | ||
newURL += "?" + r.URL.RawQuery | ||
} | ||
http.Redirect(w, r, newURL, http.StatusMovedPermanently) | ||
return | ||
} | ||
next.ServeHTTP(w, r) | ||
}) | ||
} |
This file contains 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