summaryrefslogtreecommitdiffstats
path: root/model/websocket_message_test.go
blob: dceb37eefd1c9526c3252ffdaaf5d17f5e35d230 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package model

import (
	"strings"
	"testing"
)

func TestWebSocketEvent(t *testing.T) {
	m := NewWebSocketEvent("some_event", NewId(), NewId(), NewId(), nil)
	m.Add("RootId", NewId())
	json := m.ToJson()
	result := WebSocketEventFromJson(strings.NewReader(json))

	badresult := WebSocketEventFromJson(strings.NewReader("junk"))
	if badresult != nil {
		t.Fatal("should not have parsed")
	}

	if !m.IsValid() {
		t.Fatal("should be valid")
	}

	if m.Broadcast.TeamId != result.Broadcast.TeamId {
		t.Fatal("Ids do not match")
	}

	if m.Data["RootId"] != result.Data["RootId"] {
		t.Fatal("Ids do not match")
	}
}

func TestWebSocketResponse(t *testing.T) {
	m := NewWebSocketResponse("OK", 1, map[string]interface{}{})
	e := NewWebSocketError(1, &AppError{})
	m.Add("RootId", NewId())
	json := m.ToJson()
	result := WebSocketResponseFromJson(strings.NewReader(json))
	json2 := e.ToJson()
	WebSocketResponseFromJson(strings.NewReader(json2))

	badresult := WebSocketResponseFromJson(strings.NewReader("junk"))
	if badresult != nil {
		t.Fatal("should not have parsed")
	}

	if !m.IsValid() {
		t.Fatal("should be valid")
	}

	if m.Data["RootId"] != result.Data["RootId"] {
		t.Fatal("Ids do not match")
	}
}