2015-05-01 04:55:59 -05:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2019-04-30 07:42:01 -05:00
|
|
|
"context"
|
2015-05-01 15:26:16 -05:00
|
|
|
"encoding/json"
|
2019-04-08 06:31:46 -05:00
|
|
|
"fmt"
|
2015-05-01 04:55:59 -05:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
2015-05-01 15:26:16 -05:00
|
|
|
"path/filepath"
|
2015-05-01 04:55:59 -05:00
|
|
|
"testing"
|
2019-02-05 14:14:23 -06:00
|
|
|
"time"
|
2015-05-01 04:55:59 -05:00
|
|
|
|
2019-05-06 02:22:59 -05:00
|
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
2015-05-01 15:26:16 -05:00
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
2019-04-08 06:31:46 -05:00
|
|
|
"github.com/grafana/grafana/pkg/infra/remotecache"
|
2015-05-01 15:26:16 -05:00
|
|
|
m "github.com/grafana/grafana/pkg/models"
|
2019-03-08 08:15:17 -06:00
|
|
|
"github.com/grafana/grafana/pkg/services/auth"
|
2015-05-02 02:24:56 -05:00
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
2015-05-01 15:26:16 -05:00
|
|
|
"github.com/grafana/grafana/pkg/util"
|
2015-05-01 04:55:59 -05:00
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
2016-01-13 08:38:54 -06:00
|
|
|
"gopkg.in/macaron.v1"
|
2015-05-01 04:55:59 -05:00
|
|
|
)
|
|
|
|
|
2019-06-18 13:24:23 -05:00
|
|
|
func TestMiddleWareSecurityHeaders(t *testing.T) {
|
|
|
|
setting.ERR_TEMPLATE_NAME = "error-template"
|
|
|
|
|
|
|
|
Convey("Given the grafana middleware", t, func() {
|
|
|
|
|
|
|
|
middlewareScenario(t, "middleware should get correct x-xss-protection header", func(sc *scenarioContext) {
|
|
|
|
setting.XSSProtectionHeader = true
|
|
|
|
sc.fakeReq("GET", "/api/").exec()
|
|
|
|
So(sc.resp.Header().Get("X-XSS-Protection"), ShouldEqual, "1; mode=block")
|
|
|
|
})
|
|
|
|
|
|
|
|
middlewareScenario(t, "middleware should not get x-xss-protection when disabled", func(sc *scenarioContext) {
|
|
|
|
setting.XSSProtectionHeader = false
|
|
|
|
sc.fakeReq("GET", "/api/").exec()
|
|
|
|
So(sc.resp.Header().Get("X-XSS-Protection"), ShouldBeEmpty)
|
|
|
|
})
|
|
|
|
|
|
|
|
middlewareScenario(t, "middleware should add correct Strict-Transport-Security header", func(sc *scenarioContext) {
|
|
|
|
setting.StrictTransportSecurity = true
|
|
|
|
setting.Protocol = setting.HTTPS
|
|
|
|
setting.StrictTransportSecurityMaxAge = 64000
|
|
|
|
sc.fakeReq("GET", "/api/").exec()
|
|
|
|
So(sc.resp.Header().Get("Strict-Transport-Security"), ShouldEqual, "max-age=64000")
|
|
|
|
setting.StrictTransportSecurityPreload = true
|
|
|
|
sc.fakeReq("GET", "/api/").exec()
|
|
|
|
So(sc.resp.Header().Get("Strict-Transport-Security"), ShouldEqual, "max-age=64000; preload")
|
|
|
|
setting.StrictTransportSecuritySubDomains = true
|
|
|
|
sc.fakeReq("GET", "/api/").exec()
|
|
|
|
So(sc.resp.Header().Get("Strict-Transport-Security"), ShouldEqual, "max-age=64000; preload; includeSubDomains")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-05-01 09:23:36 -05:00
|
|
|
func TestMiddlewareContext(t *testing.T) {
|
2018-11-02 04:49:46 -05:00
|
|
|
setting.ERR_TEMPLATE_NAME = "error-template"
|
2015-05-01 04:55:59 -05:00
|
|
|
|
2015-05-02 02:24:56 -05:00
|
|
|
Convey("Given the grafana middleware", t, func() {
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "middleware should add context to injector", func(sc *scenarioContext) {
|
2015-05-02 02:24:56 -05:00
|
|
|
sc.fakeReq("GET", "/").exec()
|
2015-05-01 09:23:36 -05:00
|
|
|
So(sc.context, ShouldNotBeNil)
|
2015-05-01 04:55:59 -05:00
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "Default middleware should allow get request", func(sc *scenarioContext) {
|
2015-05-02 02:24:56 -05:00
|
|
|
sc.fakeReq("GET", "/").exec()
|
2015-05-01 09:23:36 -05:00
|
|
|
So(sc.resp.Code, ShouldEqual, 200)
|
2015-05-01 04:55:59 -05:00
|
|
|
})
|
2015-05-01 09:23:36 -05:00
|
|
|
|
2019-05-06 02:22:59 -05:00
|
|
|
middlewareScenario(t, "middleware should add Cache-Control header for requests to API", func(sc *scenarioContext) {
|
2017-07-04 09:33:37 -05:00
|
|
|
sc.fakeReq("GET", "/api/search").exec()
|
|
|
|
So(sc.resp.Header().Get("Cache-Control"), ShouldEqual, "no-cache")
|
2017-07-06 11:56:22 -05:00
|
|
|
So(sc.resp.Header().Get("Pragma"), ShouldEqual, "no-cache")
|
|
|
|
So(sc.resp.Header().Get("Expires"), ShouldEqual, "-1")
|
2017-07-04 09:33:37 -05:00
|
|
|
})
|
|
|
|
|
2019-05-06 02:22:59 -05:00
|
|
|
middlewareScenario(t, "middleware should not add Cache-Control header for requests to datasource proxy API", func(sc *scenarioContext) {
|
|
|
|
sc.fakeReq("GET", "/api/datasources/proxy/1/test").exec()
|
2017-07-04 09:33:37 -05:00
|
|
|
So(sc.resp.Header().Get("Cache-Control"), ShouldBeEmpty)
|
2019-05-06 02:22:59 -05:00
|
|
|
So(sc.resp.Header().Get("Pragma"), ShouldBeEmpty)
|
|
|
|
So(sc.resp.Header().Get("Expires"), ShouldBeEmpty)
|
|
|
|
})
|
|
|
|
|
2019-05-06 02:56:23 -05:00
|
|
|
middlewareScenario(t, "middleware should add Cache-Control header for requests with html response", func(sc *scenarioContext) {
|
2019-05-06 02:22:59 -05:00
|
|
|
sc.handler(func(c *m.ReqContext) {
|
|
|
|
data := &dtos.IndexViewData{
|
|
|
|
User: &dtos.CurrentUser{},
|
|
|
|
Settings: map[string]interface{}{},
|
|
|
|
NavTree: []*dtos.NavLink{},
|
|
|
|
}
|
|
|
|
c.HTML(200, "index-template", data)
|
|
|
|
})
|
|
|
|
sc.fakeReq("GET", "/").exec()
|
|
|
|
So(sc.resp.Code, ShouldEqual, 200)
|
|
|
|
So(sc.resp.Header().Get("Cache-Control"), ShouldEqual, "no-cache")
|
|
|
|
So(sc.resp.Header().Get("Pragma"), ShouldEqual, "no-cache")
|
|
|
|
So(sc.resp.Header().Get("Expires"), ShouldEqual, "-1")
|
2017-07-04 09:33:37 -05:00
|
|
|
})
|
|
|
|
|
2019-05-06 02:56:23 -05:00
|
|
|
middlewareScenario(t, "middleware should add X-Frame-Options header with deny for request when not allowing embedding", func(sc *scenarioContext) {
|
|
|
|
sc.fakeReq("GET", "/api/search").exec()
|
|
|
|
So(sc.resp.Header().Get("X-Frame-Options"), ShouldEqual, "deny")
|
|
|
|
})
|
|
|
|
|
|
|
|
middlewareScenario(t, "middleware should not add X-Frame-Options header for request when allowing embedding", func(sc *scenarioContext) {
|
|
|
|
setting.AllowEmbedding = true
|
|
|
|
sc.fakeReq("GET", "/api/search").exec()
|
|
|
|
So(sc.resp.Header().Get("X-Frame-Options"), ShouldBeEmpty)
|
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "Invalid api key", func(sc *scenarioContext) {
|
2015-05-01 15:26:16 -05:00
|
|
|
sc.apiKey = "invalid_key_test"
|
2015-05-02 02:24:56 -05:00
|
|
|
sc.fakeReq("GET", "/").exec()
|
2015-05-01 15:26:16 -05:00
|
|
|
|
|
|
|
Convey("Should not init session", func() {
|
|
|
|
So(sc.resp.Header().Get("Set-Cookie"), ShouldBeEmpty)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("Should return 401", func() {
|
|
|
|
So(sc.resp.Code, ShouldEqual, 401)
|
|
|
|
So(sc.respJson["message"], ShouldEqual, "Invalid API key")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "Using basic auth", func(sc *scenarioContext) {
|
2015-06-30 02:37:52 -05:00
|
|
|
|
|
|
|
bus.AddHandler("test", func(query *m.GetUserByLoginQuery) error {
|
|
|
|
query.Result = &m.User{
|
|
|
|
Password: util.EncodePassword("myPass", "salt"),
|
|
|
|
Salt: "salt",
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2018-02-08 16:13:58 -06:00
|
|
|
bus.AddHandler("test", func(loginUserQuery *m.LoginUserQuery) error {
|
2016-12-13 03:00:33 -06:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2015-06-30 02:37:52 -05:00
|
|
|
bus.AddHandler("test", func(query *m.GetSignedInUserQuery) error {
|
|
|
|
query.Result = &m.SignedInUser{OrgId: 2, UserId: 12}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
setting.BasicAuthEnabled = true
|
|
|
|
authHeader := util.GetBasicAuthHeader("myUser", "myPass")
|
2018-06-28 05:08:32 -05:00
|
|
|
sc.fakeReq("GET", "/").withAuthorizationHeader(authHeader).exec()
|
2015-06-30 02:37:52 -05:00
|
|
|
|
|
|
|
Convey("Should init middleware context with user", func() {
|
|
|
|
So(sc.context.IsSignedIn, ShouldEqual, true)
|
|
|
|
So(sc.context.OrgId, ShouldEqual, 2)
|
|
|
|
So(sc.context.UserId, ShouldEqual, 12)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "Valid api key", func(sc *scenarioContext) {
|
2015-05-01 15:26:16 -05:00
|
|
|
keyhash := util.EncodePassword("v5nAwpMafFP6znaS4urhdWDLS5511M42", "asd")
|
|
|
|
|
|
|
|
bus.AddHandler("test", func(query *m.GetApiKeyByNameQuery) error {
|
|
|
|
query.Result = &m.ApiKey{OrgId: 12, Role: m.ROLE_EDITOR, Key: keyhash}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2015-05-02 02:24:56 -05:00
|
|
|
sc.fakeReq("GET", "/").withValidApiKey().exec()
|
2015-05-01 15:26:16 -05:00
|
|
|
|
|
|
|
Convey("Should return 200", func() {
|
|
|
|
So(sc.resp.Code, ShouldEqual, 200)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("Should init middleware context", func() {
|
2015-05-02 02:24:56 -05:00
|
|
|
So(sc.context.IsSignedIn, ShouldEqual, true)
|
2015-05-01 15:26:16 -05:00
|
|
|
So(sc.context.OrgId, ShouldEqual, 12)
|
|
|
|
So(sc.context.OrgRole, ShouldEqual, m.ROLE_EDITOR)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "Valid api key, but does not match db hash", func(sc *scenarioContext) {
|
2015-05-02 02:24:56 -05:00
|
|
|
keyhash := "something_not_matching"
|
|
|
|
|
|
|
|
bus.AddHandler("test", func(query *m.GetApiKeyByNameQuery) error {
|
|
|
|
query.Result = &m.ApiKey{OrgId: 12, Role: m.ROLE_EDITOR, Key: keyhash}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
sc.fakeReq("GET", "/").withValidApiKey().exec()
|
|
|
|
|
|
|
|
Convey("Should return api key invalid", func() {
|
|
|
|
So(sc.resp.Code, ShouldEqual, 401)
|
|
|
|
So(sc.respJson["message"], ShouldEqual, "Invalid API key")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "Valid api key via Basic auth", func(sc *scenarioContext) {
|
2018-06-28 05:08:32 -05:00
|
|
|
keyhash := util.EncodePassword("v5nAwpMafFP6znaS4urhdWDLS5511M42", "asd")
|
|
|
|
|
|
|
|
bus.AddHandler("test", func(query *m.GetApiKeyByNameQuery) error {
|
|
|
|
query.Result = &m.ApiKey{OrgId: 12, Role: m.ROLE_EDITOR, Key: keyhash}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
authHeader := util.GetBasicAuthHeader("api_key", "eyJrIjoidjVuQXdwTWFmRlA2em5hUzR1cmhkV0RMUzU1MTFNNDIiLCJuIjoiYXNkIiwiaWQiOjF9")
|
|
|
|
sc.fakeReq("GET", "/").withAuthorizationHeader(authHeader).exec()
|
|
|
|
|
|
|
|
Convey("Should return 200", func() {
|
|
|
|
So(sc.resp.Code, ShouldEqual, 200)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("Should init middleware context", func() {
|
|
|
|
So(sc.context.IsSignedIn, ShouldEqual, true)
|
|
|
|
So(sc.context.OrgId, ShouldEqual, 12)
|
|
|
|
So(sc.context.OrgRole, ShouldEqual, m.ROLE_EDITOR)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "Non-expired auth token in cookie which not are being rotated", func(sc *scenarioContext) {
|
2019-02-04 16:44:28 -06:00
|
|
|
sc.withTokenSessionCookie("token")
|
|
|
|
|
|
|
|
bus.AddHandler("test", func(query *m.GetSignedInUserQuery) error {
|
|
|
|
query.Result = &m.SignedInUser{OrgId: 2, UserId: 12}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2019-04-30 07:42:01 -05:00
|
|
|
sc.userAuthTokenService.LookupTokenProvider = func(ctx context.Context, unhashedToken string) (*m.UserToken, error) {
|
2019-02-06 09:45:48 -06:00
|
|
|
return &m.UserToken{
|
2019-02-06 09:21:16 -06:00
|
|
|
UserId: 12,
|
|
|
|
UnhashedToken: unhashedToken,
|
2019-02-04 16:44:28 -06:00
|
|
|
}, nil
|
2019-01-22 06:51:55 -06:00
|
|
|
}
|
2015-05-02 02:24:56 -05:00
|
|
|
|
|
|
|
sc.fakeReq("GET", "/").exec()
|
|
|
|
|
2019-02-04 16:44:28 -06:00
|
|
|
Convey("should init context with user info", func() {
|
|
|
|
So(sc.context.IsSignedIn, ShouldBeTrue)
|
|
|
|
So(sc.context.UserId, ShouldEqual, 12)
|
2019-02-06 09:21:16 -06:00
|
|
|
So(sc.context.UserToken.UserId, ShouldEqual, 12)
|
|
|
|
So(sc.context.UserToken.UnhashedToken, ShouldEqual, "token")
|
2019-02-04 16:44:28 -06:00
|
|
|
})
|
|
|
|
|
|
|
|
Convey("should not set cookie", func() {
|
|
|
|
So(sc.resp.Header().Get("Set-Cookie"), ShouldEqual, "")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "Non-expired auth token in cookie which are being rotated", func(sc *scenarioContext) {
|
2019-02-04 16:44:28 -06:00
|
|
|
sc.withTokenSessionCookie("token")
|
|
|
|
|
|
|
|
bus.AddHandler("test", func(query *m.GetSignedInUserQuery) error {
|
|
|
|
query.Result = &m.SignedInUser{OrgId: 2, UserId: 12}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2019-04-30 07:42:01 -05:00
|
|
|
sc.userAuthTokenService.LookupTokenProvider = func(ctx context.Context, unhashedToken string) (*m.UserToken, error) {
|
2019-02-06 09:45:48 -06:00
|
|
|
return &m.UserToken{
|
2019-02-06 09:21:16 -06:00
|
|
|
UserId: 12,
|
|
|
|
UnhashedToken: "",
|
2019-02-04 16:44:28 -06:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2019-04-30 07:42:01 -05:00
|
|
|
sc.userAuthTokenService.TryRotateTokenProvider = func(ctx context.Context, userToken *m.UserToken, clientIP, userAgent string) (bool, error) {
|
2019-02-06 09:21:16 -06:00
|
|
|
userToken.UnhashedToken = "rotated"
|
2019-02-04 16:44:28 -06:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2019-02-05 14:14:23 -06:00
|
|
|
maxAgeHours := (time.Duration(setting.LoginMaxLifetimeDays) * 24 * time.Hour)
|
|
|
|
maxAge := (maxAgeHours + time.Hour).Seconds()
|
|
|
|
|
2019-02-04 16:44:28 -06:00
|
|
|
expectedCookie := &http.Cookie{
|
2019-02-05 14:14:23 -06:00
|
|
|
Name: setting.LoginCookieName,
|
2019-02-04 16:44:28 -06:00
|
|
|
Value: "rotated",
|
|
|
|
Path: setting.AppSubUrl + "/",
|
|
|
|
HttpOnly: true,
|
2019-02-05 14:14:23 -06:00
|
|
|
MaxAge: int(maxAge),
|
|
|
|
Secure: setting.CookieSecure,
|
|
|
|
SameSite: setting.CookieSameSite,
|
2019-02-04 16:44:28 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
sc.fakeReq("GET", "/").exec()
|
|
|
|
|
|
|
|
Convey("should init context with user info", func() {
|
|
|
|
So(sc.context.IsSignedIn, ShouldBeTrue)
|
|
|
|
So(sc.context.UserId, ShouldEqual, 12)
|
2019-02-06 09:21:16 -06:00
|
|
|
So(sc.context.UserToken.UserId, ShouldEqual, 12)
|
|
|
|
So(sc.context.UserToken.UnhashedToken, ShouldEqual, "rotated")
|
2019-02-04 16:44:28 -06:00
|
|
|
})
|
|
|
|
|
|
|
|
Convey("should set cookie", func() {
|
|
|
|
So(sc.resp.Header().Get("Set-Cookie"), ShouldEqual, expectedCookie.String())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "Invalid/expired auth token in cookie", func(sc *scenarioContext) {
|
2019-02-04 16:44:28 -06:00
|
|
|
sc.withTokenSessionCookie("token")
|
|
|
|
|
2019-04-30 07:42:01 -05:00
|
|
|
sc.userAuthTokenService.LookupTokenProvider = func(ctx context.Context, unhashedToken string) (*m.UserToken, error) {
|
2019-02-06 10:30:17 -06:00
|
|
|
return nil, m.ErrUserTokenNotFound
|
2019-02-04 16:44:28 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
sc.fakeReq("GET", "/").exec()
|
|
|
|
|
|
|
|
Convey("should not init context with user info", func() {
|
|
|
|
So(sc.context.IsSignedIn, ShouldBeFalse)
|
|
|
|
So(sc.context.UserId, ShouldEqual, 0)
|
|
|
|
So(sc.context.UserToken, ShouldBeNil)
|
2015-05-02 02:24:56 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "When anonymous access is enabled", func(sc *scenarioContext) {
|
2015-05-02 02:24:56 -05:00
|
|
|
setting.AnonymousEnabled = true
|
|
|
|
setting.AnonymousOrgName = "test"
|
|
|
|
setting.AnonymousOrgRole = string(m.ROLE_EDITOR)
|
|
|
|
|
|
|
|
bus.AddHandler("test", func(query *m.GetOrgByNameQuery) error {
|
|
|
|
So(query.Name, ShouldEqual, "test")
|
|
|
|
|
|
|
|
query.Result = &m.Org{Id: 2, Name: "test"}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
sc.fakeReq("GET", "/").exec()
|
|
|
|
|
|
|
|
Convey("should init context with org info", func() {
|
|
|
|
So(sc.context.UserId, ShouldEqual, 0)
|
|
|
|
So(sc.context.OrgId, ShouldEqual, 2)
|
|
|
|
So(sc.context.OrgRole, ShouldEqual, m.ROLE_EDITOR)
|
|
|
|
})
|
|
|
|
|
|
|
|
Convey("context signed in should be false", func() {
|
|
|
|
So(sc.context.IsSignedIn, ShouldBeFalse)
|
|
|
|
})
|
|
|
|
})
|
2015-05-02 05:06:58 -05:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
Convey("auth_proxy", func() {
|
2015-05-02 05:06:58 -05:00
|
|
|
setting.AuthProxyEnabled = true
|
2019-04-08 06:31:46 -05:00
|
|
|
setting.AuthProxyWhitelist = ""
|
|
|
|
setting.AuthProxyAutoSignUp = true
|
2019-05-22 07:30:03 -05:00
|
|
|
setting.LDAPEnabled = true
|
2015-05-02 05:06:58 -05:00
|
|
|
setting.AuthProxyHeaderName = "X-WEBAUTH-USER"
|
|
|
|
setting.AuthProxyHeaderProperty = "username"
|
2019-04-08 06:31:46 -05:00
|
|
|
name := "markelog"
|
2015-05-02 05:06:58 -05:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "should not sync the user if it's in the cache", func(sc *scenarioContext) {
|
|
|
|
bus.AddHandler("test", func(query *m.GetSignedInUserQuery) error {
|
2019-04-16 07:09:18 -05:00
|
|
|
query.Result = &m.SignedInUser{OrgId: 4, UserId: query.UserId}
|
2019-04-08 06:31:46 -05:00
|
|
|
return nil
|
|
|
|
})
|
2018-12-18 21:16:29 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
key := fmt.Sprintf(cachePrefix, name)
|
|
|
|
sc.remoteCacheService.Set(key, int64(33), 0)
|
|
|
|
sc.fakeReq("GET", "/")
|
2018-12-18 21:16:29 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
sc.req.Header.Add(setting.AuthProxyHeaderName, name)
|
|
|
|
sc.exec()
|
2018-12-18 21:16:29 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
Convey("Should init user via cache", func() {
|
|
|
|
So(sc.context.IsSignedIn, ShouldBeTrue)
|
2019-04-16 07:09:18 -05:00
|
|
|
So(sc.context.UserId, ShouldEqual, 33)
|
2019-04-08 06:31:46 -05:00
|
|
|
So(sc.context.OrgId, ShouldEqual, 4)
|
|
|
|
})
|
2018-12-18 21:16:29 -06:00
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "should create an user from a header", func(sc *scenarioContext) {
|
2019-05-22 07:30:03 -05:00
|
|
|
setting.LDAPEnabled = false
|
2019-04-08 06:31:46 -05:00
|
|
|
setting.AuthProxyAutoSignUp = true
|
2018-12-18 21:16:29 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
bus.AddHandler("test", func(query *m.GetSignedInUserQuery) error {
|
|
|
|
if query.UserId > 0 {
|
|
|
|
query.Result = &m.SignedInUser{OrgId: 4, UserId: 33}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return m.ErrUserNotFound
|
|
|
|
})
|
2018-12-18 21:16:29 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
bus.AddHandler("test", func(cmd *m.UpsertUserCommand) error {
|
|
|
|
cmd.Result = &m.User{Id: 33}
|
|
|
|
return nil
|
|
|
|
})
|
2018-12-18 21:16:29 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
sc.fakeReq("GET", "/")
|
|
|
|
sc.req.Header.Add(setting.AuthProxyHeaderName, name)
|
|
|
|
sc.exec()
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
Convey("Should create user from header info", func() {
|
|
|
|
So(sc.context.IsSignedIn, ShouldBeTrue)
|
|
|
|
So(sc.context.UserId, ShouldEqual, 33)
|
|
|
|
So(sc.context.OrgId, ShouldEqual, 4)
|
|
|
|
})
|
2018-03-23 14:50:07 -05:00
|
|
|
})
|
2018-03-22 16:02:34 -05:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "should get an existing user from header", func(sc *scenarioContext) {
|
2019-05-22 07:30:03 -05:00
|
|
|
setting.LDAPEnabled = false
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
bus.AddHandler("test", func(query *m.GetSignedInUserQuery) error {
|
|
|
|
query.Result = &m.SignedInUser{OrgId: 2, UserId: 12}
|
|
|
|
return nil
|
|
|
|
})
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
bus.AddHandler("test", func(cmd *m.UpsertUserCommand) error {
|
|
|
|
cmd.Result = &m.User{Id: 12}
|
|
|
|
return nil
|
|
|
|
})
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
sc.fakeReq("GET", "/")
|
|
|
|
sc.req.Header.Add(setting.AuthProxyHeaderName, name)
|
|
|
|
sc.exec()
|
2018-03-23 14:50:07 -05:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
Convey("should init context with user info", func() {
|
|
|
|
So(sc.context.IsSignedIn, ShouldBeTrue)
|
|
|
|
So(sc.context.UserId, ShouldEqual, 12)
|
|
|
|
So(sc.context.OrgId, ShouldEqual, 2)
|
|
|
|
})
|
2016-02-23 07:22:28 -06:00
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "should allow the request from whitelist IP", func(sc *scenarioContext) {
|
|
|
|
setting.AuthProxyWhitelist = "192.168.1.0/24, 2001::0/120"
|
2019-05-22 07:30:03 -05:00
|
|
|
setting.LDAPEnabled = false
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
bus.AddHandler("test", func(query *m.GetSignedInUserQuery) error {
|
|
|
|
query.Result = &m.SignedInUser{OrgId: 4, UserId: 33}
|
|
|
|
return nil
|
|
|
|
})
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
bus.AddHandler("test", func(cmd *m.UpsertUserCommand) error {
|
|
|
|
cmd.Result = &m.User{Id: 33}
|
|
|
|
return nil
|
|
|
|
})
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
sc.fakeReq("GET", "/")
|
|
|
|
sc.req.Header.Add(setting.AuthProxyHeaderName, name)
|
|
|
|
sc.req.RemoteAddr = "[2001::23]:12345"
|
|
|
|
sc.exec()
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
Convey("Should init context with user info", func() {
|
|
|
|
So(sc.context.IsSignedIn, ShouldBeTrue)
|
|
|
|
So(sc.context.UserId, ShouldEqual, 33)
|
|
|
|
So(sc.context.OrgId, ShouldEqual, 4)
|
|
|
|
})
|
2016-02-23 07:22:28 -06:00
|
|
|
})
|
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
middlewareScenario(t, "should not allow the request from whitelist IP", func(sc *scenarioContext) {
|
|
|
|
setting.AuthProxyWhitelist = "8.8.8.8"
|
2019-05-22 07:30:03 -05:00
|
|
|
setting.LDAPEnabled = false
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
bus.AddHandler("test", func(query *m.GetSignedInUserQuery) error {
|
|
|
|
query.Result = &m.SignedInUser{OrgId: 4, UserId: 33}
|
|
|
|
return nil
|
|
|
|
})
|
2018-03-23 14:50:07 -05:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
bus.AddHandler("test", func(cmd *m.UpsertUserCommand) error {
|
|
|
|
cmd.Result = &m.User{Id: 33}
|
|
|
|
return nil
|
|
|
|
})
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
sc.fakeReq("GET", "/")
|
|
|
|
sc.req.Header.Add(setting.AuthProxyHeaderName, name)
|
|
|
|
sc.req.RemoteAddr = "[2001::23]:12345"
|
|
|
|
sc.exec()
|
2016-02-23 07:22:28 -06:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
Convey("should return 407 status code", func() {
|
|
|
|
So(sc.resp.Code, ShouldEqual, 407)
|
|
|
|
So(sc.context, ShouldBeNil)
|
|
|
|
})
|
2016-02-23 07:22:28 -06:00
|
|
|
})
|
|
|
|
})
|
2015-05-01 04:55:59 -05:00
|
|
|
})
|
|
|
|
}
|
2015-05-02 02:24:56 -05:00
|
|
|
|
2019-04-08 06:31:46 -05:00
|
|
|
func middlewareScenario(t *testing.T, desc string, fn scenarioFunc) {
|
2015-05-02 02:24:56 -05:00
|
|
|
Convey(desc, func() {
|
|
|
|
defer bus.ClearBusHandlers()
|
|
|
|
|
2019-02-05 14:14:23 -06:00
|
|
|
setting.LoginCookieName = "grafana_session"
|
|
|
|
setting.LoginMaxLifetimeDays = 30
|
|
|
|
|
2015-05-02 02:24:56 -05:00
|
|
|
sc := &scenarioContext{}
|
2019-01-23 05:41:15 -06:00
|
|
|
|
2015-05-02 02:24:56 -05:00
|
|
|
viewsPath, _ := filepath.Abs("../../public/views")
|
|
|
|
|
|
|
|
sc.m = macaron.New()
|
2019-05-06 02:22:59 -05:00
|
|
|
sc.m.Use(AddDefaultResponseHeaders())
|
2015-05-02 02:24:56 -05:00
|
|
|
sc.m.Use(macaron.Renderer(macaron.RenderOptions{
|
|
|
|
Directory: viewsPath,
|
|
|
|
Delims: macaron.Delims{Left: "[[", Right: "]]"},
|
|
|
|
}))
|
|
|
|
|
2019-03-08 08:15:17 -06:00
|
|
|
sc.userAuthTokenService = auth.NewFakeUserAuthTokenService()
|
2019-04-08 06:31:46 -05:00
|
|
|
sc.remoteCacheService = remotecache.NewFakeStore(t)
|
|
|
|
|
|
|
|
sc.m.Use(GetContextHandler(sc.userAuthTokenService, sc.remoteCacheService))
|
2019-01-23 05:41:15 -06:00
|
|
|
|
2017-02-17 08:02:14 -06:00
|
|
|
sc.m.Use(OrgRedirect())
|
2015-05-02 02:24:56 -05:00
|
|
|
|
2018-03-07 10:54:50 -06:00
|
|
|
sc.defaultHandler = func(c *m.ReqContext) {
|
2015-05-02 02:24:56 -05:00
|
|
|
sc.context = c
|
|
|
|
if sc.handlerFunc != nil {
|
|
|
|
sc.handlerFunc(sc.context)
|
|
|
|
}
|
2015-05-02 05:06:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
sc.m.Get("/", sc.defaultHandler)
|
2015-05-02 02:24:56 -05:00
|
|
|
|
|
|
|
fn(sc)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type scenarioContext struct {
|
2019-01-22 06:51:55 -06:00
|
|
|
m *macaron.Macaron
|
|
|
|
context *m.ReqContext
|
|
|
|
resp *httptest.ResponseRecorder
|
|
|
|
apiKey string
|
|
|
|
authHeader string
|
2019-02-04 16:44:28 -06:00
|
|
|
tokenSessionCookie string
|
2019-01-22 06:51:55 -06:00
|
|
|
respJson map[string]interface{}
|
|
|
|
handlerFunc handlerFunc
|
|
|
|
defaultHandler macaron.Handler
|
|
|
|
url string
|
2019-03-08 08:15:17 -06:00
|
|
|
userAuthTokenService *auth.FakeUserAuthTokenService
|
2019-04-08 06:31:46 -05:00
|
|
|
remoteCacheService *remotecache.RemoteCache
|
2015-05-02 02:24:56 -05:00
|
|
|
|
|
|
|
req *http.Request
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *scenarioContext) withValidApiKey() *scenarioContext {
|
|
|
|
sc.apiKey = "eyJrIjoidjVuQXdwTWFmRlA2em5hUzR1cmhkV0RMUzU1MTFNNDIiLCJuIjoiYXNkIiwiaWQiOjF9"
|
|
|
|
return sc
|
|
|
|
}
|
|
|
|
|
2019-02-04 16:44:28 -06:00
|
|
|
func (sc *scenarioContext) withTokenSessionCookie(unhashedToken string) *scenarioContext {
|
|
|
|
sc.tokenSessionCookie = unhashedToken
|
|
|
|
return sc
|
|
|
|
}
|
|
|
|
|
2018-06-28 05:08:32 -05:00
|
|
|
func (sc *scenarioContext) withAuthorizationHeader(authHeader string) *scenarioContext {
|
2015-06-30 02:37:52 -05:00
|
|
|
sc.authHeader = authHeader
|
|
|
|
return sc
|
|
|
|
}
|
|
|
|
|
2015-05-02 02:24:56 -05:00
|
|
|
func (sc *scenarioContext) fakeReq(method, url string) *scenarioContext {
|
|
|
|
sc.resp = httptest.NewRecorder()
|
|
|
|
req, err := http.NewRequest(method, url, nil)
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
sc.req = req
|
|
|
|
|
|
|
|
return sc
|
|
|
|
}
|
|
|
|
|
2018-01-31 07:05:24 -06:00
|
|
|
func (sc *scenarioContext) fakeReqWithParams(method, url string, queryParams map[string]string) *scenarioContext {
|
|
|
|
sc.resp = httptest.NewRecorder()
|
|
|
|
req, err := http.NewRequest(method, url, nil)
|
|
|
|
q := req.URL.Query()
|
|
|
|
for k, v := range queryParams {
|
|
|
|
q.Add(k, v)
|
|
|
|
}
|
|
|
|
req.URL.RawQuery = q.Encode()
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
sc.req = req
|
|
|
|
|
|
|
|
return sc
|
|
|
|
}
|
|
|
|
|
2015-05-02 02:24:56 -05:00
|
|
|
func (sc *scenarioContext) handler(fn handlerFunc) *scenarioContext {
|
|
|
|
sc.handlerFunc = fn
|
|
|
|
return sc
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *scenarioContext) exec() {
|
|
|
|
if sc.apiKey != "" {
|
|
|
|
sc.req.Header.Add("Authorization", "Bearer "+sc.apiKey)
|
|
|
|
}
|
|
|
|
|
2015-06-30 02:37:52 -05:00
|
|
|
if sc.authHeader != "" {
|
|
|
|
sc.req.Header.Add("Authorization", sc.authHeader)
|
|
|
|
}
|
|
|
|
|
2019-02-04 16:44:28 -06:00
|
|
|
if sc.tokenSessionCookie != "" {
|
|
|
|
sc.req.AddCookie(&http.Cookie{
|
2019-02-05 14:14:23 -06:00
|
|
|
Name: setting.LoginCookieName,
|
2019-02-04 16:44:28 -06:00
|
|
|
Value: sc.tokenSessionCookie,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-05-02 02:24:56 -05:00
|
|
|
sc.m.ServeHTTP(sc.resp, sc.req)
|
|
|
|
|
|
|
|
if sc.resp.Header().Get("Content-Type") == "application/json; charset=UTF-8" {
|
|
|
|
err := json.NewDecoder(sc.resp.Body).Decode(&sc.respJson)
|
|
|
|
So(err, ShouldBeNil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type scenarioFunc func(c *scenarioContext)
|
2018-03-07 10:54:50 -06:00
|
|
|
type handlerFunc func(c *m.ReqContext)
|