mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* MM-14590: Adds license check to LDAP test and LDAP sync API endpoints. * MM-14590: Improves the LdapSync and LdapTest API tests.
90 lines
2.1 KiB
Go
90 lines
2.1 KiB
Go
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package api4
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/mattermost/mattermost-server/model"
|
|
)
|
|
|
|
func TestTestLdap(t *testing.T) {
|
|
th := Setup().InitBasic()
|
|
defer th.TearDown()
|
|
|
|
_, resp := th.SystemAdminClient.TestLdap()
|
|
CheckNotImplementedStatus(t, resp)
|
|
require.NotNil(t, resp.Error)
|
|
require.Equal(t, "api.ldap_groups.license_error", resp.Error.Id)
|
|
|
|
th.App.SetLicense(model.NewTestLicense("ldap_groups"))
|
|
|
|
_, resp = th.Client.TestLdap()
|
|
CheckForbiddenStatus(t, resp)
|
|
require.NotNil(t, resp.Error)
|
|
require.Equal(t, "api.context.permissions.app_error", resp.Error.Id)
|
|
|
|
_, resp = th.SystemAdminClient.TestLdap()
|
|
CheckNotImplementedStatus(t, resp)
|
|
require.NotNil(t, resp.Error)
|
|
require.Equal(t, "ent.ldap.disabled.app_error", resp.Error.Id)
|
|
}
|
|
|
|
func TestSyncLdap(t *testing.T) {
|
|
th := Setup().InitBasic()
|
|
defer th.TearDown()
|
|
|
|
_, resp := th.SystemAdminClient.SyncLdap()
|
|
CheckNotImplementedStatus(t, resp)
|
|
require.NotNil(t, resp.Error)
|
|
require.Equal(t, "api.ldap_groups.license_error", resp.Error.Id)
|
|
|
|
th.App.SetLicense(model.NewTestLicense("ldap_groups"))
|
|
|
|
_, resp = th.SystemAdminClient.SyncLdap()
|
|
CheckNoError(t, resp)
|
|
|
|
_, resp = th.Client.SyncLdap()
|
|
CheckForbiddenStatus(t, resp)
|
|
}
|
|
|
|
func TestGetLdapGroups(t *testing.T) {
|
|
th := Setup().InitBasic()
|
|
defer th.TearDown()
|
|
|
|
_, resp := th.Client.GetLdapGroups()
|
|
CheckForbiddenStatus(t, resp)
|
|
|
|
_, resp = th.SystemAdminClient.GetLdapGroups()
|
|
CheckNotImplementedStatus(t, resp)
|
|
}
|
|
|
|
func TestLinkLdapGroup(t *testing.T) {
|
|
const entryUUID string = "foo"
|
|
|
|
th := Setup().InitBasic()
|
|
defer th.TearDown()
|
|
|
|
_, resp := th.Client.LinkLdapGroup(entryUUID)
|
|
CheckForbiddenStatus(t, resp)
|
|
|
|
_, resp = th.SystemAdminClient.LinkLdapGroup(entryUUID)
|
|
CheckNotImplementedStatus(t, resp)
|
|
}
|
|
|
|
func TestUnlinkLdapGroup(t *testing.T) {
|
|
const entryUUID string = "foo"
|
|
|
|
th := Setup().InitBasic()
|
|
defer th.TearDown()
|
|
|
|
_, resp := th.Client.UnlinkLdapGroup(entryUUID)
|
|
CheckForbiddenStatus(t, resp)
|
|
|
|
_, resp = th.SystemAdminClient.UnlinkLdapGroup(entryUUID)
|
|
CheckNotImplementedStatus(t, resp)
|
|
}
|