mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
3093d65363
Former-commit-id: cda69f08955cb0d594e98bf26197ee573cbba4b2
77 lines
2.4 KiB
Go
77 lines
2.4 KiB
Go
package methodoverride_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/kataras/iris/v12"
|
|
"github.com/kataras/iris/v12/httptest"
|
|
"github.com/kataras/iris/v12/middleware/methodoverride"
|
|
)
|
|
|
|
func TestMethodOverrideWrapper(t *testing.T) {
|
|
app := iris.New()
|
|
|
|
mo := methodoverride.New(
|
|
// Defaults to nil.
|
|
//
|
|
methodoverride.SaveOriginalMethod("_originalMethod"),
|
|
// Default values.
|
|
//
|
|
// methodoverride.Methods(http.MethodPost),
|
|
// methodoverride.Headers("X-HTTP-Method", "X-HTTP-Method-Override", "X-Method-Override"),
|
|
// methodoverride.FormField("_method"),
|
|
// methodoverride.Query("_method"),
|
|
)
|
|
// Register it with `WrapRouter`.
|
|
app.WrapRouter(mo)
|
|
|
|
var (
|
|
expectedDelResponse = "delete resp"
|
|
expectedPostResponse = "post resp"
|
|
)
|
|
|
|
app.Post("/path", func(ctx iris.Context) {
|
|
ctx.WriteString(expectedPostResponse)
|
|
})
|
|
|
|
app.Delete("/path", func(ctx iris.Context) {
|
|
ctx.WriteString(expectedDelResponse)
|
|
})
|
|
|
|
app.Delete("/path2", func(ctx iris.Context) {
|
|
_, err := ctx.Writef("%s%s", expectedDelResponse, ctx.Request().Context().Value("_originalMethod"))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
})
|
|
|
|
e := httptest.New(t, app)
|
|
|
|
// Test headers.
|
|
e.POST("/path").WithHeader("X-HTTP-Method", iris.MethodDelete).Expect().
|
|
Status(iris.StatusOK).Body().Equal(expectedDelResponse)
|
|
e.POST("/path").WithHeader("X-HTTP-Method-Override", iris.MethodDelete).Expect().
|
|
Status(iris.StatusOK).Body().Equal(expectedDelResponse)
|
|
e.POST("/path").WithHeader("X-Method-Override", iris.MethodDelete).Expect().
|
|
Status(iris.StatusOK).Body().Equal(expectedDelResponse)
|
|
|
|
// Test form field value.
|
|
e.POST("/path").WithFormField("_method", iris.MethodDelete).Expect().
|
|
Status(iris.StatusOK).Body().Equal(expectedDelResponse)
|
|
|
|
// Test URL Query (although it's the same as form field in this case).
|
|
e.POST("/path").WithQuery("_method", iris.MethodDelete).Expect().
|
|
Status(iris.StatusOK).Body().Equal(expectedDelResponse)
|
|
|
|
// Test saved original method and
|
|
// Test without registered "POST" route.
|
|
e.POST("/path2").WithQuery("_method", iris.MethodDelete).Expect().
|
|
Status(iris.StatusOK).Body().Equal(expectedDelResponse + iris.MethodPost)
|
|
|
|
// Test simple POST request without method override fields.
|
|
e.POST("/path").Expect().Status(iris.StatusOK).Body().Equal(expectedPostResponse)
|
|
|
|
// Test simple DELETE request.
|
|
e.DELETE("/path").Expect().Status(iris.StatusOK).Body().Equal(expectedDelResponse)
|
|
}
|