mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
add tests and docs for shared package
This commit is contained in:
parent
7971b7289a
commit
b360092cb8
@ -16,6 +16,8 @@ func jsonError(err error, status int) []byte {
|
|||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// RespondWithJSONError writes the given error to the given response writer
|
||||||
|
// while wrapping it into a JSON payload.
|
||||||
func RespondWithJSONError(w http.ResponseWriter, err error, status int) {
|
func RespondWithJSONError(w http.ResponseWriter, err error, status int) {
|
||||||
w.WriteHeader(status)
|
w.WriteHeader(status)
|
||||||
w.Write(jsonError(err, status))
|
w.Write(jsonError(err, status))
|
||||||
|
@ -6,6 +6,8 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// CorsMiddleware ensures the wrapped handler will respond with proper CORS
|
||||||
|
// headers using the given origin.
|
||||||
func CorsMiddleware(origin string) func(http.Handler) http.Handler {
|
func CorsMiddleware(origin string) func(http.Handler) http.Handler {
|
||||||
return func(next http.Handler) http.Handler {
|
return func(next http.Handler) http.Handler {
|
||||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
@ -17,6 +19,8 @@ func CorsMiddleware(origin string) func(http.Handler) http.Handler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ContentTypeMiddleware ensuresthe wrapped handler will respond with a
|
||||||
|
// content type header of the given value.
|
||||||
func ContentTypeMiddleware(contentType string) func(http.Handler) http.Handler {
|
func ContentTypeMiddleware(contentType string) func(http.Handler) http.Handler {
|
||||||
return func(next http.Handler) http.Handler {
|
return func(next http.Handler) http.Handler {
|
||||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
@ -26,6 +30,8 @@ func ContentTypeMiddleware(contentType string) func(http.Handler) http.Handler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OptoutMiddleware drops all requests to the given handler that are sent with
|
||||||
|
// a cookie of the given name,
|
||||||
func OptoutMiddleware(cookieName string) func(http.Handler) http.Handler {
|
func OptoutMiddleware(cookieName string) func(http.Handler) http.Handler {
|
||||||
return func(next http.Handler) http.Handler {
|
return func(next http.Handler) http.Handler {
|
||||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
@ -38,16 +44,15 @@ func OptoutMiddleware(cookieName string) func(http.Handler) http.Handler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UserCookieMiddleware ensures a cookie of the given name is present and
|
||||||
|
// attaches its value to the request's context using the given key, before
|
||||||
|
// passing it on to the wrapped handler.
|
||||||
func UserCookieMiddleware(cookieKey string, contextKey interface{}) func(http.Handler) http.Handler {
|
func UserCookieMiddleware(cookieKey string, contextKey interface{}) func(http.Handler) http.Handler {
|
||||||
return func(next http.Handler) http.Handler {
|
return func(next http.Handler) http.Handler {
|
||||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
c, err := r.Cookie(cookieKey)
|
c, err := r.Cookie(cookieKey)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
RespondWithJSONError(w, err, http.StatusBadRequest)
|
RespondWithJSONError(w, errors.New("received no or blank user identifier"), http.StatusBadRequest)
|
||||||
return
|
|
||||||
}
|
|
||||||
if c.Value == "" {
|
|
||||||
RespondWithJSONError(w, errors.New("received blank user identifier"), http.StatusBadRequest)
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r = r.WithContext(
|
r = r.WithContext(
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
package http
|
package http
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -68,3 +70,53 @@ func TestOptoutMiddleware(t *testing.T) {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestUserCookieMiddleware(t *testing.T) {
|
||||||
|
wrapped := UserCookieMiddleware("user", 1)(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
value := r.Context().Value(1)
|
||||||
|
fmt.Fprintf(w, "value is %v", value)
|
||||||
|
}))
|
||||||
|
t.Run("no cookie", func(t *testing.T) {
|
||||||
|
w := httptest.NewRecorder()
|
||||||
|
r := httptest.NewRequest(http.MethodGet, "/", nil)
|
||||||
|
wrapped.ServeHTTP(w, r)
|
||||||
|
if w.Code != http.StatusBadRequest {
|
||||||
|
t.Errorf("Unexpected status code %v", w.Code)
|
||||||
|
}
|
||||||
|
if !strings.Contains(w.Body.String(), "received no or blank user identifier") {
|
||||||
|
t.Errorf("Unexpected body %s", w.Body.String())
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("no value", func(t *testing.T) {
|
||||||
|
w := httptest.NewRecorder()
|
||||||
|
r := httptest.NewRequest(http.MethodGet, "/", nil)
|
||||||
|
wrapped.ServeHTTP(w, r)
|
||||||
|
r.AddCookie(&http.Cookie{
|
||||||
|
Name: "user",
|
||||||
|
Value: "",
|
||||||
|
})
|
||||||
|
if w.Code != http.StatusBadRequest {
|
||||||
|
t.Errorf("Unexpected status code %v", w.Code)
|
||||||
|
}
|
||||||
|
if !strings.Contains(w.Body.String(), "received no or blank user identifier") {
|
||||||
|
t.Errorf("Unexpected body %s", w.Body.String())
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("ok", func(t *testing.T) {
|
||||||
|
w := httptest.NewRecorder()
|
||||||
|
r := httptest.NewRequest(http.MethodGet, "/", nil)
|
||||||
|
r.AddCookie(&http.Cookie{
|
||||||
|
Name: "user",
|
||||||
|
Value: "token",
|
||||||
|
})
|
||||||
|
wrapped.ServeHTTP(w, r)
|
||||||
|
if w.Code != http.StatusOK {
|
||||||
|
t.Errorf("Unexpected status code %v", w.Code)
|
||||||
|
}
|
||||||
|
if w.Body.String() != "value is token" {
|
||||||
|
t.Errorf("Unexpected body %s", w.Body.String())
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user