1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-17 09:57:01 +00:00

mvc: give the end-developer the option to skip an error through the HandleError method

relative to: https://github.com/kataras/iris/issues/1628#issuecomment-691668764
This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-09-13 16:03:20 +03:00
parent 7431fcc9cf
commit 99fd50bf9d
3 changed files with 53 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
package mvc_test
import (
"fmt"
"testing"
"github.com/kataras/iris/v12"
@@ -707,3 +708,36 @@ func TestControllerMethodHandlerBindStruct(t *testing.T) {
e.POST("/data/42/slicetypeptr").WithJSON(manyData).Expect().Status(httptest.StatusOK).JSON().Equal(manyData)
// more tests inside the hero package itself.
}
func TestErrorHandlerContinue(t *testing.T) {
app := iris.New()
m := New(app)
m.Handle(new(testControllerErrorHandlerContinue))
e := httptest.New(t, app)
e.POST("/test").WithMultipart().
WithFormField("username", "makis").
WithFormField("age", "27").
WithFormField("unknown", "continue").
Expect().Status(httptest.StatusOK).Body().Equal("makis is 27 years old\n")
}
type testControllerErrorHandlerContinue struct{}
type registerForm struct {
Username string `form:"username"`
Age int `form:"age"`
}
func (c *testControllerErrorHandlerContinue) HandleError(ctx iris.Context, err error) {
if iris.IsErrPath(err) {
return // continue.
}
ctx.StopWithError(iris.StatusBadRequest, err)
}
func (c *testControllerErrorHandlerContinue) PostTest(form registerForm) string {
return fmt.Sprintf("%s is %d years old\n", form.Username, form.Age)
}