summaryrefslogtreecommitdiffstats
path: root/model/websocket_request_test.go
blob: 0918fb7146a56b6a45c49b7fa04776f10d8264f5 (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
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package model

import (
	"strings"
	"testing"
)

func TestWebSocketRequest(t *testing.T) {
	m := WebSocketRequest{Seq: 1, Action: "test"}
	json := m.ToJson()
	result := WebSocketRequestFromJson(strings.NewReader(json))

	if result == nil {
		t.Fatal("should not be nil")
	}

	badresult := WebSocketRequestFromJson(strings.NewReader("junk"))

	if badresult != nil {
		t.Fatal("should have been nil")
	}
}