github.com/hahmadia/mattermost-server@v5.11.1+incompatible/model/cluster_stats_test.go (about)

     1  // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
     2  // See License.txt for license information.
     3  
     4  package model
     5  
     6  import (
     7  	"strings"
     8  	"testing"
     9  )
    10  
    11  func TestClusterStatsJson(t *testing.T) {
    12  	cluster := ClusterStats{Id: NewId(), TotalWebsocketConnections: 1, TotalReadDbConnections: 1}
    13  	json := cluster.ToJson()
    14  	result := ClusterStatsFromJson(strings.NewReader(json))
    15  
    16  	if cluster.Id != result.Id {
    17  		t.Fatal("Ids do not match")
    18  	}
    19  }