mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
add a message to crypto errors
The string representation varies depending on the message: * if there's no message, the TLS alert is used * if there's a message, it is used instead
This commit is contained in:
parent
373db3c153
commit
ae12852e4c
3 changed files with 11 additions and 5 deletions
|
@ -25,8 +25,13 @@ var _ = Describe("QUIC Transport Errors", func() {
|
|||
Expect(err.Error()).To(Equal("NO_ERROR: foobar"))
|
||||
})
|
||||
|
||||
It("has a string representation for crypto errors", func() {
|
||||
err := CryptoError(42)
|
||||
It("has a string representation for crypto errors with a message", func() {
|
||||
err := CryptoError(42, "foobar")
|
||||
Expect(err.Error()).To(Equal("CRYPTO_ERROR: foobar"))
|
||||
})
|
||||
|
||||
It("has a string representation for crypto errors without a message", func() {
|
||||
err := CryptoError(42, "")
|
||||
Expect(err.Error()).To(Equal("CRYPTO_ERROR: tls: bad certificate"))
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue