frp/pkg/proto/udp/udp_test.go

19 lines
302 B
Go
Raw Normal View History

2017-03-27 23:46:38 +08:00
package udp
import (
"testing"
2025-05-26 14:54:03 +08:00
"github.com/stretchr/testify/require"
2017-03-27 23:46:38 +08:00
)
func TestUdpPacket(t *testing.T) {
2025-05-26 14:54:03 +08:00
require := require.New(t)
2017-03-27 23:46:38 +08:00
buf := []byte("hello world")
2020-05-24 17:48:37 +08:00
udpMsg := NewUDPPacket(buf, nil, nil)
2017-03-27 23:46:38 +08:00
newBuf, err := GetContent(udpMsg)
2025-05-26 14:54:03 +08:00
require.NoError(err)
require.EqualValues(buf, newBuf)
2017-03-27 23:46:38 +08:00
}