summaryrefslogtreecommitdiffstats
path: root/api4/ldap_test.go
blob: d8eaedc507b403d2f674272910f8e15319ff279c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package api4

import (
	"testing"
)

func TestLdapTest(t *testing.T) {
	th := Setup().InitBasic().InitSystemAdmin()
	defer TearDown()

	_, resp := th.Client.TestLdap()
	CheckForbiddenStatus(t, resp)

	_, resp = th.SystemAdminClient.TestLdap()
	CheckNotImplementedStatus(t, resp)
}

func TestLdapSync(t *testing.T) {
	th := Setup().InitBasic().InitSystemAdmin()
	defer TearDown()

	_, resp := th.SystemAdminClient.SyncLdap()
	CheckNoError(t, resp)

	_, resp = th.Client.SyncLdap()
	CheckForbiddenStatus(t, resp)
}