Try to fix infinite conn read in tests

This commit is contained in:
yuhan6665 2024-07-01 22:28:50 -04:00
parent c6a57b2cc1
commit 60b2c349d2
3 changed files with 4 additions and 0 deletions

View file

@ -28,6 +28,7 @@ func Test_listenHTTPUpgradeAndDial(t *testing.T) {
defer c.Close()
var b [1024]byte
c.SetReadDeadline(time.Now().Add(2 * time.Second))
_, err := c.Read(b[:])
if err != nil {
return
@ -87,6 +88,7 @@ func Test_listenHTTPUpgradeAndDialWithHeaders(t *testing.T) {
defer c.Close()
var b [1024]byte
c.SetReadDeadline(time.Now().Add(2 * time.Second))
_, err := c.Read(b[:])
if err != nil {
return

View file

@ -33,6 +33,7 @@ func Test_listenSHAndDial(t *testing.T) {
defer c.Close()
var b [1024]byte
c.SetReadDeadline(time.Now().Add(2 * time.Second))
_, err := c.Read(b[:])
if err != nil {
return

View file

@ -28,6 +28,7 @@ func Test_listenWSAndDial(t *testing.T) {
defer c.Close()
var b [1024]byte
c.SetReadDeadline(time.Now().Add(2 * time.Second))
_, err := c.Read(b[:])
if err != nil {
return