Implement GET /cluster/status endpoint for APIv4 (#5732)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
27d2c1f6fe
Коммит
59d06b5c56
22
api4/cluster_test.go
Обычный файл
22
api4/cluster_test.go
Обычный файл
@@ -0,0 +1,22 @@
|
||||
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
package api4
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestGetClusterStatus(t *testing.T) {
|
||||
th := Setup().InitBasic().InitSystemAdmin()
|
||||
|
||||
_, resp := th.Client.GetClusterStatus()
|
||||
CheckForbiddenStatus(t, resp)
|
||||
|
||||
infos, resp := th.SystemAdminClient.GetClusterStatus()
|
||||
CheckNoError(t, resp)
|
||||
|
||||
if infos == nil {
|
||||
t.Fatal("should not be nil")
|
||||
}
|
||||
}
|
||||
Ссылка в новой задаче
Block a user