mirror of
https://github.com/v2ray/v2ray-core.git
synced 2024-04-21 12:31:52 +00:00
test case for read timeout
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package kcp_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/v2ray/v2ray-core/testing/assert"
|
||||
. "github.com/v2ray/v2ray-core/transport/internet/kcp"
|
||||
)
|
||||
|
||||
func TestConnectionReadTimeout(t *testing.T) {
|
||||
assert := assert.On(t)
|
||||
|
||||
conn := NewConnection(1, nil, nil, nil, NewSimpleAuthenticator())
|
||||
conn.SetReadDeadline(time.Now().Add(time.Second))
|
||||
|
||||
b := make([]byte, 1024)
|
||||
nBytes, err := conn.Read(b)
|
||||
assert.Int(nBytes).Equals(0)
|
||||
assert.Error(err).IsNotNil()
|
||||
}
|
||||
Reference in New Issue
Block a user