mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
114 lines
2.7 KiB
Go
114 lines
2.7 KiB
Go
// Copyright GoFrame Author(https://goframe.org). 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 gudp_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"github.com/gogf/gf/v2/net/gudp"
|
|
"github.com/gogf/gf/v2/os/glog"
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
"github.com/gogf/gf/v2/util/gconv"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func Test_Basic(t *testing.T) {
|
|
var (
|
|
ctx = context.TODO()
|
|
)
|
|
p, _ := ports.PopRand()
|
|
s := gudp.NewServer(fmt.Sprintf("127.0.0.1:%d", p), func(conn *gudp.Conn) {
|
|
defer conn.Close()
|
|
for {
|
|
data, err := conn.Recv(-1)
|
|
if len(data) > 0 {
|
|
if err := conn.Send(append([]byte("> "), data...)); err != nil {
|
|
glog.Error(ctx, err)
|
|
}
|
|
}
|
|
if err != nil {
|
|
break
|
|
}
|
|
}
|
|
})
|
|
go s.Run()
|
|
defer s.Close()
|
|
time.Sleep(100 * time.Millisecond)
|
|
// gudp.Conn.Send
|
|
gtest.C(t, func(t *gtest.T) {
|
|
for i := 0; i < 100; i++ {
|
|
conn, err := gudp.NewConn(fmt.Sprintf("127.0.0.1:%d", p))
|
|
t.Assert(err, nil)
|
|
t.Assert(conn.Send([]byte(gconv.String(i))), nil)
|
|
conn.Close()
|
|
}
|
|
})
|
|
// gudp.Conn.SendRecv
|
|
gtest.C(t, func(t *gtest.T) {
|
|
for i := 0; i < 100; i++ {
|
|
conn, err := gudp.NewConn(fmt.Sprintf("127.0.0.1:%d", p))
|
|
t.Assert(err, nil)
|
|
result, err := conn.SendRecv([]byte(gconv.String(i)), -1)
|
|
t.Assert(err, nil)
|
|
t.Assert(string(result), fmt.Sprintf(`> %d`, i))
|
|
conn.Close()
|
|
}
|
|
})
|
|
// gudp.Send
|
|
gtest.C(t, func(t *gtest.T) {
|
|
for i := 0; i < 100; i++ {
|
|
err := gudp.Send(fmt.Sprintf("127.0.0.1:%d", p), []byte(gconv.String(i)))
|
|
t.Assert(err, nil)
|
|
}
|
|
})
|
|
// gudp.SendRecv
|
|
gtest.C(t, func(t *gtest.T) {
|
|
for i := 0; i < 100; i++ {
|
|
result, err := gudp.SendRecv(fmt.Sprintf("127.0.0.1:%d", p), []byte(gconv.String(i)), -1)
|
|
t.Assert(err, nil)
|
|
t.Assert(string(result), fmt.Sprintf(`> %d`, i))
|
|
}
|
|
})
|
|
}
|
|
|
|
// If the read buffer size is less than the sent package size,
|
|
// the rest data would be dropped.
|
|
func Test_Buffer(t *testing.T) {
|
|
var (
|
|
ctx = context.TODO()
|
|
)
|
|
p, _ := ports.PopRand()
|
|
s := gudp.NewServer(fmt.Sprintf("127.0.0.1:%d", p), func(conn *gudp.Conn) {
|
|
defer conn.Close()
|
|
for {
|
|
data, err := conn.Recv(1)
|
|
if len(data) > 0 {
|
|
if err := conn.Send(data); err != nil {
|
|
glog.Error(ctx, err)
|
|
}
|
|
}
|
|
if err != nil {
|
|
break
|
|
}
|
|
}
|
|
})
|
|
go s.Run()
|
|
defer s.Close()
|
|
time.Sleep(100 * time.Millisecond)
|
|
gtest.C(t, func(t *gtest.T) {
|
|
result, err := gudp.SendRecv(fmt.Sprintf("127.0.0.1:%d", p), []byte("123"), -1)
|
|
t.Assert(err, nil)
|
|
t.Assert(string(result), "1")
|
|
})
|
|
gtest.C(t, func(t *gtest.T) {
|
|
result, err := gudp.SendRecv(fmt.Sprintf("127.0.0.1:%d", p), []byte("456"), -1)
|
|
t.Assert(err, nil)
|
|
t.Assert(string(result), "4")
|
|
})
|
|
}
|