Skip to content

Commit

Permalink
Merge pull request #132 from testwill/pkg
Browse files Browse the repository at this point in the history
chore: pkg import only once
  • Loading branch information
dhartunian authored May 24, 2024
2 parents ea2a173 + 12b349a commit bafdccd
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions markers/markers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ package markers_test
import (
"context"
"errors"
goErr "errors"
"fmt"
"io"
"net"
Expand Down Expand Up @@ -183,8 +182,8 @@ func TestKnownErrorTypeDifference(t *testing.T) {
func TestStandardFmtSingleWrapRemoteEquivalence(t *testing.T) {
tt := testutils.T{T: t}

err1 := fmt.Errorf("hello %w", goErr.New("world"))
err2 := fmt.Errorf("hello %w", goErr.New("earth"))
err1 := fmt.Errorf("hello %w", errors.New("world"))
err2 := fmt.Errorf("hello %w", errors.New("earth"))

newErr1 := network(err1)

Expand Down Expand Up @@ -281,8 +280,8 @@ func (e *myErr) Error() string {
func TestStandardFmtMultierrorRemoteEquivalence(t *testing.T) {
tt := testutils.T{T: t}

err1 := fmt.Errorf("hello %w %w", goErr.New("world"), goErr.New("one"))
err2 := fmt.Errorf("hello %w %w", goErr.New("world"), goErr.New("two"))
err1 := fmt.Errorf("hello %w %w", errors.New("world"), errors.New("one"))
err2 := fmt.Errorf("hello %w %w", errors.New("world"), errors.New("two"))

newErr1 := network(err1)

Expand All @@ -292,7 +291,7 @@ func TestStandardFmtMultierrorRemoteEquivalence(t *testing.T) {
tt.Check(!markers.Is(newErr1, err2))

// Check multiple levels of causal nesting
err3 := fmt.Errorf("err: %w", goErr.Join(err1, err2, &myErr{msg: "hi"}))
err3 := fmt.Errorf("err: %w", errors.Join(err1, err2, &myErr{msg: "hi"}))
newErr3 := network(err3)
myErrV := &myErr{msg: "hi"}

Expand All @@ -316,7 +315,7 @@ func (e myOtherMultiError) Unwrap() []error { return []error{e.cause} }
func TestDifferentMultiErrorTypesCompareDifferentOverNetwork(t *testing.T) {
tt := testutils.T{T: t}

base := goErr.New("woo")
base := errors.New("woo")
e1 := myMultiError{base}
e2 := myOtherMultiError{base}

Expand All @@ -333,9 +332,9 @@ func TestDifferentMultiErrorTypesCompareDifferentOverNetwork(t *testing.T) {
func TestStandardFmtMultierrorRemoteRecursiveEquivalence(t *testing.T) {
tt := testutils.T{T: t}

baseErr := goErr.New("world")
baseErr := errors.New("world")
err1 := fmt.Errorf("%w %w", baseErr, baseErr)
err2 := goErr.Join(baseErr, baseErr)
err2 := errors.Join(baseErr, baseErr)

tt.Check(markers.Is(err1, baseErr))
tt.Check(!markers.Is(err1, err2))
Expand Down Expand Up @@ -633,7 +632,7 @@ func (e *myErrType2) Error() string { return e.msg }
func TestFormat(t *testing.T) {
tt := testutils.T{t}

refErr := goErr.New("foo")
refErr := errors.New("foo")
const woo = `woo`
const waawoo = `waa: woo`
testCases := []struct {
Expand All @@ -643,7 +642,7 @@ func TestFormat(t *testing.T) {
expFmtVerbose string
}{
{"marked",
markers.Mark(goErr.New("woo"), refErr),
markers.Mark(errors.New("woo"), refErr),
woo, `
woo
(1) forced error mark
Expand All @@ -653,7 +652,7 @@ Wraps: (2) woo
Error types: (1) *markers.withMark (2) *errors.errorString`},

{"marked + wrapper",
markers.Mark(&werrFmt{goErr.New("woo"), "waa"}, refErr),
markers.Mark(&werrFmt{errors.New("woo"), "waa"}, refErr),
waawoo, `
waa: woo
(1) forced error mark
Expand All @@ -666,7 +665,7 @@ Wraps: (3) woo
Error types: (1) *markers.withMark (2) *markers_test.werrFmt (3) *errors.errorString`},

{"wrapper + marked",
&werrFmt{markers.Mark(goErr.New("woo"), refErr), "waa"},
&werrFmt{markers.Mark(errors.New("woo"), refErr), "waa"},
waawoo, `
waa: woo
(1) waa
Expand Down

0 comments on commit bafdccd

Please sign in to comment.