mirror of
https://github.com/Chipazawra/rac.git
synced 2024-11-24 08:32:42 +02:00
48 lines
829 B
Go
48 lines
829 B
Go
package rac
|
|
|
|
import (
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"testing"
|
|
)
|
|
|
|
type clusterTestSuite struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func TestClusterTestSuite(t *testing.T) {
|
|
suite.Run(t, new(clusterTestSuite))
|
|
}
|
|
|
|
func (s *clusterTestSuite) r() *require.Assertions {
|
|
return s.Require()
|
|
}
|
|
|
|
func (s *clusterTestSuite) AfterTest(suite, testName string) {
|
|
|
|
}
|
|
func (s *clusterTestSuite) BeforeTest(suite, testName string) {
|
|
|
|
}
|
|
|
|
func (s *clusterTestSuite) TearDownSuite() {
|
|
|
|
}
|
|
func (s *clusterTestSuite) TearDownTest() {
|
|
|
|
}
|
|
func (s *clusterTestSuite) SetupSuite() {
|
|
|
|
}
|
|
|
|
func (s *clusterTestSuite) TestClusterList() {
|
|
|
|
m, _ := NewManager("localhost:1545")
|
|
needLen := len(m.idxCluster)
|
|
resp, err := m.Clusters(ClustersList{})
|
|
s.r().NoError(err)
|
|
s.r().True(len(resp.List) == needLen, "len must be 1")
|
|
|
|
}
|