summaryrefslogtreecommitdiffstats
path: root/api4/ldap_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/ldap_test.go')
-rw-r--r--api4/ldap_test.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/api4/ldap_test.go b/api4/ldap_test.go
new file mode 100644
index 000000000..d8eaedc50
--- /dev/null
+++ b/api4/ldap_test.go
@@ -0,0 +1,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)
+}