| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- package login
- import (
- "testing"
- "github.com/grafana/grafana/pkg/bus"
- m "github.com/grafana/grafana/pkg/models"
- . "github.com/smartystreets/goconvey/convey"
- )
- func TestLdapAuther(t *testing.T) {
- Convey("When translating ldap user to grafana user", t, func() {
- Convey("Given no ldap group map match", func() {
- ldapAuther := NewLdapAuthenticator(&LdapServerConf{
- LdapGroups: []*LdapGroupToOrgRole{{}},
- })
- _, err := ldapAuther.getGrafanaUserFor(&ldapUserInfo{})
- So(err, ShouldEqual, ErrInvalidCredentials)
- })
- var user1 = &m.User{}
- ldapAutherScenario("Given wildcard group match", func(sc *scenarioContext) {
- ldapAuther := NewLdapAuthenticator(&LdapServerConf{
- LdapGroups: []*LdapGroupToOrgRole{
- {GroupDN: "*", OrgRole: "Admin"},
- },
- })
- sc.userQueryReturns(user1)
- result, err := ldapAuther.getGrafanaUserFor(&ldapUserInfo{})
- So(err, ShouldBeNil)
- So(result, ShouldEqual, user1)
- })
- ldapAutherScenario("Given exact group match", func(sc *scenarioContext) {
- ldapAuther := NewLdapAuthenticator(&LdapServerConf{
- LdapGroups: []*LdapGroupToOrgRole{
- {GroupDN: "cn=users", OrgRole: "Admin"},
- },
- })
- sc.userQueryReturns(user1)
- result, err := ldapAuther.getGrafanaUserFor(&ldapUserInfo{MemberOf: []string{"cn=users"}})
- So(err, ShouldBeNil)
- So(result, ShouldEqual, user1)
- })
- ldapAutherScenario("Given no existing grafana user", func(sc *scenarioContext) {
- ldapAuther := NewLdapAuthenticator(&LdapServerConf{
- LdapGroups: []*LdapGroupToOrgRole{
- {GroupDN: "cn=users", OrgRole: "Admin"},
- },
- })
- sc.userQueryReturns(nil)
- result, err := ldapAuther.getGrafanaUserFor(&ldapUserInfo{
- Username: "torkelo",
- Email: "my@email.com",
- MemberOf: []string{"cn=users"},
- })
- So(err, ShouldBeNil)
- Convey("Should create new user", func() {
- So(sc.createUserCmd.Login, ShouldEqual, "torkelo")
- So(sc.createUserCmd.Email, ShouldEqual, "my@email.com")
- })
- Convey("Should return new user", func() {
- So(result.Login, ShouldEqual, "torkelo")
- })
- })
- })
- Convey("When syncing ldap groups to grafana org roles", t, func() {
- ldapAutherScenario("given no current user orgs", func(sc *scenarioContext) {
- ldapAuther := NewLdapAuthenticator(&LdapServerConf{
- LdapGroups: []*LdapGroupToOrgRole{
- {GroupDN: "cn=users", OrgRole: "Admin"},
- },
- })
- sc.userOrgsQueryReturns([]*m.UserOrgDTO{})
- err := ldapAuther.syncOrgRoles(&m.User{}, &ldapUserInfo{
- MemberOf: []string{"cn=users"},
- })
- Convey("Should create new org user", func() {
- So(err, ShouldBeNil)
- So(sc.addOrgUserCmd, ShouldNotBeNil)
- So(sc.addOrgUserCmd.Role, ShouldEqual, m.ROLE_ADMIN)
- })
- })
- ldapAutherScenario("given different current org role", func(sc *scenarioContext) {
- ldapAuther := NewLdapAuthenticator(&LdapServerConf{
- LdapGroups: []*LdapGroupToOrgRole{
- {GroupDN: "cn=users", OrgId: 1, OrgRole: "Admin"},
- },
- })
- sc.userOrgsQueryReturns([]*m.UserOrgDTO{{OrgId: 1, Role: m.ROLE_EDITOR}})
- err := ldapAuther.syncOrgRoles(&m.User{}, &ldapUserInfo{
- MemberOf: []string{"cn=users"},
- })
- Convey("Should update org role", func() {
- So(err, ShouldBeNil)
- So(sc.updateOrgUserCmd, ShouldNotBeNil)
- So(sc.updateOrgUserCmd.Role, ShouldEqual, m.ROLE_ADMIN)
- })
- })
- ldapAutherScenario("given current org role is removed in ldap", func(sc *scenarioContext) {
- ldapAuther := NewLdapAuthenticator(&LdapServerConf{
- LdapGroups: []*LdapGroupToOrgRole{
- {GroupDN: "cn=users", OrgId: 1, OrgRole: "Admin"},
- },
- })
- sc.userOrgsQueryReturns([]*m.UserOrgDTO{{OrgId: 1, Role: m.ROLE_EDITOR}})
- err := ldapAuther.syncOrgRoles(&m.User{}, &ldapUserInfo{
- MemberOf: []string{"cn=other"},
- })
- Convey("Should remove org role", func() {
- So(err, ShouldBeNil)
- So(sc.removeOrgUserCmd, ShouldNotBeNil)
- })
- })
- ldapAutherScenario("given multiple matching ldap groups", func(sc *scenarioContext) {
- ldapAuther := NewLdapAuthenticator(&LdapServerConf{
- LdapGroups: []*LdapGroupToOrgRole{
- {GroupDN: "cn=admins", OrgId: 1, OrgRole: "Admin"},
- {GroupDN: "*", OrgId: 1, OrgRole: "Viewer"},
- },
- })
- sc.userOrgsQueryReturns([]*m.UserOrgDTO{{OrgId: 1, Role: m.ROLE_ADMIN}})
- err := ldapAuther.syncOrgRoles(&m.User{}, &ldapUserInfo{
- MemberOf: []string{"cn=admins"},
- })
- Convey("Should take first match, and ignore subsequent matches", func() {
- So(err, ShouldBeNil)
- So(sc.updateOrgUserCmd, ShouldBeNil)
- })
- })
- })
- }
- func ldapAutherScenario(desc string, fn scenarioFunc) {
- Convey(desc, func() {
- defer bus.ClearBusHandlers()
- sc := &scenarioContext{}
- bus.AddHandler("test", func(cmd *m.CreateUserCommand) error {
- sc.createUserCmd = cmd
- sc.createUserCmd.Result = m.User{Login: cmd.Login}
- return nil
- })
- bus.AddHandler("test", func(cmd *m.AddOrgUserCommand) error {
- sc.addOrgUserCmd = cmd
- return nil
- })
- bus.AddHandler("test", func(cmd *m.UpdateOrgUserCommand) error {
- sc.updateOrgUserCmd = cmd
- return nil
- })
- bus.AddHandler("test", func(cmd *m.RemoveOrgUserCommand) error {
- sc.removeOrgUserCmd = cmd
- return nil
- })
- fn(sc)
- })
- }
- type scenarioContext struct {
- createUserCmd *m.CreateUserCommand
- addOrgUserCmd *m.AddOrgUserCommand
- updateOrgUserCmd *m.UpdateOrgUserCommand
- removeOrgUserCmd *m.RemoveOrgUserCommand
- }
- func (sc *scenarioContext) userQueryReturns(user *m.User) {
- bus.AddHandler("test", func(query *m.GetUserByLoginQuery) error {
- if user == nil {
- return m.ErrUserNotFound
- } else {
- query.Result = user
- return nil
- }
- })
- }
- func (sc *scenarioContext) userOrgsQueryReturns(orgs []*m.UserOrgDTO) {
- bus.AddHandler("test", func(query *m.GetUserOrgListQuery) error {
- query.Result = orgs
- return nil
- })
- }
- type scenarioFunc func(c *scenarioContext)
|