| 123456789101112131415161718192021222324252627282930313233343536373839404142 | package kcp_testimport (	"io"	"testing"	"time"	"v2ray.com/core/common/buf"	. "v2ray.com/core/transport/internet/kcp"	. "v2ray.com/ext/assert")type NoOpCloser intfunc (NoOpCloser) Close() error {	return nil}func TestConnectionReadTimeout(t *testing.T) {	assert := With(t)	conn := NewConnection(ConnMetadata{Conversation: 1}, &KCPPacketWriter{		Writer: buf.DiscardBytes,	}, NoOpCloser(0), &Config{})	conn.SetReadDeadline(time.Now().Add(time.Second))	b := make([]byte, 1024)	nBytes, err := conn.Read(b)	assert(nBytes, Equals, 0)	assert(err, IsNotNil)	conn.Terminate()}func TestConnectionInterface(t *testing.T) {	assert := With(t)	assert((*Connection)(nil), Implements, (*io.Writer)(nil))	assert((*Connection)(nil), Implements, (*io.Reader)(nil))	assert((*Connection)(nil), Implements, (*buf.Reader)(nil))	assert((*Connection)(nil), Implements, (*buf.Writer)(nil))}
 |