mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
162 lines
5.8 KiB
Go
162 lines
5.8 KiB
Go
package quic
|
|
|
|
import (
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
"github.com/lucas-clemente/quic-go/internal/wire"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Connection ID Manager", func() {
|
|
var (
|
|
m *connIDManager
|
|
frameQueue []wire.Frame
|
|
tokenAdded *[16]byte
|
|
retiredTokens [][16]byte
|
|
)
|
|
initialConnID := protocol.ConnectionID{1, 1, 1, 1}
|
|
|
|
BeforeEach(func() {
|
|
frameQueue = nil
|
|
tokenAdded = nil
|
|
retiredTokens = nil
|
|
m = newConnIDManager(
|
|
initialConnID,
|
|
func(token [16]byte) { tokenAdded = &token },
|
|
func(token [16]byte) { retiredTokens = append(retiredTokens, token) },
|
|
func(f wire.Frame,
|
|
) {
|
|
frameQueue = append(frameQueue, f)
|
|
})
|
|
})
|
|
|
|
get := func() (protocol.ConnectionID, *[16]byte) {
|
|
if m.queue.Len() == 0 {
|
|
return nil, nil
|
|
}
|
|
val := m.queue.Remove(m.queue.Front())
|
|
return val.ConnectionID, val.StatelessResetToken
|
|
}
|
|
|
|
It("returns the initial connection ID", func() {
|
|
Expect(m.Get()).To(Equal(initialConnID))
|
|
})
|
|
|
|
It("changes the initial connection ID", func() {
|
|
m.ChangeInitialConnID(protocol.ConnectionID{1, 2, 3, 4, 5})
|
|
Expect(m.Get()).To(Equal(protocol.ConnectionID{1, 2, 3, 4, 5}))
|
|
})
|
|
|
|
It("sets the token for the first connection ID", func() {
|
|
token := [16]byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}
|
|
m.SetStatelessResetToken(token)
|
|
Expect(*m.activeStatelessResetToken).To(Equal(token))
|
|
Expect(*tokenAdded).To(Equal(token))
|
|
})
|
|
|
|
It("adds and gets connection IDs", func() {
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
SequenceNumber: 10,
|
|
ConnectionID: protocol.ConnectionID{2, 3, 4, 5},
|
|
StatelessResetToken: [16]byte{0xe, 0xd, 0xc, 0xb, 0xa, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0},
|
|
})).To(Succeed())
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
SequenceNumber: 4,
|
|
ConnectionID: protocol.ConnectionID{1, 2, 3, 4},
|
|
StatelessResetToken: [16]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0xa, 0xb, 0xc, 0xd, 0xe},
|
|
})).To(Succeed())
|
|
c1, rt1 := get()
|
|
Expect(c1).To(Equal(protocol.ConnectionID{1, 2, 3, 4}))
|
|
Expect(*rt1).To(Equal([16]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0xa, 0xb, 0xc, 0xd, 0xe}))
|
|
c2, rt2 := get()
|
|
Expect(c2).To(Equal(protocol.ConnectionID{2, 3, 4, 5}))
|
|
Expect(*rt2).To(Equal([16]byte{0xe, 0xd, 0xc, 0xb, 0xa, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}))
|
|
c3, rt3 := get()
|
|
Expect(c3).To(BeNil())
|
|
Expect(rt3).To(BeNil())
|
|
})
|
|
|
|
It("accepts duplicates", func() {
|
|
f := &wire.NewConnectionIDFrame{
|
|
SequenceNumber: 1,
|
|
ConnectionID: protocol.ConnectionID{1, 2, 3, 4},
|
|
StatelessResetToken: [16]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0xa, 0xb, 0xc, 0xd, 0xe},
|
|
}
|
|
Expect(m.Add(f)).To(Succeed())
|
|
Expect(m.Add(f)).To(Succeed())
|
|
c1, rt1 := get()
|
|
Expect(c1).To(Equal(protocol.ConnectionID{1, 2, 3, 4}))
|
|
Expect(*rt1).To(Equal([16]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0xa, 0xb, 0xc, 0xd, 0xe}))
|
|
c2, rt2 := get()
|
|
Expect(c2).To(BeNil())
|
|
Expect(rt2).To(BeNil())
|
|
})
|
|
|
|
It("rejects duplicates with different connection IDs", func() {
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
SequenceNumber: 42,
|
|
ConnectionID: protocol.ConnectionID{1, 2, 3, 4},
|
|
})).To(Succeed())
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
SequenceNumber: 42,
|
|
ConnectionID: protocol.ConnectionID{2, 3, 4, 5},
|
|
})).To(MatchError("received conflicting connection IDs for sequence number 42"))
|
|
})
|
|
|
|
It("rejects duplicates with different connection IDs", func() {
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
SequenceNumber: 42,
|
|
ConnectionID: protocol.ConnectionID{1, 2, 3, 4},
|
|
StatelessResetToken: [16]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0xa, 0xb, 0xc, 0xd, 0xe},
|
|
})).To(Succeed())
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
SequenceNumber: 42,
|
|
ConnectionID: protocol.ConnectionID{1, 2, 3, 4},
|
|
StatelessResetToken: [16]byte{0xe, 0xd, 0xc, 0xb, 0xa, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0},
|
|
})).To(MatchError("received conflicting stateless reset tokens for sequence number 42"))
|
|
})
|
|
|
|
It("retires connection IDs", func() {
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
SequenceNumber: 10,
|
|
ConnectionID: protocol.ConnectionID{1, 2, 3, 4},
|
|
})).To(Succeed())
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
SequenceNumber: 13,
|
|
ConnectionID: protocol.ConnectionID{2, 3, 4, 5},
|
|
})).To(Succeed())
|
|
Expect(frameQueue).To(BeEmpty())
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
RetirePriorTo: 14,
|
|
SequenceNumber: 17,
|
|
ConnectionID: protocol.ConnectionID{3, 4, 5, 6},
|
|
})).To(Succeed())
|
|
Expect(frameQueue).To(HaveLen(3))
|
|
Expect(frameQueue[0].(*wire.RetireConnectionIDFrame).SequenceNumber).To(BeEquivalentTo(10))
|
|
Expect(frameQueue[1].(*wire.RetireConnectionIDFrame).SequenceNumber).To(BeEquivalentTo(13))
|
|
Expect(frameQueue[2].(*wire.RetireConnectionIDFrame).SequenceNumber).To(BeZero())
|
|
Expect(m.Get()).To(Equal(protocol.ConnectionID{3, 4, 5, 6}))
|
|
})
|
|
|
|
It("retires old connection IDs when the peer sends too many new ones", func() {
|
|
for i := uint8(1); i <= protocol.MaxActiveConnectionIDs; i++ {
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
SequenceNumber: uint64(i),
|
|
ConnectionID: protocol.ConnectionID{i, i, i, i},
|
|
StatelessResetToken: [16]byte{i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i},
|
|
})).To(Succeed())
|
|
}
|
|
Expect(frameQueue).To(HaveLen(1))
|
|
Expect(frameQueue[0].(*wire.RetireConnectionIDFrame).SequenceNumber).To(BeZero())
|
|
Expect(retiredTokens).To(BeEmpty())
|
|
frameQueue = nil
|
|
Expect(m.Add(&wire.NewConnectionIDFrame{
|
|
SequenceNumber: protocol.MaxActiveConnectionIDs + 1,
|
|
ConnectionID: protocol.ConnectionID{1, 2, 3, 4},
|
|
})).To(Succeed())
|
|
Expect(frameQueue).To(HaveLen(1))
|
|
Expect(frameQueue[0].(*wire.RetireConnectionIDFrame).SequenceNumber).To(BeEquivalentTo(1))
|
|
Expect(retiredTokens).To(HaveLen(1))
|
|
Expect(retiredTokens[0]).To(Equal([16]byte{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}))
|
|
})
|
|
})
|