1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 11:34:32 -04:00
v2fly/app/proxyman/mux/session_test.go

38 lines
602 B
Go
Raw Normal View History

package mux_test
import (
"testing"
. "v2ray.com/core/app/proxyman/mux"
"v2ray.com/core/testing/assert"
)
func TestSessionManagerAdd(t *testing.T) {
assert := assert.On(t)
m := NewSessionManager()
2017-04-13 14:14:07 -04:00
s := m.Allocate()
assert.Uint16(s.ID).Equals(1)
2017-04-13 14:14:07 -04:00
s = m.Allocate()
assert.Uint16(s.ID).Equals(2)
s = &Session{
ID: 4,
}
m.Add(s)
assert.Uint16(s.ID).Equals(4)
}
2017-04-19 06:36:04 -04:00
func TestSessionManagerClose(t *testing.T) {
assert := assert.On(t)
m := NewSessionManager()
s := m.Allocate()
assert.Bool(m.CloseIfNoSession()).IsFalse()
m.Remove(s.ID)
assert.Bool(m.CloseIfNoSession()).IsTrue()
}