mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add tests for the Client
This commit is contained in:
parent
dde5ce465c
commit
4b112c325a
3 changed files with 84 additions and 4 deletions
|
@ -20,14 +20,19 @@ type mockSession struct {
|
|||
connectionID protocol.ConnectionID
|
||||
packetCount int
|
||||
closed bool
|
||||
closeReason error
|
||||
}
|
||||
|
||||
func (s *mockSession) handlePacket(*receivedPacket) {
|
||||
s.packetCount++
|
||||
}
|
||||
|
||||
func (s *mockSession) run() {}
|
||||
func (s *mockSession) Close(error) error { s.closed = true; return nil }
|
||||
func (s *mockSession) run() {}
|
||||
func (s *mockSession) Close(e error) error {
|
||||
s.closed = true
|
||||
s.closeReason = e
|
||||
return nil
|
||||
}
|
||||
|
||||
func newMockSession(conn connection, v protocol.VersionNumber, connectionID protocol.ConnectionID, sCfg *handshake.ServerConfig, streamCallback StreamCallback, closeCallback closeCallback) (packetHandler, error) {
|
||||
return &mockSession{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue