summaryrefslogtreecommitdiffstats
path: root/model/cluster_info_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/cluster_info_test.go')
-rw-r--r--model/cluster_info_test.go18
1 files changed, 4 insertions, 14 deletions
diff --git a/model/cluster_info_test.go b/model/cluster_info_test.go
index 038927120..c019df40a 100644
--- a/model/cluster_info_test.go
+++ b/model/cluster_info_test.go
@@ -9,33 +9,23 @@ import (
)
func TestClusterInfoJson(t *testing.T) {
- cluster := ClusterInfo{Id: NewId(), InterNodeUrl: NewId(), Hostname: NewId()}
+ cluster := ClusterInfo{IpAddress: NewId(), Hostname: NewId()}
json := cluster.ToJson()
result := ClusterInfoFromJson(strings.NewReader(json))
- if cluster.Id != result.Id {
+ if cluster.IpAddress != result.IpAddress {
t.Fatal("Ids do not match")
}
-
- cluster.SetAlive(true)
- if !cluster.IsAlive() {
- t.Fatal("should be live")
- }
-
- cluster.SetAlive(false)
- if cluster.IsAlive() {
- t.Fatal("should be not live")
- }
}
func TestClusterInfosJson(t *testing.T) {
- cluster := ClusterInfo{Id: NewId(), InterNodeUrl: NewId(), Hostname: NewId()}
+ cluster := ClusterInfo{IpAddress: NewId(), Hostname: NewId()}
clusterInfos := make([]*ClusterInfo, 1)
clusterInfos[0] = &cluster
json := ClusterInfosToJson(clusterInfos)
result := ClusterInfosFromJson(strings.NewReader(json))
- if clusterInfos[0].Id != result[0].Id {
+ if clusterInfos[0].IpAddress != result[0].IpAddress {
t.Fatal("Ids do not match")
}