Files
mattermost/app/cluster_discovery_test.go

29 lines
504 B
Go
Raw Normal View History

// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package app
import (
"testing"
"time"
2017-09-06 23:05:10 -07:00
"github.com/mattermost/mattermost-server/model"
)
func TestClusterDiscoveryService(t *testing.T) {
2017-09-21 04:13:34 -05:00
th := Setup()
defer th.TearDown()
2017-09-21 04:13:34 -05:00
ds := th.App.NewClusterDiscoveryService()
ds.Type = model.CDS_TYPE_APP
ds.ClusterName = "ClusterA"
ds.AutoFillHostname()
ds.Start()
time.Sleep(2 * time.Second)
ds.Stop()
time.Sleep(2 * time.Second)
}