2017-06-19 08:44:04 -07:00
|
|
|
// 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"
|
2017-06-19 08:44:04 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestClusterDiscoveryService(t *testing.T) {
|
2017-09-21 04:13:34 -05:00
|
|
|
th := Setup()
|
2017-10-04 13:09:41 -07:00
|
|
|
defer th.TearDown()
|
2017-06-19 08:44:04 -07:00
|
|
|
|
2017-09-21 04:13:34 -05:00
|
|
|
ds := th.App.NewClusterDiscoveryService()
|
2017-06-19 08:44:04 -07:00
|
|
|
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)
|
|
|
|
|
}
|