add a method to open new Streams to the client

This commit is contained in:
Marten Seemann 2016-12-16 22:35:54 +07:00
parent a8bbe66d5c
commit 3458514744
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
4 changed files with 15 additions and 0 deletions

View file

@ -82,6 +82,12 @@ var _ = Describe("Client", func() {
Expect(err).ToNot(HaveOccurred())
})
It("opens a stream", func() {
stream, err := client.OpenStream(1337)
Expect(err).ToNot(HaveOccurred())
Expect(stream.StreamID()).To(Equal(protocol.StreamID(1337)))
})
Context("handling packets", func() {
It("errors on too large packets", func() {
err := client.handlePacket(bytes.Repeat([]byte{'f'}, int(protocol.MaxPacketSize+1)))