add support for receiving BLOCKED frames

This commit is contained in:
Lucas Clemente 2016-04-27 13:02:00 +02:00
parent 0d6642464d
commit bd67f537c9
5 changed files with 74 additions and 6 deletions

View file

@ -138,10 +138,14 @@ var _ = Describe("Packet unpacker", func() {
})
It("accepts BLOCKED frames", func() {
setReader([]byte{0x05, 0, 0, 0, 0})
setReader([]byte{0x05, 0xEF, 0xBE, 0xAD, 0xDE})
packet, err := unpacker.Unpack(hdrBin, hdr, r)
Expect(err).ToNot(HaveOccurred())
Expect(packet.frames).To(HaveLen(0))
Expect(packet.frames).To(Equal([]frames.Frame{
&frames.BlockedFrame{
StreamID: 0xDEADBEEF,
},
}))
})
It("unpacks STOP_WAITING frames", func() {