mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
split the Session.Close(error) in Close() and CloseWithError(error)
This commit is contained in:
parent
2bc5b7f532
commit
8b2992a243
22 changed files with 168 additions and 105 deletions
|
@ -79,7 +79,7 @@ func init() {
|
||||||
b.RecordValue("transfer rate [MB/s]", float64(dataLen)/1e6/runtime.Seconds())
|
b.RecordValue("transfer rate [MB/s]", float64(dataLen)/1e6/runtime.Seconds())
|
||||||
|
|
||||||
ln.Close()
|
ln.Close()
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
}, samples)
|
}, samples)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
12
client.go
12
client.go
|
@ -336,8 +336,8 @@ func (c *client) establishSecureConnection(ctx context.Context) error {
|
||||||
|
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
// The session sending a PeerGoingAway error to the server.
|
// The session will send a PeerGoingAway error to the server.
|
||||||
c.session.Close(nil)
|
c.session.Close()
|
||||||
return ctx.Err()
|
return ctx.Err()
|
||||||
case err := <-errorChan:
|
case err := <-errorChan:
|
||||||
return err
|
return err
|
||||||
|
@ -366,7 +366,7 @@ func (c *client) handlePacketImpl(p *receivedPacket) error {
|
||||||
|
|
||||||
// version negotiation packets have no payload
|
// version negotiation packets have no payload
|
||||||
if err := c.handleVersionNegotiationPacket(p.header); err != nil {
|
if err := c.handleVersionNegotiationPacket(p.header); err != nil {
|
||||||
c.session.Close(err)
|
c.session.destroy(err)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -474,7 +474,7 @@ func (c *client) handleVersionNegotiationPacket(hdr *wire.Header) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
c.logger.Infof("Switching to QUIC version %s. New connection ID: %s", newVersion, c.destConnID)
|
c.logger.Infof("Switching to QUIC version %s. New connection ID: %s", newVersion, c.destConnID)
|
||||||
c.session.Close(errCloseSessionForNewVersion)
|
c.session.destroy(errCloseSessionForNewVersion)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -526,13 +526,13 @@ func (c *client) createNewTLSSession(
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *client) Close(err error) error {
|
func (c *client) Close() error {
|
||||||
c.mutex.Lock()
|
c.mutex.Lock()
|
||||||
defer c.mutex.Unlock()
|
defer c.mutex.Unlock()
|
||||||
if c.session == nil {
|
if c.session == nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return c.session.Close(err)
|
return c.session.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *client) GetVersion() protocol.VersionNumber {
|
func (c *client) GetVersion() protocol.VersionNumber {
|
||||||
|
|
|
@ -93,7 +93,7 @@ func (m *clientMultiplexer) listen(c net.PacketConn, p *connManager) {
|
||||||
n, addr, err := c.ReadFrom(data)
|
n, addr, err := c.ReadFrom(data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if !strings.HasSuffix(err.Error(), "use of closed network connection") {
|
if !strings.HasSuffix(err.Error(), "use of closed network connection") {
|
||||||
p.manager.Close(err)
|
p.manager.Close()
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,7 @@ var _ = Describe("Client Multiplexer", func() {
|
||||||
conn.dataToRead <- getPacket(connID)
|
conn.dataToRead <- getPacket(connID)
|
||||||
Eventually(handledPacket).Should(BeClosed())
|
Eventually(handledPacket).Should(BeClosed())
|
||||||
// makes the listen go routine return
|
// makes the listen go routine return
|
||||||
packetHandler.EXPECT().Close(gomock.Any()).AnyTimes()
|
packetHandler.EXPECT().Close().AnyTimes()
|
||||||
close(conn.dataToRead)
|
close(conn.dataToRead)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -85,8 +85,8 @@ var _ = Describe("Client Multiplexer", func() {
|
||||||
Eventually(handledPacket2).Should(BeClosed())
|
Eventually(handledPacket2).Should(BeClosed())
|
||||||
|
|
||||||
// makes the listen go routine return
|
// makes the listen go routine return
|
||||||
packetHandler1.EXPECT().Close(gomock.Any()).AnyTimes()
|
packetHandler1.EXPECT().Close().AnyTimes()
|
||||||
packetHandler2.EXPECT().Close(gomock.Any()).AnyTimes()
|
packetHandler2.EXPECT().Close().AnyTimes()
|
||||||
close(conn.dataToRead)
|
close(conn.dataToRead)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -114,11 +114,10 @@ var _ = Describe("Client Multiplexer", func() {
|
||||||
|
|
||||||
It("closes the packet handlers when reading from the conn fails", func() {
|
It("closes the packet handlers when reading from the conn fails", func() {
|
||||||
conn := newMockPacketConn()
|
conn := newMockPacketConn()
|
||||||
testErr := errors.New("test error")
|
conn.readErr = errors.New("test error")
|
||||||
conn.readErr = testErr
|
|
||||||
done := make(chan struct{})
|
done := make(chan struct{})
|
||||||
packetHandler := NewMockQuicSession(mockCtrl)
|
packetHandler := NewMockQuicSession(mockCtrl)
|
||||||
packetHandler.EXPECT().Close(testErr).Do(func(error) {
|
packetHandler.EXPECT().Close().Do(func() {
|
||||||
close(done)
|
close(done)
|
||||||
})
|
})
|
||||||
getClientMultiplexer().AddConn(conn, 8)
|
getClientMultiplexer().AddConn(conn, 8)
|
||||||
|
|
|
@ -86,7 +86,7 @@ var _ = Describe("Client", func() {
|
||||||
|
|
||||||
AfterEach(func() {
|
AfterEach(func() {
|
||||||
if s, ok := cl.session.(*session); ok {
|
if s, ok := cl.session.(*session); ok {
|
||||||
s.Close(nil)
|
s.Close()
|
||||||
}
|
}
|
||||||
Eventually(areSessionsRunning).Should(BeFalse())
|
Eventually(areSessionsRunning).Should(BeFalse())
|
||||||
})
|
})
|
||||||
|
@ -254,7 +254,7 @@ var _ = Describe("Client", func() {
|
||||||
close(dialed)
|
close(dialed)
|
||||||
}()
|
}()
|
||||||
Consistently(dialed).ShouldNot(BeClosed())
|
Consistently(dialed).ShouldNot(BeClosed())
|
||||||
sess.EXPECT().Close(nil)
|
sess.EXPECT().Close()
|
||||||
cancel()
|
cancel()
|
||||||
Eventually(dialed).Should(BeClosed())
|
Eventually(dialed).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
@ -493,7 +493,7 @@ var _ = Describe("Client", func() {
|
||||||
sess1 := NewMockQuicSession(mockCtrl)
|
sess1 := NewMockQuicSession(mockCtrl)
|
||||||
run1 := make(chan struct{})
|
run1 := make(chan struct{})
|
||||||
sess1.EXPECT().run().Do(func() { <-run1 }).Return(errCloseSessionForNewVersion)
|
sess1.EXPECT().run().Do(func() { <-run1 }).Return(errCloseSessionForNewVersion)
|
||||||
sess1.EXPECT().Close(errCloseSessionForNewVersion).Do(func(error) { close(run1) })
|
sess1.EXPECT().destroy(errCloseSessionForNewVersion).Do(func(error) { close(run1) })
|
||||||
sess2 := NewMockQuicSession(mockCtrl)
|
sess2 := NewMockQuicSession(mockCtrl)
|
||||||
sess2.EXPECT().run()
|
sess2.EXPECT().run()
|
||||||
sessionChan := make(chan *MockQuicSession, 2)
|
sessionChan := make(chan *MockQuicSession, 2)
|
||||||
|
@ -538,7 +538,7 @@ var _ = Describe("Client", func() {
|
||||||
sess1 := NewMockQuicSession(mockCtrl)
|
sess1 := NewMockQuicSession(mockCtrl)
|
||||||
run1 := make(chan struct{})
|
run1 := make(chan struct{})
|
||||||
sess1.EXPECT().run().Do(func() { <-run1 }).Return(errCloseSessionForNewVersion)
|
sess1.EXPECT().run().Do(func() { <-run1 }).Return(errCloseSessionForNewVersion)
|
||||||
sess1.EXPECT().Close(errCloseSessionForNewVersion).Do(func(error) { close(run1) })
|
sess1.EXPECT().destroy(errCloseSessionForNewVersion).Do(func(error) { close(run1) })
|
||||||
sess2 := NewMockQuicSession(mockCtrl)
|
sess2 := NewMockQuicSession(mockCtrl)
|
||||||
sess2.EXPECT().run()
|
sess2.EXPECT().run()
|
||||||
sessionChan := make(chan *MockQuicSession, 2)
|
sessionChan := make(chan *MockQuicSession, 2)
|
||||||
|
@ -578,7 +578,7 @@ var _ = Describe("Client", func() {
|
||||||
|
|
||||||
It("errors if no matching version is found", func() {
|
It("errors if no matching version is found", func() {
|
||||||
sess := NewMockQuicSession(mockCtrl)
|
sess := NewMockQuicSession(mockCtrl)
|
||||||
sess.EXPECT().Close(gomock.Any())
|
sess.EXPECT().destroy(qerr.InvalidVersion)
|
||||||
cl.session = sess
|
cl.session = sess
|
||||||
cl.config = &Config{Versions: protocol.SupportedVersions}
|
cl.config = &Config{Versions: protocol.SupportedVersions}
|
||||||
cl.handlePacket(composeVersionNegotiationPacket(connID, []protocol.VersionNumber{1}))
|
cl.handlePacket(composeVersionNegotiationPacket(connID, []protocol.VersionNumber{1}))
|
||||||
|
@ -586,7 +586,7 @@ var _ = Describe("Client", func() {
|
||||||
|
|
||||||
It("errors if the version is supported by quic-go, but disabled by the quic.Config", func() {
|
It("errors if the version is supported by quic-go, but disabled by the quic.Config", func() {
|
||||||
sess := NewMockQuicSession(mockCtrl)
|
sess := NewMockQuicSession(mockCtrl)
|
||||||
sess.EXPECT().Close(gomock.Any())
|
sess.EXPECT().destroy(qerr.InvalidVersion)
|
||||||
cl.session = sess
|
cl.session = sess
|
||||||
v := protocol.VersionNumber(1234)
|
v := protocol.VersionNumber(1234)
|
||||||
Expect(v).ToNot(Equal(cl.version))
|
Expect(v).ToNot(Equal(cl.version))
|
||||||
|
@ -597,7 +597,7 @@ var _ = Describe("Client", func() {
|
||||||
It("changes to the version preferred by the quic.Config", func() {
|
It("changes to the version preferred by the quic.Config", func() {
|
||||||
mockMultiplexer.EXPECT().AddHandler(gomock.Any(), gomock.Any(), gomock.Any())
|
mockMultiplexer.EXPECT().AddHandler(gomock.Any(), gomock.Any(), gomock.Any())
|
||||||
sess := NewMockQuicSession(mockCtrl)
|
sess := NewMockQuicSession(mockCtrl)
|
||||||
sess.EXPECT().Close(errCloseSessionForNewVersion)
|
sess.EXPECT().destroy(errCloseSessionForNewVersion)
|
||||||
cl.session = sess
|
cl.session = sess
|
||||||
versions := []protocol.VersionNumber{1234, 4321}
|
versions := []protocol.VersionNumber{1234, 4321}
|
||||||
cl.config = &Config{Versions: versions}
|
cl.config = &Config{Versions: versions}
|
||||||
|
|
|
@ -280,11 +280,14 @@ func (c *client) CloseWithError(e error) error {
|
||||||
if c.session == nil {
|
if c.session == nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return c.session.Close(e)
|
return c.session.CloseWithError(e)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *client) Close() error {
|
func (c *client) Close() error {
|
||||||
return c.CloseWithError(nil)
|
if c.session == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return c.session.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
// copied from net/transport.go
|
// copied from net/transport.go
|
||||||
|
|
|
@ -127,7 +127,7 @@ func (s *Server) serveImpl(tlsConfig *tls.Config, conn net.PacketConn) error {
|
||||||
func (s *Server) handleHeaderStream(session streamCreator) {
|
func (s *Server) handleHeaderStream(session streamCreator) {
|
||||||
stream, err := session.AcceptStream()
|
stream, err := session.AcceptStream()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
session.Close(qerr.Error(qerr.InvalidHeadersStreamData, err.Error()))
|
session.CloseWithError(qerr.Error(qerr.InvalidHeadersStreamData, err.Error()))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -143,7 +143,7 @@ func (s *Server) handleHeaderStream(session streamCreator) {
|
||||||
if _, ok := err.(*qerr.QuicError); !ok {
|
if _, ok := err.(*qerr.QuicError); !ok {
|
||||||
s.logger.Errorf("error handling h2 request: %s", err.Error())
|
s.logger.Errorf("error handling h2 request: %s", err.Error())
|
||||||
}
|
}
|
||||||
session.Close(err)
|
session.CloseWithError(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -246,7 +246,7 @@ func (s *Server) handleRequest(session streamCreator, headerStream quic.Stream,
|
||||||
}
|
}
|
||||||
if s.CloseAfterFirstRequest {
|
if s.CloseAfterFirstRequest {
|
||||||
time.Sleep(100 * time.Millisecond)
|
time.Sleep(100 * time.Millisecond)
|
||||||
session.Close(nil)
|
session.Close()
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
|
|
@ -61,8 +61,7 @@ func (s *mockSession) OpenStreamSync() (quic.Stream, error) {
|
||||||
}
|
}
|
||||||
return s.OpenStream()
|
return s.OpenStream()
|
||||||
}
|
}
|
||||||
func (s *mockSession) Close(e error) error {
|
func (s *mockSession) Close() error {
|
||||||
s.closedWithError = e
|
|
||||||
s.ctxCancel()
|
s.ctxCancel()
|
||||||
if !s.closed {
|
if !s.closed {
|
||||||
close(s.blockOpenStreamChan)
|
close(s.blockOpenStreamChan)
|
||||||
|
@ -70,6 +69,10 @@ func (s *mockSession) Close(e error) error {
|
||||||
s.closed = true
|
s.closed = true
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
func (s *mockSession) CloseWithError(e error) error {
|
||||||
|
s.closedWithError = e
|
||||||
|
return s.Close()
|
||||||
|
}
|
||||||
func (s *mockSession) LocalAddr() net.Addr {
|
func (s *mockSession) LocalAddr() net.Addr {
|
||||||
panic("not implemented")
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,7 +52,7 @@ var _ = Describe("Connection ID lengths tests", func() {
|
||||||
conf,
|
conf,
|
||||||
)
|
)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
defer cl.Close(nil)
|
defer cl.Close()
|
||||||
str, err := cl.AcceptStream()
|
str, err := cl.AcceptStream()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
data, err := ioutil.ReadAll(str)
|
data, err := ioutil.ReadAll(str)
|
||||||
|
|
|
@ -61,7 +61,7 @@ var _ = Describe("Handshake drop tests", func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
sess, err := ln.Accept()
|
sess, err := ln.Accept()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
defer sess.Close(nil)
|
defer sess.Close()
|
||||||
str, err := sess.AcceptStream()
|
str, err := sess.AcceptStream()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
b := make([]byte, 6)
|
b := make([]byte, 6)
|
||||||
|
@ -83,8 +83,8 @@ var _ = Describe("Handshake drop tests", func() {
|
||||||
|
|
||||||
var serverSession quic.Session
|
var serverSession quic.Session
|
||||||
Eventually(serverSessionChan, 10*time.Second).Should(Receive(&serverSession))
|
Eventually(serverSessionChan, 10*time.Second).Should(Receive(&serverSession))
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
serverSession.Close(nil)
|
serverSession.Close()
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,8 +117,8 @@ var _ = Describe("Handshake drop tests", func() {
|
||||||
|
|
||||||
var serverSession quic.Session
|
var serverSession quic.Session
|
||||||
Eventually(serverSessionChan, 10*time.Second).Should(Receive(&serverSession))
|
Eventually(serverSessionChan, 10*time.Second).Should(Receive(&serverSession))
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
serverSession.Close(nil)
|
serverSession.Close()
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,8 +141,8 @@ var _ = Describe("Handshake drop tests", func() {
|
||||||
var serverSession quic.Session
|
var serverSession quic.Session
|
||||||
Eventually(serverSessionChan, 10*time.Second).Should(Receive(&serverSession))
|
Eventually(serverSessionChan, 10*time.Second).Should(Receive(&serverSession))
|
||||||
// both server and client accepted a session. Close now.
|
// both server and client accepted a session. Close now.
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
serverSession.Close(nil)
|
serverSession.Close()
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -74,7 +74,7 @@ var _ = Describe("non-zero RTT", func() {
|
||||||
data, err := ioutil.ReadAll(str)
|
data, err := ioutil.ReadAll(str)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(data).To(Equal(testserver.PRData))
|
Expect(data).To(Equal(testserver.PRData))
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -109,7 +109,7 @@ var _ = Describe("Bidirectional streams", func() {
|
||||||
sess, err := server.Accept()
|
sess, err := server.Accept()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
runSendingPeer(sess)
|
runSendingPeer(sess)
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
client, err := quic.DialAddr(serverAddr, nil, qconf)
|
client, err := quic.DialAddr(serverAddr, nil, qconf)
|
||||||
|
|
|
@ -78,7 +78,7 @@ var _ = Describe("Unidirectional Streams", func() {
|
||||||
sess, err = server.Accept()
|
sess, err = server.Accept()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
runReceivingPeer(sess)
|
runReceivingPeer(sess)
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
client, err := quic.DialAddr(serverAddr, nil, qconf)
|
client, err := quic.DialAddr(serverAddr, nil, qconf)
|
||||||
|
|
|
@ -145,8 +145,10 @@ type Session interface {
|
||||||
LocalAddr() net.Addr
|
LocalAddr() net.Addr
|
||||||
// RemoteAddr returns the address of the peer.
|
// RemoteAddr returns the address of the peer.
|
||||||
RemoteAddr() net.Addr
|
RemoteAddr() net.Addr
|
||||||
// Close closes the connection. The error will be sent to the remote peer in a CONNECTION_CLOSE frame. An error value of nil is allowed and will cause a normal PeerGoingAway to be sent.
|
// Close the connection.
|
||||||
Close(error) error
|
io.Closer
|
||||||
|
// Close the connection with an error.
|
||||||
|
CloseWithError(error) error
|
||||||
// The context is cancelled when the session is closed.
|
// The context is cancelled when the session is closed.
|
||||||
// Warning: This API should not be considered stable and might change soon.
|
// Warning: This API should not be considered stable and might change soon.
|
||||||
Context() context.Context
|
Context() context.Context
|
||||||
|
|
|
@ -45,13 +45,15 @@ func (mr *MockPacketHandlerManagerMockRecorder) Add(arg0, arg1 interface{}) *gom
|
||||||
}
|
}
|
||||||
|
|
||||||
// Close mocks base method
|
// Close mocks base method
|
||||||
func (m *MockPacketHandlerManager) Close(arg0 error) {
|
func (m *MockPacketHandlerManager) Close() error {
|
||||||
m.ctrl.Call(m, "Close", arg0)
|
ret := m.ctrl.Call(m, "Close")
|
||||||
|
ret0, _ := ret[0].(error)
|
||||||
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// Close indicates an expected call of Close
|
// Close indicates an expected call of Close
|
||||||
func (mr *MockPacketHandlerManagerMockRecorder) Close(arg0 interface{}) *gomock.Call {
|
func (mr *MockPacketHandlerManagerMockRecorder) Close() *gomock.Call {
|
||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockPacketHandlerManager)(nil).Close), arg0)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockPacketHandlerManager)(nil).Close))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get mocks base method
|
// Get mocks base method
|
||||||
|
|
|
@ -64,15 +64,27 @@ func (mr *MockQuicSessionMockRecorder) AcceptUniStream() *gomock.Call {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Close mocks base method
|
// Close mocks base method
|
||||||
func (m *MockQuicSession) Close(arg0 error) error {
|
func (m *MockQuicSession) Close() error {
|
||||||
ret := m.ctrl.Call(m, "Close", arg0)
|
ret := m.ctrl.Call(m, "Close")
|
||||||
ret0, _ := ret[0].(error)
|
ret0, _ := ret[0].(error)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// Close indicates an expected call of Close
|
// Close indicates an expected call of Close
|
||||||
func (mr *MockQuicSessionMockRecorder) Close(arg0 interface{}) *gomock.Call {
|
func (mr *MockQuicSessionMockRecorder) Close() *gomock.Call {
|
||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockQuicSession)(nil).Close), arg0)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockQuicSession)(nil).Close))
|
||||||
|
}
|
||||||
|
|
||||||
|
// CloseWithError mocks base method
|
||||||
|
func (m *MockQuicSession) CloseWithError(arg0 error) error {
|
||||||
|
ret := m.ctrl.Call(m, "CloseWithError", arg0)
|
||||||
|
ret0, _ := ret[0].(error)
|
||||||
|
return ret0
|
||||||
|
}
|
||||||
|
|
||||||
|
// CloseWithError indicates an expected call of CloseWithError
|
||||||
|
func (mr *MockQuicSessionMockRecorder) CloseWithError(arg0 interface{}) *gomock.Call {
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CloseWithError", reflect.TypeOf((*MockQuicSession)(nil).CloseWithError), arg0)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ConnectionState mocks base method
|
// ConnectionState mocks base method
|
||||||
|
@ -197,6 +209,16 @@ func (mr *MockQuicSessionMockRecorder) closeRemote(arg0 interface{}) *gomock.Cal
|
||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "closeRemote", reflect.TypeOf((*MockQuicSession)(nil).closeRemote), arg0)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "closeRemote", reflect.TypeOf((*MockQuicSession)(nil).closeRemote), arg0)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// destroy mocks base method
|
||||||
|
func (m *MockQuicSession) destroy(arg0 error) {
|
||||||
|
m.ctrl.Call(m, "destroy", arg0)
|
||||||
|
}
|
||||||
|
|
||||||
|
// destroy indicates an expected call of destroy
|
||||||
|
func (mr *MockQuicSessionMockRecorder) destroy(arg0 interface{}) *gomock.Call {
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "destroy", reflect.TypeOf((*MockQuicSession)(nil).destroy), arg0)
|
||||||
|
}
|
||||||
|
|
||||||
// getCryptoStream mocks base method
|
// getCryptoStream mocks base method
|
||||||
func (m *MockQuicSession) getCryptoStream() cryptoStreamI {
|
func (m *MockQuicSession) getCryptoStream() cryptoStreamI {
|
||||||
ret := m.ctrl.Call(m, "getCryptoStream")
|
ret := m.ctrl.Call(m, "getCryptoStream")
|
||||||
|
|
|
@ -54,11 +54,11 @@ func (h *packetHandlerMap) Remove(id protocol.ConnectionID) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *packetHandlerMap) Close(err error) {
|
func (h *packetHandlerMap) Close() error {
|
||||||
h.mutex.Lock()
|
h.mutex.Lock()
|
||||||
if h.closed {
|
if h.closed {
|
||||||
h.mutex.Unlock()
|
h.mutex.Unlock()
|
||||||
return
|
return nil
|
||||||
}
|
}
|
||||||
h.closed = true
|
h.closed = true
|
||||||
|
|
||||||
|
@ -68,11 +68,12 @@ func (h *packetHandlerMap) Close(err error) {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
go func(handler packetHandler) {
|
go func(handler packetHandler) {
|
||||||
// session.Close() blocks until the CONNECTION_CLOSE has been sent and the run-loop has stopped
|
// session.Close() blocks until the CONNECTION_CLOSE has been sent and the run-loop has stopped
|
||||||
_ = handler.Close(err)
|
_ = handler.Close()
|
||||||
wg.Done()
|
wg.Done()
|
||||||
}(handler)
|
}(handler)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
h.mutex.Unlock()
|
h.mutex.Unlock()
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
package quic
|
package quic
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||||
|
@ -46,13 +45,12 @@ var _ = Describe("Packet Handler Map", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
It("closes", func() {
|
It("closes", func() {
|
||||||
testErr := errors.New("test error")
|
|
||||||
sess1 := NewMockQuicSession(mockCtrl)
|
sess1 := NewMockQuicSession(mockCtrl)
|
||||||
sess1.EXPECT().Close(testErr)
|
sess1.EXPECT().Close()
|
||||||
sess2 := NewMockQuicSession(mockCtrl)
|
sess2 := NewMockQuicSession(mockCtrl)
|
||||||
sess2.EXPECT().Close(testErr)
|
sess2.EXPECT().Close()
|
||||||
handler.Add(protocol.ConnectionID{1, 1, 1, 1}, sess1)
|
handler.Add(protocol.ConnectionID{1, 1, 1, 1}, sess1)
|
||||||
handler.Add(protocol.ConnectionID{2, 2, 2, 2}, sess2)
|
handler.Add(protocol.ConnectionID{2, 2, 2, 2}, sess2)
|
||||||
handler.Close(testErr)
|
handler.Close()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -19,15 +20,15 @@ import (
|
||||||
// packetHandler handles packets
|
// packetHandler handles packets
|
||||||
type packetHandler interface {
|
type packetHandler interface {
|
||||||
handlePacket(*receivedPacket)
|
handlePacket(*receivedPacket)
|
||||||
Close(error) error
|
|
||||||
GetVersion() protocol.VersionNumber
|
GetVersion() protocol.VersionNumber
|
||||||
|
io.Closer
|
||||||
}
|
}
|
||||||
|
|
||||||
type packetHandlerManager interface {
|
type packetHandlerManager interface {
|
||||||
Add(protocol.ConnectionID, packetHandler)
|
Add(protocol.ConnectionID, packetHandler)
|
||||||
Get(protocol.ConnectionID) (packetHandler, bool)
|
Get(protocol.ConnectionID) (packetHandler, bool)
|
||||||
Remove(protocol.ConnectionID)
|
Remove(protocol.ConnectionID)
|
||||||
Close(error)
|
io.Closer
|
||||||
}
|
}
|
||||||
|
|
||||||
type quicSession interface {
|
type quicSession interface {
|
||||||
|
@ -36,6 +37,7 @@ type quicSession interface {
|
||||||
getCryptoStream() cryptoStreamI
|
getCryptoStream() cryptoStreamI
|
||||||
GetVersion() protocol.VersionNumber
|
GetVersion() protocol.VersionNumber
|
||||||
run() error
|
run() error
|
||||||
|
destroy(error)
|
||||||
closeRemote(error)
|
closeRemote(error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -294,7 +296,7 @@ func (s *server) Accept() (Session, error) {
|
||||||
|
|
||||||
// Close the server
|
// Close the server
|
||||||
func (s *server) Close() error {
|
func (s *server) Close() error {
|
||||||
s.sessionHandler.Close(nil)
|
s.sessionHandler.Close()
|
||||||
err := s.conn.Close()
|
err := s.conn.Close()
|
||||||
<-s.errorChan // wait for serve() to return
|
<-s.errorChan // wait for serve() to return
|
||||||
return err
|
return err
|
||||||
|
|
|
@ -220,7 +220,7 @@ var _ = Describe("Server", func() {
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Consistently(done).ShouldNot(BeClosed())
|
Consistently(done).ShouldNot(BeClosed())
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionHandler.EXPECT().Close(nil)
|
sessionHandler.EXPECT().Close()
|
||||||
close(serv.errorChan)
|
close(serv.errorChan)
|
||||||
serv.Close()
|
serv.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
|
@ -242,7 +242,7 @@ var _ = Describe("Server", func() {
|
||||||
serv.serve()
|
serv.serve()
|
||||||
}()
|
}()
|
||||||
// close the server
|
// close the server
|
||||||
sessionHandler.EXPECT().Close(nil).AnyTimes()
|
sessionHandler.EXPECT().Close().AnyTimes()
|
||||||
Expect(serv.Close()).To(Succeed())
|
Expect(serv.Close()).To(Succeed())
|
||||||
Expect(conn.closed).To(BeTrue())
|
Expect(conn.closed).To(BeTrue())
|
||||||
})
|
})
|
||||||
|
@ -279,7 +279,7 @@ var _ = Describe("Server", func() {
|
||||||
It("errors when encountering a connection error", func() {
|
It("errors when encountering a connection error", func() {
|
||||||
testErr := errors.New("connection error")
|
testErr := errors.New("connection error")
|
||||||
conn.readErr = testErr
|
conn.readErr = testErr
|
||||||
sessionHandler.EXPECT().Close(nil)
|
sessionHandler.EXPECT().Close()
|
||||||
done := make(chan struct{})
|
done := make(chan struct{})
|
||||||
go func() {
|
go func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
|
|
33
session.go
33
session.go
|
@ -67,8 +67,9 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
type closeError struct {
|
type closeError struct {
|
||||||
err error
|
err error
|
||||||
remote bool
|
remote bool
|
||||||
|
sendClose bool
|
||||||
}
|
}
|
||||||
|
|
||||||
// A Session is a QUIC session
|
// A Session is a QUIC session
|
||||||
|
@ -441,7 +442,11 @@ func (s *session) run() error {
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
if err := s.cryptoStreamHandler.HandleCryptoStream(); err != nil {
|
if err := s.cryptoStreamHandler.HandleCryptoStream(); err != nil {
|
||||||
s.Close(err)
|
if err == handshake.ErrCloseSessionForRetry {
|
||||||
|
s.destroy(err)
|
||||||
|
} else {
|
||||||
|
s.closeLocal(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
@ -825,9 +830,17 @@ func (s *session) handleAckFrame(frame *wire.AckFrame, encLevel protocol.Encrypt
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// closeLocal closes the session and send a CONNECTION_CLOSE containing the error
|
||||||
func (s *session) closeLocal(e error) {
|
func (s *session) closeLocal(e error) {
|
||||||
s.closeOnce.Do(func() {
|
s.closeOnce.Do(func() {
|
||||||
s.closeChan <- closeError{err: e, remote: false}
|
s.closeChan <- closeError{err: e, sendClose: true, remote: false}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// destroy closes the session without sending the error on the wire
|
||||||
|
func (s *session) destroy(e error) {
|
||||||
|
s.closeOnce.Do(func() {
|
||||||
|
s.closeChan <- closeError{err: e, sendClose: false, remote: false}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -837,9 +850,13 @@ func (s *session) closeRemote(e error) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Close the connection. If err is nil it will be set to qerr.PeerGoingAway.
|
// Close the connection. It sends a qerr.PeerGoingAway.
|
||||||
// It waits until the run loop has stopped before returning
|
// It waits until the run loop has stopped before returning
|
||||||
func (s *session) Close(e error) error {
|
func (s *session) Close() error {
|
||||||
|
return s.CloseWithError(nil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *session) CloseWithError(e error) error {
|
||||||
s.closeLocal(e)
|
s.closeLocal(e)
|
||||||
<-s.ctx.Done()
|
<-s.ctx.Done()
|
||||||
return nil
|
return nil
|
||||||
|
@ -865,7 +882,7 @@ func (s *session) handleCloseError(closeErr closeError) error {
|
||||||
s.cryptoStream.closeForShutdown(quicErr)
|
s.cryptoStream.closeForShutdown(quicErr)
|
||||||
s.streamsMap.CloseWithError(quicErr)
|
s.streamsMap.CloseWithError(quicErr)
|
||||||
|
|
||||||
if closeErr.err == errCloseSessionForNewVersion || closeErr.err == handshake.ErrCloseSessionForRetry {
|
if !closeErr.sendClose {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1243,7 +1260,7 @@ func (s *session) onHasStreamData(id protocol.StreamID) {
|
||||||
|
|
||||||
func (s *session) onStreamCompleted(id protocol.StreamID) {
|
func (s *session) onStreamCompleted(id protocol.StreamID) {
|
||||||
if err := s.streamsMap.DeleteStream(id); err != nil {
|
if err := s.streamsMap.DeleteStream(id); err != nil {
|
||||||
s.Close(err)
|
s.closeLocal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -513,7 +513,7 @@ var _ = Describe("Session", func() {
|
||||||
It("shuts down without error", func() {
|
It("shuts down without error", func() {
|
||||||
streamManager.EXPECT().CloseWithError(qerr.Error(qerr.PeerGoingAway, ""))
|
streamManager.EXPECT().CloseWithError(qerr.Error(qerr.PeerGoingAway, ""))
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(areSessionsRunning).Should(BeFalse())
|
Eventually(areSessionsRunning).Should(BeFalse())
|
||||||
Expect(mconn.written).To(HaveLen(1))
|
Expect(mconn.written).To(HaveLen(1))
|
||||||
buf := &bytes.Buffer{}
|
buf := &bytes.Buffer{}
|
||||||
|
@ -526,8 +526,8 @@ var _ = Describe("Session", func() {
|
||||||
It("only closes once", func() {
|
It("only closes once", func() {
|
||||||
streamManager.EXPECT().CloseWithError(qerr.Error(qerr.PeerGoingAway, ""))
|
streamManager.EXPECT().CloseWithError(qerr.Error(qerr.PeerGoingAway, ""))
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(areSessionsRunning).Should(BeFalse())
|
Eventually(areSessionsRunning).Should(BeFalse())
|
||||||
Expect(mconn.written).To(HaveLen(1))
|
Expect(mconn.written).To(HaveLen(1))
|
||||||
Expect(sess.Context().Done()).To(BeClosed())
|
Expect(sess.Context().Done()).To(BeClosed())
|
||||||
|
@ -537,7 +537,7 @@ var _ = Describe("Session", func() {
|
||||||
testErr := errors.New("test error")
|
testErr := errors.New("test error")
|
||||||
streamManager.EXPECT().CloseWithError(qerr.Error(qerr.InternalError, testErr.Error()))
|
streamManager.EXPECT().CloseWithError(qerr.Error(qerr.InternalError, testErr.Error()))
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(testErr)
|
sess.CloseWithError(testErr)
|
||||||
Eventually(areSessionsRunning).Should(BeFalse())
|
Eventually(areSessionsRunning).Should(BeFalse())
|
||||||
Expect(sess.Context().Done()).To(BeClosed())
|
Expect(sess.Context().Done()).To(BeClosed())
|
||||||
})
|
})
|
||||||
|
@ -545,7 +545,7 @@ var _ = Describe("Session", func() {
|
||||||
It("closes the session in order to replace it with another QUIC version", func() {
|
It("closes the session in order to replace it with another QUIC version", func() {
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(errCloseSessionForNewVersion)
|
sess.destroy(errCloseSessionForNewVersion)
|
||||||
Eventually(areSessionsRunning).Should(BeFalse())
|
Eventually(areSessionsRunning).Should(BeFalse())
|
||||||
Expect(mconn.written).To(BeEmpty()) // no CONNECTION_CLOSE or PUBLIC_RESET sent
|
Expect(mconn.written).To(BeEmpty()) // no CONNECTION_CLOSE or PUBLIC_RESET sent
|
||||||
})
|
})
|
||||||
|
@ -553,8 +553,8 @@ var _ = Describe("Session", func() {
|
||||||
It("sends a Public Reset if the client is initiating the no STOP_WAITING experiment", func() {
|
It("sends a Public Reset if the client is initiating the no STOP_WAITING experiment", func() {
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(handshake.ErrNSTPExperiment)
|
sess.closeLocal(handshake.ErrNSTPExperiment)
|
||||||
Expect(mconn.written).To(HaveLen(1))
|
Eventually(mconn.written).Should(HaveLen(1))
|
||||||
Expect((<-mconn.written)[0] & 0x02).ToNot(BeZero()) // Public Reset
|
Expect((<-mconn.written)[0] & 0x02).ToNot(BeZero()) // Public Reset
|
||||||
Expect(sess.Context().Done()).To(BeClosed())
|
Expect(sess.Context().Done()).To(BeClosed())
|
||||||
})
|
})
|
||||||
|
@ -571,7 +571,7 @@ var _ = Describe("Session", func() {
|
||||||
close(returned)
|
close(returned)
|
||||||
}()
|
}()
|
||||||
Consistently(returned).ShouldNot(BeClosed())
|
Consistently(returned).ShouldNot(BeClosed())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(returned).Should(BeClosed())
|
Eventually(returned).Should(BeClosed())
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -911,7 +911,7 @@ var _ = Describe("Session", func() {
|
||||||
Consistently(mconn.written).Should(HaveLen(2))
|
Consistently(mconn.written).Should(HaveLen(2))
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -935,7 +935,7 @@ var _ = Describe("Session", func() {
|
||||||
Consistently(mconn.written).Should(HaveLen(1))
|
Consistently(mconn.written).Should(HaveLen(1))
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -963,7 +963,7 @@ var _ = Describe("Session", func() {
|
||||||
Eventually(mconn.written, 2*pacingDelay).Should(HaveLen(2))
|
Eventually(mconn.written, 2*pacingDelay).Should(HaveLen(2))
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -986,7 +986,7 @@ var _ = Describe("Session", func() {
|
||||||
Eventually(mconn.written).Should(HaveLen(3))
|
Eventually(mconn.written).Should(HaveLen(3))
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1007,7 +1007,7 @@ var _ = Describe("Session", func() {
|
||||||
Consistently(mconn.written).ShouldNot(Receive())
|
Consistently(mconn.written).ShouldNot(Receive())
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -1050,7 +1050,7 @@ var _ = Describe("Session", func() {
|
||||||
// make sure that the go routine returns
|
// make sure that the go routine returns
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1081,7 +1081,7 @@ var _ = Describe("Session", func() {
|
||||||
// make sure that the go routine returns
|
// make sure that the go routine returns
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -1252,7 +1252,7 @@ var _ = Describe("Session", func() {
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1283,7 +1283,7 @@ var _ = Describe("Session", func() {
|
||||||
// make sure the go routine returns
|
// make sure the go routine returns
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -1335,7 +1335,7 @@ var _ = Describe("Session", func() {
|
||||||
Consistently(mconn.written).Should(HaveLen(0))
|
Consistently(mconn.written).Should(HaveLen(0))
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1348,7 +1348,7 @@ var _ = Describe("Session", func() {
|
||||||
Eventually(func() time.Time { return sess.receivedTooManyUndecrytablePacketsTime }).Should(BeTemporally("~", time.Now(), 20*time.Millisecond))
|
Eventually(func() time.Time { return sess.receivedTooManyUndecrytablePacketsTime }).Should(BeTemporally("~", time.Now(), 20*time.Millisecond))
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1363,7 +1363,7 @@ var _ = Describe("Session", func() {
|
||||||
Expect(sess.undecryptablePackets[0].header.PacketNumber).To(Equal(protocol.PacketNumber(1)))
|
Expect(sess.undecryptablePackets[0].header.PacketNumber).To(Equal(protocol.PacketNumber(1)))
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
Expect(sess.Close(nil)).To(Succeed())
|
Expect(sess.Close()).To(Succeed())
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1398,7 +1398,7 @@ var _ = Describe("Session", func() {
|
||||||
Expect(sess.Context().Done()).ToNot(Receive())
|
Expect(sess.Context().Done()).ToNot(Receive())
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1412,7 +1412,7 @@ var _ = Describe("Session", func() {
|
||||||
Consistently(sess.undecryptablePackets).Should(BeEmpty())
|
Consistently(sess.undecryptablePackets).Should(BeEmpty())
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
Expect(sess.Close(nil)).To(Succeed())
|
Expect(sess.Close()).To(Succeed())
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1437,7 +1437,7 @@ var _ = Describe("Session", func() {
|
||||||
// make sure the go routine returns
|
// make sure the go routine returns
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
Expect(sess.Close(nil)).To(Succeed())
|
Expect(sess.Close()).To(Succeed())
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1452,10 +1452,24 @@ var _ = Describe("Session", func() {
|
||||||
// make sure the go routine returns
|
// make sure the go routine returns
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
Expect(sess.Close(nil)).To(Succeed())
|
Expect(sess.Close()).To(Succeed())
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("doesn't return a run error when closing", func() {
|
||||||
|
done := make(chan struct{})
|
||||||
|
go func() {
|
||||||
|
defer GinkgoRecover()
|
||||||
|
err := sess.run()
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
close(done)
|
||||||
|
}()
|
||||||
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
|
Expect(sess.Close()).To(Succeed())
|
||||||
|
Eventually(done).Should(BeClosed())
|
||||||
|
})
|
||||||
|
|
||||||
It("passes errors to the session runner", func() {
|
It("passes errors to the session runner", func() {
|
||||||
testErr := errors.New("handshake error")
|
testErr := errors.New("handshake error")
|
||||||
done := make(chan struct{})
|
done := make(chan struct{})
|
||||||
|
@ -1467,7 +1481,7 @@ var _ = Describe("Session", func() {
|
||||||
}()
|
}()
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(testErr)
|
Expect(sess.CloseWithError(testErr)).To(Succeed())
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1494,7 +1508,7 @@ var _ = Describe("Session", func() {
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1525,7 +1539,7 @@ var _ = Describe("Session", func() {
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1543,7 +1557,7 @@ var _ = Describe("Session", func() {
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1561,7 +1575,7 @@ var _ = Describe("Session", func() {
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
streamManager.EXPECT().CloseWithError(gomock.Any())
|
streamManager.EXPECT().CloseWithError(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -1602,7 +1616,7 @@ var _ = Describe("Session", func() {
|
||||||
|
|
||||||
It("does not use the idle timeout before the handshake complete", func() {
|
It("does not use the idle timeout before the handshake complete", func() {
|
||||||
sess.config.IdleTimeout = 9999 * time.Second
|
sess.config.IdleTimeout = 9999 * time.Second
|
||||||
defer sess.Close(nil)
|
defer sess.Close()
|
||||||
sess.lastNetworkActivityTime = time.Now().Add(-time.Minute)
|
sess.lastNetworkActivityTime = time.Now().Add(-time.Minute)
|
||||||
// the handshake timeout is irrelevant here, since it depends on the time the session was created,
|
// the handshake timeout is irrelevant here, since it depends on the time the session was created,
|
||||||
// and not on the last network activity
|
// and not on the last network activity
|
||||||
|
@ -1613,7 +1627,7 @@ var _ = Describe("Session", func() {
|
||||||
Consistently(sess.Context().Done()).ShouldNot(BeClosed())
|
Consistently(sess.Context().Done()).ShouldNot(BeClosed())
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
sess.Close(nil)
|
sess.Close()
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1793,7 +1807,7 @@ var _ = Describe("Client Session", func() {
|
||||||
Eventually(mconn.written).Should(Receive())
|
Eventually(mconn.written).Should(Receive())
|
||||||
//make sure the go routine returns
|
//make sure the go routine returns
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
Expect(sess.Close(nil)).To(Succeed())
|
Expect(sess.Close()).To(Succeed())
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1828,7 +1842,7 @@ var _ = Describe("Client Session", func() {
|
||||||
Expect(hdr.DestConnectionID).To(Equal(protocol.ConnectionID{1, 3, 3, 7, 1, 3, 3, 7}))
|
Expect(hdr.DestConnectionID).To(Equal(protocol.ConnectionID{1, 3, 3, 7, 1, 3, 3, 7}))
|
||||||
// make sure the go routine returns
|
// make sure the go routine returns
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
Expect(sess.Close(nil)).To(Succeed())
|
Expect(sess.Close()).To(Succeed())
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1856,7 +1870,7 @@ var _ = Describe("Client Session", func() {
|
||||||
Expect(cryptoSetup.divNonce).To(Equal(hdr.DiversificationNonce))
|
Expect(cryptoSetup.divNonce).To(Equal(hdr.DiversificationNonce))
|
||||||
// make the go routine return
|
// make the go routine return
|
||||||
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
sessionRunner.EXPECT().removeConnectionID(gomock.Any())
|
||||||
Expect(sess.Close(nil)).To(Succeed())
|
Expect(sess.Close()).To(Succeed())
|
||||||
Eventually(sess.Context().Done()).Should(BeClosed())
|
Eventually(sess.Context().Done()).Should(BeClosed())
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue