Files
v2fly/common/errors/errors_test.go
T

119 lines
3.3 KiB
Go
Raw Normal View History

2017-02-21 23:14:07 +01:00
package errors_test
import (
stderrors "errors"
2017-02-21 23:14:07 +01:00
"io"
2019-02-10 15:02:28 +01:00
"strings"
"syscall"
2017-02-21 23:14:07 +01:00
"testing"
2018-11-15 11:17:20 +01:00
"github.com/google/go-cmp/cmp"
2022-01-02 15:16:23 +00:00
. "github.com/v2fly/v2ray-core/v5/common/errors"
"github.com/v2fly/v2ray-core/v5/common/log"
2017-02-21 23:14:07 +01:00
)
2017-04-06 21:13:17 +02:00
func TestError(t *testing.T) {
2017-02-21 23:14:07 +01:00
err := New("TestError")
2019-02-10 15:02:28 +01:00
if v := GetSeverity(err); v != log.Severity_Info {
t.Error("severity: ", v)
}
2017-02-21 23:14:07 +01:00
2017-04-06 15:13:09 +02:00
err = New("TestError2").Base(io.EOF)
2019-02-10 15:02:28 +01:00
if v := GetSeverity(err); v != log.Severity_Info {
t.Error("severity: ", v)
}
2017-02-21 23:14:07 +01:00
2017-04-06 15:13:09 +02:00
err = New("TestError3").Base(io.EOF).AtWarning()
2019-02-10 15:02:28 +01:00
if v := GetSeverity(err); v != log.Severity_Warning {
t.Error("severity: ", v)
}
2017-02-21 23:14:07 +01:00
2017-04-06 15:13:09 +02:00
err = New("TestError4").Base(io.EOF).AtWarning()
err = New("TestError5").Base(err)
2019-02-10 15:02:28 +01:00
if v := GetSeverity(err); v != log.Severity_Warning {
t.Error("severity: ", v)
}
if v := err.Error(); !strings.Contains(v, "EOF") {
t.Error("error: ", v)
}
2017-02-21 23:14:07 +01:00
}
2017-04-06 21:13:17 +02:00
2018-09-30 18:39:53 +02:00
type e struct{}
2017-04-06 21:13:17 +02:00
func TestErrorMessage(t *testing.T) {
data := []struct {
err error
msg string
}{
{
2018-09-30 18:39:53 +02:00
err: New("a").Base(New("b")).WithPathObj(e{}),
2021-04-02 20:44:33 +08:00
msg: "common/errors_test: a > b",
2017-04-06 21:13:17 +02:00
},
{
2018-09-30 18:39:53 +02:00
err: New("a").Base(New("b").WithPathObj(e{})),
2021-04-02 20:44:33 +08:00
msg: "a > common/errors_test: b",
2017-04-06 21:13:17 +02:00
},
}
for _, d := range data {
2018-11-15 11:17:20 +01:00
if diff := cmp.Diff(d.msg, d.err.Error()); diff != "" {
t.Error(diff)
2018-07-13 14:36:09 +02:00
}
2017-04-06 21:13:17 +02:00
}
}
// errUnwrapSentinel is a sentinel for exercising errors.Is traversal.
var errUnwrapSentinel = stderrors.New("unwrap sentinel")
// typedUnwrapErr is a concrete error type for exercising errors.As traversal.
type typedUnwrapErr struct{ code int }
func (typedUnwrapErr) Error() string { return "typed unwrap error" }
func TestErrorUnwrap(t *testing.T) {
base := stderrors.New("base")
if got := stderrors.Unwrap(New("wrapper").Base(base)); got != base {
t.Errorf("Unwrap() = %v, want the wrapped base error", got)
}
if got := stderrors.Unwrap(New("no inner")); got != nil {
t.Errorf("Unwrap() of an error with no inner = %v, want nil", got)
}
}
func TestErrorIsThroughChain(t *testing.T) {
// Three *Error layers, matching the real-world depth of a wrapped error.
chain := New("a").Base(New("b").Base(New("c").Base(errUnwrapSentinel)))
if !stderrors.Is(chain, errUnwrapSentinel) {
t.Errorf("errors.Is could not find the sentinel through the *Error chain: %v", chain)
}
}
func TestErrorAsThroughChain(t *testing.T) {
chain := New("outer").Base(New("inner").Base(typedUnwrapErr{code: 42}))
var got typedUnwrapErr
if !stderrors.As(chain, &got) {
t.Fatalf("errors.As could not extract typedUnwrapErr through the *Error chain: %v", chain)
}
if got.code != 42 {
t.Errorf("extracted typedUnwrapErr.code = %d, want 42", got.code)
}
}
// TestErrorAsSyscallErrno mirrors the motivating case: a syscall.Errno from a
// failed bind, wrapped by three *Error layers (as ListenTCP -> ListenTCP ->
// worker.Start do), must remain recoverable via the standard errors.As.
func TestErrorAsSyscallErrno(t *testing.T) {
const want = syscall.Errno(4242) // arbitrary; only round-trip traversal is asserted
chain := New("failed to listen TCP on 443").Base(
New("failed to listen on address: 0.0.0.0:443").Base(
New("failed to listen TCP on 0.0.0.0:443").Base(want)))
var got syscall.Errno
if !stderrors.As(chain, &got) {
t.Fatalf("errors.As could not extract syscall.Errno through the *Error chain: %v", chain)
}
if got != want {
t.Errorf("extracted errno = %d, want %d", got, want)
}
}