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

54 lines
1.1 KiB
Go
Raw Normal View History

2016-06-25 15:35:18 -04:00
package kcp_test
import (
"testing"
"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)
seg0 := &Segment{}
seg1 := &Segment{}
seg2 := &Segment{}
seg3 := &Segment{}
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-06-27 16:34:46 -04:00
func TestACKList(t *testing.T) {
assert := assert.On(t)
ackList := new(ACKList)
ackList.Add(1, 2)
ackList.Add(3, 4)
seg := ackList.AsSegment()
assert.Byte(seg.Count).Equals(2)
ackList.Add(1, 3)
ackList.Clear(2)
seg = ackList.AsSegment()
assert.Byte(seg.Count).Equals(1)
}