add error code string representation to QuicError.Error

This commit is contained in:
Lucas Clemente
2016-05-17 00:31:18 +02:00
parent 69e302812d
commit dc2a14a5f7
5 changed files with 60 additions and 2 deletions

View File

@@ -1,6 +1,8 @@
package protocol
import (
"fmt"
"github.com/lucas-clemente/quic-go/errorcodes"
)
@@ -19,7 +21,7 @@ func Error(errorCode errorcodes.ErrorCode, errorMessage string) *QuicError {
}
func (e *QuicError) Error() string {
return e.ErrorMessage
return fmt.Sprintf("%s: %s", e.ErrorCode.String(), e.ErrorMessage)
}
var _ error = &QuicError{}

View File

@@ -0,0 +1,16 @@
package protocol_test
import (
"github.com/lucas-clemente/quic-go/errorcodes"
"github.com/lucas-clemente/quic-go/protocol"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Quic error", func() {
It("has a string representation", func() {
err := protocol.Error(errorcodes.InternalError, "foobar")
Expect(err.Error()).To(Equal("InternalError: foobar"))
})
})