mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add a method to open new Streams to the client
This commit is contained in:
parent
a8bbe66d5c
commit
3458514744
4 changed files with 15 additions and 0 deletions
|
@ -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)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue