mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
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
65 lines
1.8 KiB
Go
65 lines
1.8 KiB
Go
package qerr
|
|
|
|
import (
|
|
"io"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("QUIC Transport Errors", func() {
|
|
It("has a string representation", func() {
|
|
err := Error(FlowControlError, "foobar")
|
|
Expect(err.Timeout()).To(BeFalse())
|
|
Expect(err.Error()).To(Equal("FLOW_CONTROL_ERROR: foobar"))
|
|
})
|
|
|
|
It("has a string representation for empty error phrases", func() {
|
|
err := Error(FlowControlError, "")
|
|
Expect(err.Error()).To(Equal("FLOW_CONTROL_ERROR"))
|
|
})
|
|
|
|
It("has a string representation for timeout errors", func() {
|
|
err := TimeoutError("foobar")
|
|
Expect(err.Timeout()).To(BeTrue())
|
|
Expect(err.Error()).To(Equal("NO_ERROR: foobar"))
|
|
})
|
|
|
|
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"))
|
|
})
|
|
|
|
Context("ErrorCode", func() {
|
|
It("works as error", func() {
|
|
var err error = StreamStateError
|
|
Expect(err).To(MatchError("STREAM_STATE_ERROR"))
|
|
})
|
|
|
|
It("recognizes crypto errors", func() {
|
|
err := ErrorCode(0x100 + 42)
|
|
Expect(err.Error()).To(Equal("CRYPTO_ERROR: tls: bad certificate"))
|
|
})
|
|
})
|
|
|
|
Context("ToQuicError", func() {
|
|
It("leaves QuicError unchanged", func() {
|
|
err := Error(TransportParameterError, "foo")
|
|
Expect(ToQuicError(err)).To(Equal(err))
|
|
})
|
|
|
|
It("wraps ErrorCode properly", func() {
|
|
var err error = FinalSizeError
|
|
Expect(ToQuicError(err)).To(Equal(Error(FinalSizeError, "")))
|
|
})
|
|
|
|
It("changes default errors to InternalError", func() {
|
|
Expect(ToQuicError(io.EOF)).To(Equal(Error(InternalError, "EOF")))
|
|
})
|
|
})
|
|
})
|