gf/net/ghttp/ghttp_unit_websocket_test.go

60 lines
1.3 KiB
Go
Raw Normal View History

2019-09-24 21:08:28 +08:00
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package ghttp_test
import (
"fmt"
"testing"
"time"
"github.com/gorilla/websocket"
"github.com/gogf/gf/frame/g"
"github.com/gogf/gf/net/ghttp"
"github.com/gogf/gf/test/gtest"
)
func Test_WebSocket(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2019-09-24 21:08:28 +08:00
s := g.Server(p)
s.BindHandler("/ws", func(r *ghttp.Request) {
ws, err := r.WebSocket()
if err != nil {
r.Exit()
}
for {
msgType, msg, err := ws.ReadMessage()
if err != nil {
return
}
if err = ws.WriteMessage(msgType, msg); err != nil {
return
}
}
})
s.SetPort(p)
s.SetDumpRouterMap(false)
2019-09-24 21:08:28 +08:00
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
2019-09-24 21:08:28 +08:00
conn, _, err := websocket.DefaultDialer.Dial(fmt.Sprintf("ws://127.0.0.1:%d/ws", p), nil)
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
2019-09-24 21:08:28 +08:00
defer conn.Close()
msg := []byte("hello")
err = conn.WriteMessage(websocket.TextMessage, msg)
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
2019-09-24 21:08:28 +08:00
2020-03-19 23:53:03 +08:00
mt, data, err := conn.ReadMessage()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
2020-03-19 23:53:03 +08:00
t.Assert(mt, websocket.TextMessage)
2020-03-19 22:56:12 +08:00
t.Assert(data, msg)
2019-09-24 21:08:28 +08:00
})
}