1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-09 06:44:30 -04:00
v2fly/transport/internet/kcp/receiving_test.go

57 lines
1.3 KiB
Go
Raw Normal View History

2016-06-25 15:35:18 -04:00
package kcp_test
import (
"testing"
2016-07-02 17:37:51 -04:00
"github.com/v2ray/v2ray-core/common/alloc"
2016-06-25 15:35:18 -04:00
"github.com/v2ray/v2ray-core/testing/assert"
. "github.com/v2ray/v2ray-core/transport/internet/kcp"
)
func TestRecivingWindow(t *testing.T) {
assert := assert.On(t)
window := NewReceivingWindow(3)
2016-06-29 04:34:34 -04:00
seg0 := &DataSegment{}
seg1 := &DataSegment{}
seg2 := &DataSegment{}
seg3 := &DataSegment{}
2016-06-25 15:35:18 -04:00
assert.Bool(window.Set(0, seg0)).IsTrue()
assert.Pointer(window.RemoveFirst()).Equals(seg0)
2016-06-27 03:03:05 -04:00
e := window.RemoveFirst()
if e != nil {
assert.Fail("Expecting nil.")
}
2016-06-25 15:35:18 -04:00
assert.Bool(window.Set(1, seg1)).IsTrue()
assert.Bool(window.Set(2, seg2)).IsTrue()
window.Advance()
assert.Bool(window.Set(2, seg3)).IsTrue()
assert.Pointer(window.RemoveFirst()).Equals(seg1)
assert.Pointer(window.Remove(1)).Equals(seg2)
assert.Pointer(window.Remove(2)).Equals(seg3)
}
2016-07-02 17:37:51 -04:00
func TestRecivingQueue(t *testing.T) {
assert := assert.On(t)
queue := NewReceivingQueue(2)
2016-07-06 11:34:38 -04:00
queue.Put(alloc.NewSmallBuffer().Clear().AppendString("abcd"))
queue.Put(alloc.NewSmallBuffer().Clear().AppendString("efg"))
assert.Bool(queue.IsFull()).IsTrue()
2016-07-02 17:37:51 -04:00
b := make([]byte, 1024)
2016-07-06 11:34:38 -04:00
nBytes := queue.Read(b)
2016-07-02 17:37:51 -04:00
assert.Int(nBytes).Equals(7)
assert.String(string(b[:nBytes])).Equals("abcdefg")
2016-07-06 11:34:38 -04:00
queue.Put(alloc.NewSmallBuffer().Clear().AppendString("1"))
2016-07-02 17:37:51 -04:00
queue.Close()
2016-07-06 11:34:38 -04:00
nBytes = queue.Read(b)
assert.Int(nBytes).Equals(0)
2016-07-02 17:37:51 -04:00
}