debian-forge-cli/bib/internal/util/util_test.go
Michael Vogt b3ef264353 bib: simplify getContainerSize()
The getContainerSize() was not using some of the modern go helpers.
So let's use `exec.Command().Output()` and introduce a new
`util.OutputErr()` helper that will be able to also show stderr to
the user if the Output() call returns an error.
2025-03-31 18:19:33 +00:00

21 lines
491 B
Go

package util_test
import (
"fmt"
"os/exec"
"testing"
"github.com/stretchr/testify/assert"
"github.com/osbuild/bootc-image-builder/bib/internal/util"
)
func TestOutputErrPassthrough(t *testing.T) {
err := fmt.Errorf("boom")
assert.Equal(t, util.OutputErr(err), err)
}
func TestOutputErrExecError(t *testing.T) {
_, err := exec.Command("bash", "-c", ">&2 echo some-stderr; exit 1").Output()
assert.Equal(t, "exit status 1, stderr:\nsome-stderr\n", util.OutputErr(err).Error())
}