Files
mattermost/model/websocket_request_test.go
2016-07-12 09:36:27 -04:00

26 lines
509 B
Go

// Copyright (c) 2015 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")
}
}