summaryrefslogtreecommitdiffstats
path: root/app/cluster_discovery_test.go
blob: 2df70798b52f2288372d70fadd20e41334fa4187 (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
28
// 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) {
	a := Global()
	a.Setup()

	ds := 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)
}