2014-04-19 01:25:11 +04:00
|
|
|
// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved.
|
2013-10-16 20:41:47 +04:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package websocket
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2015-03-09 22:10:02 +03:00
|
|
|
"encoding/json"
|
|
|
|
"io"
|
2013-10-16 20:41:47 +04:00
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestJSON(t *testing.T) {
|
|
|
|
var buf bytes.Buffer
|
2018-08-18 05:50:34 +03:00
|
|
|
wc := newTestConn(nil, &buf, true)
|
|
|
|
rc := newTestConn(&buf, nil, false)
|
2013-10-16 20:41:47 +04:00
|
|
|
|
|
|
|
var actual, expect struct {
|
|
|
|
A int
|
|
|
|
B string
|
|
|
|
}
|
|
|
|
expect.A = 1
|
|
|
|
expect.B = "hello"
|
|
|
|
|
2013-10-26 12:13:32 +04:00
|
|
|
if err := wc.WriteJSON(&expect); err != nil {
|
2013-10-16 20:41:47 +04:00
|
|
|
t.Fatal("write", err)
|
|
|
|
}
|
|
|
|
|
2013-10-27 22:56:52 +04:00
|
|
|
if err := rc.ReadJSON(&actual); err != nil {
|
2013-10-27 22:50:42 +04:00
|
|
|
t.Fatal("read", err)
|
|
|
|
}
|
|
|
|
|
2013-10-27 22:56:52 +04:00
|
|
|
if !reflect.DeepEqual(&actual, &expect) {
|
|
|
|
t.Fatal("equal", actual, expect)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-11 20:14:32 +03:00
|
|
|
func TestPartialJSONRead(t *testing.T) {
|
2018-08-18 05:50:34 +03:00
|
|
|
var buf0, buf1 bytes.Buffer
|
|
|
|
wc := newTestConn(nil, &buf0, true)
|
|
|
|
rc := newTestConn(&buf0, &buf1, false)
|
2015-03-09 22:10:02 +03:00
|
|
|
|
|
|
|
var v struct {
|
|
|
|
A int
|
|
|
|
B string
|
|
|
|
}
|
|
|
|
v.A = 1
|
|
|
|
v.B = "hello"
|
|
|
|
|
|
|
|
messageCount := 0
|
|
|
|
|
|
|
|
// Partial JSON values.
|
|
|
|
|
|
|
|
data, err := json.Marshal(v)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
for i := len(data) - 1; i >= 0; i-- {
|
|
|
|
if err := wc.WriteMessage(TextMessage, data[:i]); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
messageCount++
|
|
|
|
}
|
|
|
|
|
|
|
|
// Whitespace.
|
|
|
|
|
|
|
|
if err := wc.WriteMessage(TextMessage, []byte(" ")); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
messageCount++
|
|
|
|
|
|
|
|
// Close.
|
|
|
|
|
|
|
|
if err := wc.WriteMessage(CloseMessage, FormatCloseMessage(CloseNormalClosure, "")); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < messageCount; i++ {
|
|
|
|
err := rc.ReadJSON(&v)
|
|
|
|
if err != io.ErrUnexpectedEOF {
|
|
|
|
t.Error("read", i, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err = rc.ReadJSON(&v)
|
2015-08-11 20:14:32 +03:00
|
|
|
if _, ok := err.(*CloseError); !ok {
|
2015-03-09 22:10:02 +03:00
|
|
|
t.Error("final", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-27 22:56:52 +04:00
|
|
|
func TestDeprecatedJSON(t *testing.T) {
|
|
|
|
var buf bytes.Buffer
|
2018-08-18 05:50:34 +03:00
|
|
|
wc := newTestConn(nil, &buf, true)
|
|
|
|
rc := newTestConn(&buf, nil, false)
|
2013-10-27 22:56:52 +04:00
|
|
|
|
|
|
|
var actual, expect struct {
|
|
|
|
A int
|
|
|
|
B string
|
|
|
|
}
|
|
|
|
expect.A = 1
|
|
|
|
expect.B = "hello"
|
|
|
|
|
|
|
|
if err := WriteJSON(wc, &expect); err != nil {
|
|
|
|
t.Fatal("write", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ReadJSON(rc, &actual); err != nil {
|
2013-10-16 20:41:47 +04:00
|
|
|
t.Fatal("read", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(&actual, &expect) {
|
|
|
|
t.Fatal("equal", actual, expect)
|
|
|
|
}
|
|
|
|
}
|