2019-06-06 13:06:31 +02:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
2019-07-06 16:05:27 +02:00
|
|
|
"fmt"
|
2019-06-06 13:06:31 +02:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
2019-07-06 16:05:27 +02:00
|
|
|
"strings"
|
2019-06-06 13:06:31 +02:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCorsMiddleware(t *testing.T) {
|
|
|
|
t.Run("default", func(t *testing.T) {
|
2019-07-06 15:10:39 +02:00
|
|
|
wrapped := CorsMiddleware("https://www.example.net")(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2019-06-06 13:06:31 +02:00
|
|
|
w.Write([]byte("OK"))
|
2019-07-06 15:10:39 +02:00
|
|
|
}))
|
2019-06-06 13:06:31 +02:00
|
|
|
w := httptest.NewRecorder()
|
|
|
|
r := httptest.NewRequest(http.MethodGet, "/", nil)
|
|
|
|
wrapped.ServeHTTP(w, r)
|
|
|
|
if h := w.Header().Get("Access-Control-Allow-Origin"); h != "https://www.example.net" {
|
|
|
|
t.Errorf("Unexpected header value %v", h)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContentTypeMiddleware(t *testing.T) {
|
|
|
|
t.Run("default", func(t *testing.T) {
|
2019-07-06 15:10:39 +02:00
|
|
|
wrapped := ContentTypeMiddleware("application/json")(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2019-06-06 13:06:31 +02:00
|
|
|
w.Write([]byte("OK"))
|
2019-07-06 15:10:39 +02:00
|
|
|
}))
|
2019-06-06 13:06:31 +02:00
|
|
|
w := httptest.NewRecorder()
|
|
|
|
r := httptest.NewRequest(http.MethodGet, "/", nil)
|
|
|
|
wrapped.ServeHTTP(w, r)
|
|
|
|
if h := w.Header().Get("Content-Type"); h != "application/json" {
|
|
|
|
t.Errorf("Unexpected header value %v", h)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-06-24 22:26:50 +02:00
|
|
|
func TestOptoutMiddleware(t *testing.T) {
|
2019-07-06 15:10:39 +02:00
|
|
|
wrapped := OptoutMiddleware("optout")(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2019-06-06 13:06:31 +02:00
|
|
|
w.Write([]byte("hey there"))
|
|
|
|
}))
|
|
|
|
t.Run("with header", func(t *testing.T) {
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
r := httptest.NewRequest(http.MethodGet, "/", nil)
|
2019-06-24 22:26:50 +02:00
|
|
|
r.AddCookie(&http.Cookie{
|
|
|
|
Name: "optout",
|
|
|
|
})
|
2019-06-06 13:06:31 +02:00
|
|
|
wrapped.ServeHTTP(w, r)
|
|
|
|
|
|
|
|
if w.Code != http.StatusNoContent {
|
|
|
|
t.Errorf("Unexpected status code %d", w.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
if w.Body.String() != "" {
|
|
|
|
t.Errorf("Unexpected response body %s", w.Body.String())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
t.Run("without header", func(t *testing.T) {
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
r := httptest.NewRequest(http.MethodGet, "/", nil)
|
|
|
|
wrapped.ServeHTTP(w, r)
|
|
|
|
|
|
|
|
if w.Code != http.StatusOK {
|
|
|
|
t.Errorf("Unexpected status code %d", w.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
if w.Body.String() != "hey there" {
|
|
|
|
t.Errorf("Unexpected response body %s", w.Body.String())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2019-07-06 16:05:27 +02:00
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
2019-07-09 14:50:31 +02:00
|
|
|
if !strings.Contains(w.Body.String(), "received no or blank identifier") {
|
2019-07-06 16:05:27 +02:00
|
|
|
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)
|
|
|
|
}
|
2019-07-09 14:50:31 +02:00
|
|
|
if !strings.Contains(w.Body.String(), "received no or blank identifier") {
|
2019-07-06 16:05:27 +02:00
|
|
|
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())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|