add tests for the Client

This commit is contained in:
Marten Seemann 2016-12-05 00:58:08 +07:00
parent dde5ce465c
commit 4b112c325a
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
3 changed files with 84 additions and 4 deletions

View file

@ -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{