| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | 
							- package mux_test
 
- import (
 
- 	"testing"
 
- 	. "github.com/xtls/xray-core/common/mux"
 
- )
 
- func TestSessionManagerAdd(t *testing.T) {
 
- 	m := NewSessionManager()
 
- 	s := m.Allocate(&ClientStrategy{})
 
- 	if s.ID != 1 {
 
- 		t.Error("id: ", s.ID)
 
- 	}
 
- 	if m.Size() != 1 {
 
- 		t.Error("size: ", m.Size())
 
- 	}
 
- 	s = m.Allocate(&ClientStrategy{})
 
- 	if s.ID != 2 {
 
- 		t.Error("id: ", s.ID)
 
- 	}
 
- 	if m.Size() != 2 {
 
- 		t.Error("size: ", m.Size())
 
- 	}
 
- 	s = &Session{
 
- 		ID: 4,
 
- 	}
 
- 	m.Add(s)
 
- 	if s.ID != 4 {
 
- 		t.Error("id: ", s.ID)
 
- 	}
 
- 	if m.Size() != 3 {
 
- 		t.Error("size: ", m.Size())
 
- 	}
 
- }
 
- func TestSessionManagerClose(t *testing.T) {
 
- 	m := NewSessionManager()
 
- 	s := m.Allocate(&ClientStrategy{})
 
- 	if m.CloseIfNoSession() {
 
- 		t.Error("able to close")
 
- 	}
 
- 	m.Remove(false, s.ID)
 
- 	if !m.CloseIfNoSession() {
 
- 		t.Error("not able to close")
 
- 	}
 
- }
 
 
  |