mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
refactor how sessions are deleted
Replacing sessions with different structs representing a closed session doesn't work if a session is using multiple connection IDs.
This commit is contained in:
parent
9e6bff0b98
commit
03483d5e71
13 changed files with 165 additions and 179 deletions
|
@ -1,6 +1,9 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"runtime/pprof"
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
"github.com/golang/mock/gomock"
|
||||
|
@ -24,6 +27,21 @@ var _ = BeforeEach(func() {
|
|||
connMuxerOnce = *new(sync.Once)
|
||||
})
|
||||
|
||||
func areSessionsRunning() bool {
|
||||
var b bytes.Buffer
|
||||
pprof.Lookup("goroutine").WriteTo(&b, 1)
|
||||
return strings.Contains(b.String(), "quic-go.(*session).run")
|
||||
}
|
||||
|
||||
func areClosedSessionsRunning() bool {
|
||||
var b bytes.Buffer
|
||||
pprof.Lookup("goroutine").WriteTo(&b, 1)
|
||||
return strings.Contains(b.String(), "quic-go.(*closedLocalSession).run") ||
|
||||
strings.Contains(b.String(), "quic-go.(*closedRemoteSession).run")
|
||||
}
|
||||
|
||||
var _ = AfterEach(func() {
|
||||
mockCtrl.Finish()
|
||||
Eventually(areSessionsRunning).Should(BeFalse())
|
||||
Eventually(areClosedSessionsRunning).Should(BeFalse())
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue