summaryrefslogtreecommitdiffstats
path: root/api4/elasticsearch_test.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-06-29 22:40:14 +0100
committerJoram Wilander <jwawilander@gmail.com>2017-06-29 17:40:14 -0400
commitf2898927f1b92d3c8cd9e7c63ce27dee7e6ae88f (patch)
treef29a8058cf581d128502b2da532fc551aa1101b9 /api4/elasticsearch_test.go
parenta4f363a50b7807de9ac086ee0e62442a7645f5e8 (diff)
downloadchat-f2898927f1b92d3c8cd9e7c63ce27dee7e6ae88f.tar.gz
chat-f2898927f1b92d3c8cd9e7c63ce27dee7e6ae88f.tar.bz2
chat-f2898927f1b92d3c8cd9e7c63ce27dee7e6ae88f.zip
PLT-6474: Server: Add elasticsearch/test endpoint to API. (#6792)
Diffstat (limited to 'api4/elasticsearch_test.go')
-rw-r--r--api4/elasticsearch_test.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/api4/elasticsearch_test.go b/api4/elasticsearch_test.go
new file mode 100644
index 000000000..1478f052f
--- /dev/null
+++ b/api4/elasticsearch_test.go
@@ -0,0 +1,19 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api4
+
+import (
+ "testing"
+)
+
+func TestElasticsearchTest(t *testing.T) {
+ th := Setup().InitBasic().InitSystemAdmin()
+ defer TearDown()
+
+ _, resp := th.Client.TestElasticsearch()
+ CheckForbiddenStatus(t, resp)
+
+ _, resp = th.SystemAdminClient.TestElasticsearch()
+ CheckNotImplementedStatus(t, resp)
+}