2017-07-10 17:32:42 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-10-25 00:27:02 +02:00
|
|
|
"github.com/kataras/iris/v12/httptest"
|
2017-07-10 17:32:42 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCustomContextNewImpl(t *testing.T) {
|
|
|
|
app := newApp()
|
|
|
|
e := httptest.New(t, app, httptest.URL("http://localhost:8080"))
|
|
|
|
|
|
|
|
e.GET("/").Expect().
|
|
|
|
Status(httptest.StatusOK).
|
|
|
|
ContentType("text/html").
|
|
|
|
Body().Equal("<b>Hello from our *Context</b>")
|
|
|
|
|
|
|
|
expectedName := "iris"
|
|
|
|
e.POST("/set").WithFormField("name", expectedName).Expect().
|
|
|
|
Status(httptest.StatusOK).
|
|
|
|
Body().Equal("set session = " + expectedName)
|
|
|
|
|
|
|
|
e.GET("/get").Expect().
|
|
|
|
Status(httptest.StatusOK).
|
|
|
|
Body().Equal(expectedName)
|
|
|
|
}
|