1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/app/proxyman/mux/session_test.go
2017-10-24 16:15:35 +02:00

40 lines
637 B
Go

package mux_test
import (
"testing"
. "v2ray.com/core/app/proxyman/mux"
. "v2ray.com/ext/assert"
)
func TestSessionManagerAdd(t *testing.T) {
assert := With(t)
m := NewSessionManager()
s := m.Allocate()
assert(s.ID, Equals, uint16(1))
assert(m.Size(), Equals, 1)
s = m.Allocate()
assert(s.ID, Equals, uint16(2))
assert(m.Size(), Equals, 2)
s = &Session{
ID: 4,
}
m.Add(s)
assert(s.ID, Equals, uint16(4))
}
func TestSessionManagerClose(t *testing.T) {
assert := With(t)
m := NewSessionManager()
s := m.Allocate()
assert(m.CloseIfNoSession(), IsFalse)
m.Remove(s.ID)
assert(m.CloseIfNoSession(), IsTrue)
}