17ec9cac83
* Remove user from preferences, stars, orguser, team member * Fix lint * Add Delete user from org and dashboard acl * Delete user from user auth * Add DeleteUser to quota * Add test files and adjust user auth store * Rename package in wire for user auth * Import Quota Service interface in other services * do the same in tests * fix lint tests * Fix tests * Add some tests * Rename InsertUser and DeleteUser to InsertOrgUser and DeleteOrgUser * Rename DeleteUser to DeleteByUser in quota * changing a method name in few additional places * Fix in other places * Fix lint * Fix tests * Rename DeleteOrgUser to DeleteUserFromAll * Update pkg/services/org/orgimpl/org_test.go Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com> * Update pkg/services/preference/prefimpl/inmemory_test.go Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com> * Rename Acl to ACL * Fix wire after merge with main * Move test to uni test Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com>
82 lines
2.2 KiB
Go
82 lines
2.2 KiB
Go
package orgimpl
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana/pkg/services/org"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestOrgService(t *testing.T) {
|
|
orgStore := newOrgStoreFake()
|
|
orgService := Service{
|
|
store: orgStore,
|
|
cfg: setting.NewCfg(),
|
|
}
|
|
|
|
t.Run("create org", func(t *testing.T) {
|
|
_, err := orgService.GetIDForNewUser(context.Background(), org.GetOrgIDForNewUserCommand{})
|
|
require.NoError(t, err)
|
|
})
|
|
|
|
t.Run("create org", func(t *testing.T) {
|
|
_, err := orgService.GetIDForNewUser(context.Background(), org.GetOrgIDForNewUserCommand{})
|
|
require.NoError(t, err)
|
|
})
|
|
|
|
t.Run("create org with auto assign org ID", func(t *testing.T) {
|
|
setting.AutoAssignOrg = true
|
|
setting.AutoAssignOrgId = 1
|
|
orgStore.ExpectedOrgID = 1
|
|
orgStore.ExpectedOrg = &org.Org{}
|
|
_, err := orgService.GetIDForNewUser(context.Background(), org.GetOrgIDForNewUserCommand{})
|
|
require.NoError(t, err)
|
|
})
|
|
|
|
t.Run("create org with auto assign org ID and orgID", func(t *testing.T) {
|
|
setting.AutoAssignOrg = true
|
|
setting.AutoAssignOrgId = 1
|
|
orgStore.ExpectedOrgID = 1
|
|
orgStore.ExpectedOrg = &org.Org{}
|
|
_, err := orgService.GetIDForNewUser(context.Background(), org.GetOrgIDForNewUserCommand{OrgID: 1})
|
|
require.NoError(t, err)
|
|
})
|
|
|
|
setting.AutoAssignOrg = false
|
|
setting.AutoAssignOrgId = 0
|
|
|
|
t.Run("delete user from all orgs", func(t *testing.T) {
|
|
err := orgService.DeleteUserFromAll(context.Background(), 1)
|
|
require.NoError(t, err)
|
|
})
|
|
}
|
|
|
|
type FakeOrgStore struct {
|
|
ExpectedOrg *org.Org
|
|
ExpectedOrgID int64
|
|
ExpectedUserID int64
|
|
ExpectedError error
|
|
}
|
|
|
|
func newOrgStoreFake() *FakeOrgStore {
|
|
return &FakeOrgStore{}
|
|
}
|
|
|
|
func (f *FakeOrgStore) Get(ctx context.Context, orgID int64) (*org.Org, error) {
|
|
return f.ExpectedOrg, f.ExpectedError
|
|
}
|
|
|
|
func (f *FakeOrgStore) Insert(ctx context.Context, org *org.Org) (int64, error) {
|
|
return f.ExpectedOrgID, f.ExpectedError
|
|
}
|
|
|
|
func (f *FakeOrgStore) InsertOrgUser(ctx context.Context, org *org.OrgUser) (int64, error) {
|
|
return f.ExpectedUserID, f.ExpectedError
|
|
}
|
|
|
|
func (f *FakeOrgStore) DeleteUserFromAll(ctx context.Context, userID int64) error {
|
|
return f.ExpectedError
|
|
}
|