mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
6afad51761
* Move SignedInUser to user service and RoleType and Roles to org * Use go naming convention for roles * Fix some imports and leftovers * Fix ldap debug test * Fix lint * Fix lint 2 * Fix lint 3 * Fix type and not needed conversion * Clean up messages in api tests * Clean up api tests 2
98 lines
2.6 KiB
Go
98 lines
2.6 KiB
Go
package accesscontrol_test
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/accesscontrol"
|
|
"github.com/grafana/grafana/pkg/services/accesscontrol/mock"
|
|
"github.com/grafana/grafana/pkg/services/contexthandler/ctxkey"
|
|
"github.com/grafana/grafana/pkg/services/user"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
type middlewareTestCase struct {
|
|
desc string
|
|
expectFallback bool
|
|
expectEndpoint bool
|
|
evaluator accesscontrol.Evaluator
|
|
ac accesscontrol.AccessControl
|
|
}
|
|
|
|
func TestMiddleware(t *testing.T) {
|
|
tests := []middlewareTestCase{
|
|
{
|
|
desc: "should use fallback if access control is disabled",
|
|
ac: mock.New().WithDisabled(),
|
|
expectFallback: true,
|
|
expectEndpoint: true,
|
|
},
|
|
{
|
|
desc: "should pass middleware for correct permissions",
|
|
ac: mock.New().WithPermissions(
|
|
[]accesscontrol.Permission{{Action: "users:read", Scope: "users:*"}},
|
|
),
|
|
evaluator: accesscontrol.EvalPermission("users:read", "users:*"),
|
|
expectFallback: false,
|
|
expectEndpoint: true,
|
|
},
|
|
{
|
|
desc: "should not reach endpoint when missing permissions",
|
|
ac: mock.New().WithPermissions(
|
|
[]accesscontrol.Permission{{Action: "users:read", Scope: "users:1"}},
|
|
),
|
|
evaluator: accesscontrol.EvalPermission("users:read", "users:*"),
|
|
expectFallback: false,
|
|
expectEndpoint: false,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
fallbackCalled := false
|
|
fallback := func(c *models.ReqContext) {
|
|
fallbackCalled = true
|
|
}
|
|
|
|
server := web.New()
|
|
server.UseMiddleware(web.Renderer("../../public/views", "[[", "]]"))
|
|
|
|
server.Use(contextProvider())
|
|
server.Use(accesscontrol.Middleware(test.ac)(fallback, test.evaluator))
|
|
|
|
endpointCalled := false
|
|
server.Get("/", func(c *models.ReqContext) {
|
|
endpointCalled = true
|
|
c.Resp.WriteHeader(http.StatusOK)
|
|
})
|
|
|
|
request, err := http.NewRequest(http.MethodGet, "/", nil)
|
|
assert.NoError(t, err)
|
|
recorder := httptest.NewRecorder()
|
|
|
|
server.ServeHTTP(recorder, request)
|
|
|
|
assert.Equal(t, test.expectFallback, fallbackCalled)
|
|
assert.Equal(t, test.expectEndpoint, endpointCalled)
|
|
})
|
|
}
|
|
}
|
|
|
|
func contextProvider() web.Handler {
|
|
return func(c *web.Context) {
|
|
reqCtx := &models.ReqContext{
|
|
Context: c,
|
|
Logger: log.New(""),
|
|
SignedInUser: &user.SignedInUser{},
|
|
IsSignedIn: true,
|
|
SkipCache: true,
|
|
}
|
|
c.Req = c.Req.WithContext(ctxkey.Set(c.Req.Context(), reqCtx))
|
|
}
|
|
}
|