mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
5fa9789c35
Former-commit-id: 8d184a434c992a884c5565bc22767ef295a1575a
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/kataras/iris"
|
|
"github.com/kataras/iris/httptest"
|
|
)
|
|
|
|
// $ cd $GOPATH/src/github.com/kataras/iris/_examples/intermediate/httptest
|
|
// $ go test -v
|
|
func TestNewApp(t *testing.T) {
|
|
app := newApp()
|
|
e := httptest.New(app, t)
|
|
|
|
// redirects to /admin without basic auth
|
|
e.GET("/").Expect().Status(iris.StatusUnauthorized)
|
|
// without basic auth
|
|
e.GET("/admin").Expect().Status(iris.StatusUnauthorized)
|
|
|
|
// with valid basic auth
|
|
e.GET("/admin").WithBasicAuth("myusername", "mypassword").Expect().
|
|
Status(iris.StatusOK).Body().Equal("/admin myusername:mypassword")
|
|
e.GET("/admin/profile").WithBasicAuth("myusername", "mypassword").Expect().
|
|
Status(iris.StatusOK).Body().Equal("/admin/profile myusername:mypassword")
|
|
e.GET("/admin/settings").WithBasicAuth("myusername", "mypassword").Expect().
|
|
Status(iris.StatusOK).Body().Equal("/admin/settings myusername:mypassword")
|
|
|
|
// with invalid basic auth
|
|
e.GET("/admin/settings").WithBasicAuth("invalidusername", "invalidpassword").
|
|
Expect().Status(iris.StatusUnauthorized)
|
|
|
|
}
|