errors: Ensure that errors.IsFatal(errors.Fatal("err")) == true

This fixes a few cases where restic output "Fatal: Fatal: [...]"
This commit is contained in:
Michael Eischer 2022-02-12 23:31:31 +01:00
parent a08b95c497
commit 2e1613d4c6
4 changed files with 26 additions and 2 deletions

View file

@ -0,0 +1,22 @@
package errors_test
import (
"testing"
"github.com/restic/restic/internal/errors"
)
func TestFatal(t *testing.T) {
for _, v := range []struct {
err error
expected bool
}{
{errors.Fatal("broken"), true},
{errors.Fatalf("broken %d", 42), true},
{errors.New("error"), false},
} {
if errors.IsFatal(v.err) != v.expected {
t.Fatalf("IsFatal for %q, expected: %v, got: %v", v.err, v.expected, errors.IsFatal(v.err))
}
}
}