summaryrefslogtreecommitdiffstats
path: root/api4/ldap_test.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-03-14 08:43:40 -0400
committerGitHub <noreply@github.com>2017-03-14 08:43:40 -0400
commitee457176bd0c4442358df089044b87eb75fe7569 (patch)
tree18ddf06b686b24925febc2e9a33f86dff4936c17 /api4/ldap_test.go
parenta71a9fc3bff1b6a6c9d5e0a65f53686922572834 (diff)
downloadchat-ee457176bd0c4442358df089044b87eb75fe7569.tar.gz
chat-ee457176bd0c4442358df089044b87eb75fe7569.tar.bz2
chat-ee457176bd0c4442358df089044b87eb75fe7569.zip
Implement admin LDAP endpoints for APIv4 (#5720)
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)
+}