mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
implement replacing with a closed session for all active connection IDs
This commit is contained in:
parent
f948165824
commit
5d0d0d0679
2 changed files with 35 additions and 9 deletions
|
@ -10,20 +10,23 @@ import (
|
|||
|
||||
var _ = Describe("Connection ID Generator", func() {
|
||||
var (
|
||||
addedConnIDs []protocol.ConnectionID
|
||||
retiredConnIDs []protocol.ConnectionID
|
||||
removedConnIDs []protocol.ConnectionID
|
||||
queuedFrames []wire.Frame
|
||||
g *connIDGenerator
|
||||
addedConnIDs []protocol.ConnectionID
|
||||
retiredConnIDs []protocol.ConnectionID
|
||||
removedConnIDs []protocol.ConnectionID
|
||||
replacedWithClosed map[string]packetHandler
|
||||
queuedFrames []wire.Frame
|
||||
g *connIDGenerator
|
||||
)
|
||||
initialConnID := protocol.ConnectionID{1, 2, 3, 4, 5, 6, 7}
|
||||
|
||||
BeforeEach(func() {
|
||||
addedConnIDs = nil
|
||||
retiredConnIDs = nil
|
||||
removedConnIDs = nil
|
||||
queuedFrames = nil
|
||||
replacedWithClosed = make(map[string]packetHandler)
|
||||
g = newConnIDGenerator(
|
||||
protocol.ConnectionID{1, 2, 3, 4, 5, 6, 7},
|
||||
initialConnID,
|
||||
func(c protocol.ConnectionID) [16]byte {
|
||||
addedConnIDs = append(addedConnIDs, c)
|
||||
l := uint8(len(addedConnIDs))
|
||||
|
@ -31,6 +34,7 @@ var _ = Describe("Connection ID Generator", func() {
|
|||
},
|
||||
func(c protocol.ConnectionID) { removedConnIDs = append(removedConnIDs, c) },
|
||||
func(c protocol.ConnectionID) { retiredConnIDs = append(retiredConnIDs, c) },
|
||||
func(c protocol.ConnectionID, h packetHandler) { replacedWithClosed[string(c)] = h },
|
||||
func(f wire.Frame) { queuedFrames = append(queuedFrames, f) },
|
||||
)
|
||||
})
|
||||
|
@ -81,7 +85,7 @@ var _ = Describe("Connection ID Generator", func() {
|
|||
Expect(g.Retire(0)).To(Succeed())
|
||||
Expect(removedConnIDs).To(BeEmpty())
|
||||
Expect(retiredConnIDs).To(HaveLen(1))
|
||||
Expect(retiredConnIDs[0]).To(Equal(protocol.ConnectionID{1, 2, 3, 4, 5, 6, 7}))
|
||||
Expect(retiredConnIDs[0]).To(Equal(initialConnID))
|
||||
Expect(addedConnIDs).To(BeEmpty())
|
||||
})
|
||||
|
||||
|
@ -101,11 +105,24 @@ var _ = Describe("Connection ID Generator", func() {
|
|||
Expect(g.SetMaxActiveConnIDs(5)).To(Succeed())
|
||||
Expect(queuedFrames).To(HaveLen(5))
|
||||
g.RemoveAll()
|
||||
Expect(removedConnIDs).To(HaveLen(6)) // initial connection ID and newly issued ones
|
||||
Expect(removedConnIDs).To(ContainElement(protocol.ConnectionID{1, 2, 3, 4, 5, 6, 7})) // initial connection ID
|
||||
Expect(removedConnIDs).To(HaveLen(6)) // initial connection ID and newly issued ones
|
||||
Expect(removedConnIDs).To(ContainElement(initialConnID))
|
||||
for _, f := range queuedFrames {
|
||||
nf := f.(*wire.NewConnectionIDFrame)
|
||||
Expect(removedConnIDs).To(ContainElement(nf.ConnectionID))
|
||||
}
|
||||
})
|
||||
|
||||
It("replaces with a closed session for all connection IDs", func() {
|
||||
Expect(g.SetMaxActiveConnIDs(5)).To(Succeed())
|
||||
Expect(queuedFrames).To(HaveLen(5))
|
||||
sess := NewMockPacketHandler(mockCtrl)
|
||||
g.ReplaceWithClosed(sess)
|
||||
Expect(replacedWithClosed).To(HaveLen(6)) // initial connection ID and newly issued ones
|
||||
Expect(replacedWithClosed).To(HaveKeyWithValue(string(initialConnID), sess))
|
||||
for _, f := range queuedFrames {
|
||||
nf := f.(*wire.NewConnectionIDFrame)
|
||||
Expect(replacedWithClosed).To(HaveKeyWithValue(string(nf.ConnectionID), sess))
|
||||
}
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue