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

overlap routing: and mvc: allow setting status code from a dependency or a middleware

This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-08-28 04:11:56 +03:00
parent 933534574a
commit a6ec94e1a6
10 changed files with 181 additions and 63 deletions

View File

@@ -660,55 +660,6 @@ func TestApplicationDependency(t *testing.T) {
e.GET("/other").Expect().Status(httptest.StatusOK).Body().Equal("app2")
}
// Authenticated type.
type Authenticated int64
// BasePrivateController base controller for private controllers.
type BasePrivateController struct {
CurrentUserID Authenticated
Ctx iris.Context // not-used.
}
type publicController struct {
Ctx iris.Context // not-used.
}
func (c *publicController) Get() iris.Map {
return iris.Map{"data": "things"}
}
type privateController struct{ BasePrivateController }
func (c *privateController) Get() iris.Map {
return iris.Map{"id": c.CurrentUserID}
}
func TestControllerOverlapping(t *testing.T) {
app := iris.New()
m := New(app)
m.Router.SetRegisterRule(iris.RouteOverlap)
m.Register(func(ctx iris.Context) Authenticated {
if ctx.URLParam("name") == "kataras" {
return 1
}
ctx.StopWithStatus(iris.StatusForbidden)
return -1
})
// Order matters.
m.Handle(new(privateController))
m.Handle(new(publicController))
e := httptest.New(t, app)
e.GET("/").WithQuery("name", "kataras").Expect().Status(httptest.StatusOK).
JSON().Equal(iris.Map{"id": 1})
e.GET("/").Expect().Status(httptest.StatusOK).
JSON().Equal(iris.Map{"data": "things"})
}
type testControllerMethodHandlerBindStruct struct{}
type bindStructData struct {