mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
6d9e043284
This reintroduces support for Go modules, as v4. CloseNotifier() is removed as it has been obsoleted, see https://golang.org/doc/go1.11#net/http It was already NOT working (not sending signals) as of 1.11 the functionality was gone, we merely deleted the functions that exposed it. If anyone still relies on it they should migrate to using `c.Request().Context().Done()` instead. Closes #1268, #1255
50 lines
1.5 KiB
Go
50 lines
1.5 KiB
Go
package middleware
|
|
|
|
import (
|
|
"bytes"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMethodOverride(t *testing.T) {
|
|
e := echo.New()
|
|
m := MethodOverride()
|
|
h := func(c echo.Context) error {
|
|
return c.String(http.StatusOK, "test")
|
|
}
|
|
|
|
// Override with http header
|
|
req := httptest.NewRequest(http.MethodPost, "/", nil)
|
|
rec := httptest.NewRecorder()
|
|
req.Header.Set(echo.HeaderXHTTPMethodOverride, http.MethodDelete)
|
|
c := e.NewContext(req, rec)
|
|
m(h)(c)
|
|
assert.Equal(t, http.MethodDelete, req.Method)
|
|
|
|
// Override with form parameter
|
|
m = MethodOverrideWithConfig(MethodOverrideConfig{Getter: MethodFromForm("_method")})
|
|
req = httptest.NewRequest(http.MethodPost, "/", bytes.NewReader([]byte("_method="+http.MethodDelete)))
|
|
rec = httptest.NewRecorder()
|
|
req.Header.Set(echo.HeaderContentType, echo.MIMEApplicationForm)
|
|
c = e.NewContext(req, rec)
|
|
m(h)(c)
|
|
assert.Equal(t, http.MethodDelete, req.Method)
|
|
|
|
// Override with query parameter
|
|
m = MethodOverrideWithConfig(MethodOverrideConfig{Getter: MethodFromQuery("_method")})
|
|
req = httptest.NewRequest(http.MethodPost, "/?_method="+http.MethodDelete, nil)
|
|
rec = httptest.NewRecorder()
|
|
c = e.NewContext(req, rec)
|
|
m(h)(c)
|
|
assert.Equal(t, http.MethodDelete, req.Method)
|
|
|
|
// Ignore `GET`
|
|
req = httptest.NewRequest(http.MethodGet, "/", nil)
|
|
req.Header.Set(echo.HeaderXHTTPMethodOverride, http.MethodDelete)
|
|
assert.Equal(t, http.MethodGet, req.Method)
|
|
}
|