Browse Source

Use subtests for middleware tests (#478)

* Use subtests for middleware tests
* Don't use subtests for MiddlewareAdd
pull/492/head
Franklin Harding 7 years ago committed by Matt Silverlock
parent
commit
48f941fa99
  1. 100
      middleware_test.go

100
middleware_test.go

@ -2,6 +2,7 @@ package mux @@ -2,6 +2,7 @@ package mux
import (
"bytes"
"fmt"
"net/http"
"net/http/httptest"
"testing"
@ -28,12 +29,12 @@ func TestMiddlewareAdd(t *testing.T) { @@ -28,12 +29,12 @@ func TestMiddlewareAdd(t *testing.T) {
router.useInterface(mw)
if len(router.middlewares) != 1 || router.middlewares[0] != mw {
t.Fatal("Middleware was not added correctly")
t.Fatal("Middleware interface was not added correctly")
}
router.Use(mw.Middleware)
if len(router.middlewares) != 2 {
t.Fatal("MiddlewareFunc method was not added correctly")
t.Fatal("Middleware method was not added correctly")
}
banalMw := func(handler http.Handler) http.Handler {
@ -41,7 +42,7 @@ func TestMiddlewareAdd(t *testing.T) { @@ -41,7 +42,7 @@ func TestMiddlewareAdd(t *testing.T) {
}
router.Use(banalMw)
if len(router.middlewares) != 3 {
t.Fatal("MiddlewareFunc method was not added correctly")
t.Fatal("Middleware function was not added correctly")
}
}
@ -55,34 +56,37 @@ func TestMiddleware(t *testing.T) { @@ -55,34 +56,37 @@ func TestMiddleware(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/")
// Test regular middleware call
t.Run("regular middleware call", func(t *testing.T) {
router.ServeHTTP(rw, req)
if mw.timesCalled != 1 {
t.Fatalf("Expected %d calls, but got only %d", 1, mw.timesCalled)
}
})
// Middleware should not be called for 404
t.Run("not called for 404", func(t *testing.T) {
req = newRequest("GET", "/not/found")
router.ServeHTTP(rw, req)
if mw.timesCalled != 1 {
t.Fatalf("Expected %d calls, but got only %d", 1, mw.timesCalled)
}
})
// Middleware should not be called if there is a method mismatch
t.Run("not called for method mismatch", func(t *testing.T) {
req = newRequest("POST", "/")
router.ServeHTTP(rw, req)
if mw.timesCalled != 1 {
t.Fatalf("Expected %d calls, but got only %d", 1, mw.timesCalled)
}
})
// Add the middleware again as function
t.Run("regular call using function middleware", func(t *testing.T) {
router.Use(mw.Middleware)
req = newRequest("GET", "/")
router.ServeHTTP(rw, req)
if mw.timesCalled != 3 {
t.Fatalf("Expected %d calls, but got only %d", 3, mw.timesCalled)
}
})
}
func TestMiddlewareSubrouter(t *testing.T) {
@ -98,42 +102,56 @@ func TestMiddlewareSubrouter(t *testing.T) { @@ -98,42 +102,56 @@ func TestMiddlewareSubrouter(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/")
t.Run("not called for route outside subrouter", func(t *testing.T) {
router.ServeHTTP(rw, req)
if mw.timesCalled != 0 {
t.Fatalf("Expected %d calls, but got only %d", 0, mw.timesCalled)
}
})
t.Run("not called for subrouter root 404", func(t *testing.T) {
req = newRequest("GET", "/sub/")
router.ServeHTTP(rw, req)
if mw.timesCalled != 0 {
t.Fatalf("Expected %d calls, but got only %d", 0, mw.timesCalled)
}
})
t.Run("called once for route inside subrouter", func(t *testing.T) {
req = newRequest("GET", "/sub/x")
router.ServeHTTP(rw, req)
if mw.timesCalled != 1 {
t.Fatalf("Expected %d calls, but got only %d", 1, mw.timesCalled)
}
})
t.Run("not called for 404 inside subrouter", func(t *testing.T) {
req = newRequest("GET", "/sub/not/found")
router.ServeHTTP(rw, req)
if mw.timesCalled != 1 {
t.Fatalf("Expected %d calls, but got only %d", 1, mw.timesCalled)
}
})
t.Run("middleware added to router", func(t *testing.T) {
router.useInterface(mw)
t.Run("called once for route outside subrouter", func(t *testing.T) {
req = newRequest("GET", "/")
router.ServeHTTP(rw, req)
if mw.timesCalled != 2 {
t.Fatalf("Expected %d calls, but got only %d", 2, mw.timesCalled)
}
})
t.Run("called twice for route inside subrouter", func(t *testing.T) {
req = newRequest("GET", "/sub/x")
router.ServeHTTP(rw, req)
if mw.timesCalled != 4 {
t.Fatalf("Expected %d calls, but got only %d", 4, mw.timesCalled)
}
})
})
}
func TestMiddlewareExecution(t *testing.T) {
@ -145,18 +163,20 @@ func TestMiddlewareExecution(t *testing.T) { @@ -145,18 +163,20 @@ func TestMiddlewareExecution(t *testing.T) {
w.Write(handlerStr)
})
t.Run("responds normally without middleware", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/")
// Test handler-only call
router.ServeHTTP(rw, req)
if !bytes.Equal(rw.Body.Bytes(), handlerStr) {
t.Fatal("Handler response is not what it should be")
}
})
// Test middleware call
rw = NewRecorder()
t.Run("responds with handler and middleware response", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/")
router.Use(func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
@ -169,6 +189,7 @@ func TestMiddlewareExecution(t *testing.T) { @@ -169,6 +189,7 @@ func TestMiddlewareExecution(t *testing.T) {
if !bytes.Equal(rw.Body.Bytes(), append(mwStr, handlerStr...)) {
t.Fatal("Middleware + handler response is not what it should be")
}
})
}
func TestMiddlewareNotFound(t *testing.T) {
@ -187,6 +208,7 @@ func TestMiddlewareNotFound(t *testing.T) { @@ -187,6 +208,7 @@ func TestMiddlewareNotFound(t *testing.T) {
})
// Test not found call with default handler
t.Run("not called", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/notfound")
@ -194,10 +216,11 @@ func TestMiddlewareNotFound(t *testing.T) { @@ -194,10 +216,11 @@ func TestMiddlewareNotFound(t *testing.T) {
if bytes.Contains(rw.Body.Bytes(), mwStr) {
t.Fatal("Middleware was called for a 404")
}
})
// Test not found call with custom handler
rw = NewRecorder()
req = newRequest("GET", "/notfound")
t.Run("not called with custom not found handler", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/notfound")
router.NotFoundHandler = http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
rw.Write([]byte("Custom 404 handler"))
@ -207,6 +230,7 @@ func TestMiddlewareNotFound(t *testing.T) { @@ -207,6 +230,7 @@ func TestMiddlewareNotFound(t *testing.T) {
if bytes.Contains(rw.Body.Bytes(), mwStr) {
t.Fatal("Middleware was called for a custom 404")
}
})
}
func TestMiddlewareMethodMismatch(t *testing.T) {
@ -225,7 +249,7 @@ func TestMiddlewareMethodMismatch(t *testing.T) { @@ -225,7 +249,7 @@ func TestMiddlewareMethodMismatch(t *testing.T) {
})
})
// Test method mismatch
t.Run("not called", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("POST", "/")
@ -233,10 +257,11 @@ func TestMiddlewareMethodMismatch(t *testing.T) { @@ -233,10 +257,11 @@ func TestMiddlewareMethodMismatch(t *testing.T) {
if bytes.Contains(rw.Body.Bytes(), mwStr) {
t.Fatal("Middleware was called for a method mismatch")
}
})
// Test not found call
rw = NewRecorder()
req = newRequest("POST", "/")
t.Run("not called with custom method not allowed handler", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("POST", "/")
router.MethodNotAllowedHandler = http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
rw.Write([]byte("Method not allowed"))
@ -246,6 +271,7 @@ func TestMiddlewareMethodMismatch(t *testing.T) { @@ -246,6 +271,7 @@ func TestMiddlewareMethodMismatch(t *testing.T) {
if bytes.Contains(rw.Body.Bytes(), mwStr) {
t.Fatal("Middleware was called for a method mismatch")
}
})
}
func TestMiddlewareNotFoundSubrouter(t *testing.T) {
@ -269,7 +295,7 @@ func TestMiddlewareNotFoundSubrouter(t *testing.T) { @@ -269,7 +295,7 @@ func TestMiddlewareNotFoundSubrouter(t *testing.T) {
})
})
// Test not found call for default handler
t.Run("not called", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/sub/notfound")
@ -277,10 +303,11 @@ func TestMiddlewareNotFoundSubrouter(t *testing.T) { @@ -277,10 +303,11 @@ func TestMiddlewareNotFoundSubrouter(t *testing.T) {
if bytes.Contains(rw.Body.Bytes(), mwStr) {
t.Fatal("Middleware was called for a 404")
}
})
// Test not found call with custom handler
rw = NewRecorder()
req = newRequest("GET", "/sub/notfound")
t.Run("not called with custom not found handler", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/sub/notfound")
subrouter.NotFoundHandler = http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
rw.Write([]byte("Custom 404 handler"))
@ -290,6 +317,7 @@ func TestMiddlewareNotFoundSubrouter(t *testing.T) { @@ -290,6 +317,7 @@ func TestMiddlewareNotFoundSubrouter(t *testing.T) {
if bytes.Contains(rw.Body.Bytes(), mwStr) {
t.Fatal("Middleware was called for a custom 404")
}
})
}
func TestMiddlewareMethodMismatchSubrouter(t *testing.T) {
@ -313,7 +341,7 @@ func TestMiddlewareMethodMismatchSubrouter(t *testing.T) { @@ -313,7 +341,7 @@ func TestMiddlewareMethodMismatchSubrouter(t *testing.T) {
})
})
// Test method mismatch without custom handler
t.Run("not called", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("POST", "/sub/")
@ -321,10 +349,11 @@ func TestMiddlewareMethodMismatchSubrouter(t *testing.T) { @@ -321,10 +349,11 @@ func TestMiddlewareMethodMismatchSubrouter(t *testing.T) {
if bytes.Contains(rw.Body.Bytes(), mwStr) {
t.Fatal("Middleware was called for a method mismatch")
}
})
// Test method mismatch with custom handler
rw = NewRecorder()
req = newRequest("POST", "/sub/")
t.Run("not called with custom method not allowed handler", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("POST", "/sub/")
router.MethodNotAllowedHandler = http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
rw.Write([]byte("Method not allowed"))
@ -334,6 +363,7 @@ func TestMiddlewareMethodMismatchSubrouter(t *testing.T) { @@ -334,6 +363,7 @@ func TestMiddlewareMethodMismatchSubrouter(t *testing.T) {
if bytes.Contains(rw.Body.Bytes(), mwStr) {
t.Fatal("Middleware was called for a method mismatch")
}
})
}
func TestCORSMethodMiddleware(t *testing.T) {
@ -358,7 +388,8 @@ func TestCORSMethodMiddleware(t *testing.T) { @@ -358,7 +388,8 @@ func TestCORSMethodMiddleware(t *testing.T) {
router.Use(CORSMethodMiddleware(router))
for _, tt := range cases {
for i, tt := range cases {
t.Run(fmt.Sprintf("cases[%d]", i), func(t *testing.T) {
rr := httptest.NewRecorder()
req := newRequest(tt.method, tt.testURL)
@ -373,6 +404,7 @@ func TestCORSMethodMiddleware(t *testing.T) { @@ -373,6 +404,7 @@ func TestCORSMethodMiddleware(t *testing.T) {
if allowedMethods != tt.expectedAllowedMethods {
t.Errorf("Expected Access-Control-Allow-Methods '%s', found '%s'", tt.expectedAllowedMethods, allowedMethods)
}
})
}
}
@ -411,6 +443,7 @@ func TestMiddlewareOnMultiSubrouter(t *testing.T) { @@ -411,6 +443,7 @@ func TestMiddlewareOnMultiSubrouter(t *testing.T) {
})
})
t.Run("/first uses first middleware", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/first")
@ -418,20 +451,25 @@ func TestMiddlewareOnMultiSubrouter(t *testing.T) { @@ -418,20 +451,25 @@ func TestMiddlewareOnMultiSubrouter(t *testing.T) {
if rw.Body.String() != first {
t.Fatalf("Middleware did not run: expected %s middleware to write a response (got %s)", first, rw.Body.String())
}
})
rw = NewRecorder()
req = newRequest("GET", "/second")
t.Run("/second uses second middleware", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/second")
router.ServeHTTP(rw, req)
if rw.Body.String() != second {
t.Fatalf("Middleware did not run: expected %s middleware to write a response (got %s)", second, rw.Body.String())
}
})
rw = NewRecorder()
req = newRequest("GET", "/second/not-exist")
t.Run("uses not found handler", func(t *testing.T) {
rw := NewRecorder()
req := newRequest("GET", "/second/not-exist")
router.ServeHTTP(rw, req)
if rw.Body.String() != notFound {
t.Fatalf("Notfound handler did not run: expected %s for not-exist, (got %s)", notFound, rw.Body.String())
}
})
}

Loading…
Cancel
Save