2017-06-29 22:40:14 +01:00
|
|
|
// 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)
|
|
|
|
|
}
|
2017-07-19 09:43:05 +01:00
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
}
|