|
|
@@ -1,8 +1,11 @@
|
|
|
package kcp_test
|
|
|
|
|
|
import (
|
|
|
+ "io"
|
|
|
"testing"
|
|
|
+ "time"
|
|
|
|
|
|
+ "github.com/v2ray/v2ray-core/common/alloc"
|
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
|
. "github.com/v2ray/v2ray-core/transport/internet/kcp"
|
|
|
)
|
|
|
@@ -34,3 +37,40 @@ func TestRecivingWindow(t *testing.T) {
|
|
|
assert.Pointer(window.Remove(1)).Equals(seg2)
|
|
|
assert.Pointer(window.Remove(2)).Equals(seg3)
|
|
|
}
|
|
|
+
|
|
|
+func TestRecivingQueue(t *testing.T) {
|
|
|
+ assert := assert.On(t)
|
|
|
+
|
|
|
+ queue := NewReceivingQueue(2)
|
|
|
+ assert.Bool(queue.Put(alloc.NewSmallBuffer().Clear().AppendString("abcd"))).IsTrue()
|
|
|
+ assert.Bool(queue.Put(alloc.NewSmallBuffer().Clear().AppendString("efg"))).IsTrue()
|
|
|
+ assert.Bool(queue.Put(alloc.NewSmallBuffer().Clear().AppendString("more content"))).IsFalse()
|
|
|
+
|
|
|
+ b := make([]byte, 1024)
|
|
|
+ nBytes, err := queue.Read(b)
|
|
|
+ assert.Error(err).IsNil()
|
|
|
+ assert.Int(nBytes).Equals(7)
|
|
|
+ assert.String(string(b[:nBytes])).Equals("abcdefg")
|
|
|
+
|
|
|
+ assert.Bool(queue.Put(alloc.NewSmallBuffer().Clear().AppendString("1"))).IsTrue()
|
|
|
+ queue.Close()
|
|
|
+ nBytes, err = queue.Read(b)
|
|
|
+ assert.Error(err).Equals(io.EOF)
|
|
|
+}
|
|
|
+
|
|
|
+func TestRecivingQueueTimeout(t *testing.T) {
|
|
|
+ assert := assert.On(t)
|
|
|
+
|
|
|
+ queue := NewReceivingQueue(2)
|
|
|
+ assert.Bool(queue.Put(alloc.NewSmallBuffer().Clear().AppendString("abcd"))).IsTrue()
|
|
|
+ queue.SetReadDeadline(time.Now().Add(time.Second))
|
|
|
+
|
|
|
+ b := make([]byte, 1024)
|
|
|
+ nBytes, err := queue.Read(b)
|
|
|
+ assert.Error(err).IsNil()
|
|
|
+ assert.Int(nBytes).Equals(4)
|
|
|
+ assert.String(string(b[:nBytes])).Equals("abcd")
|
|
|
+
|
|
|
+ nBytes, err = queue.Read(b)
|
|
|
+ assert.Error(err).IsNotNil()
|
|
|
+}
|