Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package kcp_test
 
import (
    "io"
    "testing"
    "time"
 
    "github.com/v2fly/v2ray-core/v5/common/buf"
    . "github.com/v2fly/v2ray-core/v5/transport/internet/kcp"
)
 
type NoOpCloser int
 
func (NoOpCloser) Close() error {
    return nil
}
 
func TestConnectionReadTimeout(t *testing.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)
    if nBytes != 0 || err == nil {
        t.Error("unexpected read: ", nBytes, err)
    }
 
    conn.Terminate()
}
 
func TestConnectionInterface(t *testing.T) {
    _ = (io.Writer)(new(Connection))
    _ = (io.Reader)(new(Connection))
    _ = (buf.Reader)(new(Connection))
    _ = (buf.Writer)(new(Connection))
}