summaryrefslogtreecommitdiffstats
path: root/app/cluster_discovery_test.go
blob: cd61c0f03ed5769b1d55553af9d4400c949bc41b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package app

import (
	"testing"

	"time"

	"github.com/mattermost/mattermost-server/model"
)

func TestClusterDiscoveryService(t *testing.T) {
	th := Setup()

	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)
}