summaryrefslogtreecommitdiffstats
path: root/api4/elasticsearch_test.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-07-19 09:43:05 +0100
committerGitHub <noreply@github.com>2017-07-19 09:43:05 +0100
commitfe368a74565e736ad1fb1dfc20ab364379d83ae9 (patch)
tree56186c11129a4aadc068a6387af39288cc9802b7 /api4/elasticsearch_test.go
parent97f34e483b0fa8b2a8cfe75b72168cfa38cc9d80 (diff)
downloadchat-fe368a74565e736ad1fb1dfc20ab364379d83ae9.tar.gz
chat-fe368a74565e736ad1fb1dfc20ab364379d83ae9.tar.bz2
chat-fe368a74565e736ad1fb1dfc20ab364379d83ae9.zip
PLT-6595: API to purge Elasticsearch indexes. (#6971)
Diffstat (limited to 'api4/elasticsearch_test.go')
-rw-r--r--api4/elasticsearch_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/api4/elasticsearch_test.go b/api4/elasticsearch_test.go
index 1478f052f..768a73ad7 100644
--- a/api4/elasticsearch_test.go
+++ b/api4/elasticsearch_test.go
@@ -17,3 +17,14 @@ func TestElasticsearchTest(t *testing.T) {
_, resp = th.SystemAdminClient.TestElasticsearch()
CheckNotImplementedStatus(t, resp)
}
+
+func TestElasticsearchPurgeIndexes(t *testing.T) {
+ th := Setup().InitBasic().InitSystemAdmin()
+ defer TearDown()
+
+ _, resp := th.Client.PurgeElasticsearchIndexes()
+ CheckForbiddenStatus(t, resp)
+
+ _, resp = th.SystemAdminClient.PurgeElasticsearchIndexes()
+ CheckNotImplementedStatus(t, resp)
+}