errutil

package
v0.1.0-develop.2026060... Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 9, 2026 License: MIT Imports: 0 Imported by: 0

Documentation

Overview

Package errutil provides test-only helpers for inspecting joined error trees. All helpers in this package are intended for use in *_test.go files only.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func FlattenJoined

func FlattenJoined(err error) []error

FlattenJoined recursively unwraps an errors.Join tree and returns all leaf errors (errors that do not themselves implement Unwrap() []error). The order of leaves matches a depth-first left-to-right traversal of the join tree.

Use this helper to assert that every error produced by a multi-step rollback or shutdown is reachable via errors.Is / errors.As without relying on the exact join structure.

Example:

errs := errutil.FlattenJoined(err)
for _, e := range errs {
    var pe *phaseError
    if errors.As(e, &pe) { ... }
}

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL