mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
only close the client once
This commit is contained in:
parent
ad7de3c99d
commit
9790418eb7
2 changed files with 16 additions and 0 deletions
|
@ -77,11 +77,20 @@ var _ = Describe("Client", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
Eventually(session.closed).Should(BeTrue())
|
||||
Expect(session.closeReason).To(MatchError(testErr))
|
||||
Expect(client.closed).To(Equal(uint32(1)))
|
||||
Eventually(func() bool { return stoppedListening }).Should(BeTrue())
|
||||
Eventually(runtime.NumGoroutine()).Should(Equal(numGoRoutines))
|
||||
close(done)
|
||||
})
|
||||
|
||||
It("only closes the client once", func() {
|
||||
client.closed = 1
|
||||
err := client.Close(errors.New("test error"))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Eventually(session.closed).Should(BeFalse())
|
||||
Expect(session.closeReason).ToNot(HaveOccurred())
|
||||
})
|
||||
|
||||
It("creates new sessions with the right parameters", func() {
|
||||
startUDPConn()
|
||||
client.session = nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue