mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
more explicit tests for counting the number of streams in StreamsMap
This commit is contained in:
parent
bf04a430ba
commit
1f25ff5569
2 changed files with 19 additions and 6 deletions
|
@ -52,12 +52,24 @@ var _ = Describe("Streams Map", func() {
|
|||
Expect(err).To(MatchError("a stream with ID 5 already exists"))
|
||||
})
|
||||
|
||||
It("gets the number of streams", func() {
|
||||
Expect(m.NumberOfStreams()).To(Equal(0))
|
||||
m.PutStream(&stream{streamID: 5})
|
||||
Expect(m.NumberOfStreams()).To(Equal(1))
|
||||
m.RemoveStream(5)
|
||||
Expect(m.NumberOfStreams()).To(Equal(0))
|
||||
Context("number of streams", func() {
|
||||
It("returns 0 in the beginning", func() {
|
||||
Expect(m.NumberOfStreams()).To(Equal(0))
|
||||
})
|
||||
|
||||
It("increases the counter when a new stream is added", func() {
|
||||
err := m.PutStream(&stream{streamID: 5})
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(m.NumberOfStreams()).To(Equal(1))
|
||||
})
|
||||
|
||||
It("decreases the counter when removing a stream", func() {
|
||||
err := m.PutStream(&stream{streamID: 5})
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
err = m.RemoveStream(5)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(m.NumberOfStreams()).To(Equal(0))
|
||||
})
|
||||
})
|
||||
|
||||
Context("Lambda", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue