1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
package panics
import (
"errors"
"fmt"
"runtime"
"sync"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func ExampleCatcher() {
var pc Catcher
i := 0
pc.Try(func() { i += 1 })
pc.Try(func() { panic("abort!") })
pc.Try(func() { i += 1 })
rc := pc.Recovered()
fmt.Println(i)
fmt.Println(rc.Value.(string))
// Output:
// 2
// abort!
}
func ExampleCatcher_callers() {
var pc Catcher
pc.Try(func() { panic("mayday!") })
recovered := pc.Recovered()
// For debugging, the pre-formatted recovered.Stack is easier to use than
// rc.Callers. This is not used in the example because its output is
// machine-specific.
frames := runtime.CallersFrames(recovered.Callers)
for {
frame, more := frames.Next()
fmt.Println(frame.Function)
if !more {
break
}
}
// Output:
// github.com/sourcegraph/conc/panics.(*Catcher).tryRecover
// runtime.gopanic
// github.com/sourcegraph/conc/panics.ExampleCatcher_callers.func1
// github.com/sourcegraph/conc/panics.(*Catcher).Try
// github.com/sourcegraph/conc/panics.ExampleCatcher_callers
// testing.runExample
// testing.runExamples
// testing.(*M).Run
// main.main
// runtime.main
// runtime.goexit
}
func ExampleCatcher_error() {
helper := func() error {
var pc Catcher
pc.Try(func() { panic(errors.New("error")) })
return pc.Recovered().AsError()
}
if err := helper(); err != nil {
// In normal use cases, you can use err.Error() output directly to
// dump the panic's stack. This is not used in the example because
// its output is machine-specific - instead, we demonstrate getting
// the underlying error that was used for the panic.
if cause := errors.Unwrap(err); cause != nil {
fmt.Printf("helper panicked with an error: %s", cause)
}
}
// Output:
// helper panicked with an error: error
}
func TestCatcher(t *testing.T) {
t.Parallel()
err1 := errors.New("SOS")
t.Run("error", func(t *testing.T) {
t.Parallel()
var pc Catcher
pc.Try(func() { panic(err1) })
recovered := pc.Recovered()
require.ErrorIs(t, recovered.AsError(), err1)
require.ErrorAs(t, recovered.AsError(), &err1)
// The exact contents aren't tested because the stacktrace contains local file paths
// and even the structure of the stacktrace is bound to be unstable over time. Just
// test a couple of basics.
require.Contains(t, recovered.String(), "SOS", "formatted panic should contain the panic message")
require.Contains(t, recovered.String(), "panics.(*Catcher).Try", recovered.String(), "formatted panic should contain the stack trace")
})
t.Run("not error", func(t *testing.T) {
var pc Catcher
pc.Try(func() { panic("definitely not an error") })
recovered := pc.Recovered()
require.NotErrorIs(t, recovered.AsError(), err1)
require.Nil(t, errors.Unwrap(recovered.AsError()))
})
t.Run("repanic panics", func(t *testing.T) {
var pc Catcher
pc.Try(func() { panic(err1) })
require.Panics(t, pc.Repanic)
})
t.Run("repanic does not panic without child panic", func(t *testing.T) {
t.Parallel()
var pc Catcher
pc.Try(func() { _ = 1 })
require.NotPanics(t, pc.Repanic)
})
t.Run("is goroutine safe", func(t *testing.T) {
t.Parallel()
var wg sync.WaitGroup
var pc Catcher
for i := 0; i < 100; i++ {
i := i
wg.Add(1)
func() {
defer wg.Done()
pc.Try(func() {
if i == 50 {
panic("50")
}
})
}()
}
wg.Wait()
require.Equal(t, "50", pc.Recovered().Value)
})
}
func TestRecoveredAsError(t *testing.T) {
t.Parallel()
t.Run("as error is nil", func(t *testing.T) {
t.Parallel()
fn := func() error {
var c Catcher
c.Try(func() {})
return c.Recovered().AsError()
}
err := fn()
assert.Nil(t, err)
})
t.Run("as error is not nil nil", func(t *testing.T) {
t.Parallel()
fn := func() error {
var c Catcher
c.Try(func() { panic("oh dear!") })
return c.Recovered().AsError()
}
err := fn()
assert.NotNil(t, err)
})
}
|