mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
store the payload of sent packets as a slice of Frames
This commit is contained in:
parent
eada642cc1
commit
4659bf7acb
5 changed files with 43 additions and 35 deletions
|
@ -34,7 +34,7 @@ var _ = Describe("Packet packer", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
b := &bytes.Buffer{}
|
||||
f.Write(b, 1, 6)
|
||||
Expect(p.payload).To(Equal(b.Bytes()))
|
||||
Expect(len(p.frames)).To(Equal(1))
|
||||
Expect(p.raw).To(ContainSubstring(string(b.Bytes())))
|
||||
})
|
||||
|
||||
|
@ -49,7 +49,7 @@ var _ = Describe("Packet packer", func() {
|
|||
b := &bytes.Buffer{}
|
||||
f1.Write(b, 2, 6)
|
||||
f2.Write(b, 2, 6)
|
||||
Expect(p.payload).To(Equal(b.Bytes()))
|
||||
Expect(len(p.frames)).To(Equal(2))
|
||||
Expect(p.raw).To(ContainSubstring(string(b.Bytes())))
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue