Added infrastructure for basic WebSocket API (#3432)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
06eacf30b9
Коммит
ad343a0f4a
25
model/websocket_request_test.go
Обычный файл
25
model/websocket_request_test.go
Обычный файл
@@ -0,0 +1,25 @@
|
||||
// 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")
|
||||
}
|
||||
}
|
||||
Ссылка в новой задаче
Block a user