add Frame.MaxLength and implement it for currently needed frames

This commit is contained in:
Lucas Clemente 2016-04-20 15:06:10 +02:00
parent 93cea4f5de
commit 6be70bc29c
7 changed files with 70 additions and 1 deletions

View file

@ -51,6 +51,17 @@ var _ = Describe("StreamFrame", func() {
}).Write(b)
Expect(b.Bytes()).To(Equal([]byte{0xbf, 0x1, 0, 0, 0, 0x10, 0, 0, 0, 0, 0, 0, 0, 0x06, 0x00, 'f', 'o', 'o', 'b', 'a', 'r'}))
})
It("has proper max length", func() {
b := &bytes.Buffer{}
f := &StreamFrame{
StreamID: 1,
Data: []byte("f"),
Offset: 1,
}
f.Write(b)
Expect(f.MaxLength()).To(Equal(b.Len()))
})
})
})
})