All checks were successful
Test / Create distribution (push) Successful in 1m1s
Test / Sandbox (push) Successful in 2m45s
Test / Hakurei (push) Successful in 3m41s
Test / ShareFS (push) Successful in 3m43s
Test / Sandbox (race detector) (push) Successful in 5m5s
Test / Hakurei (race detector) (push) Successful in 6m11s
Test / Flake checks (push) Successful in 1m22s
This package is not container specific, and widely used across the project. Signed-off-by: Ophestra <cat@gensokyo.uk>
47 lines
1.0 KiB
Go
47 lines
1.0 KiB
Go
package ldd_test
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"os/exec"
|
|
"testing"
|
|
|
|
"hakurei.app/check"
|
|
"hakurei.app/container"
|
|
"hakurei.app/ldd"
|
|
"hakurei.app/message"
|
|
)
|
|
|
|
func TestExec(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
t.Run("failure", func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
_, err := ldd.Resolve(t.Context(), nil, check.MustAbs("/proc/nonexistent"))
|
|
|
|
var exitError *exec.ExitError
|
|
if !errors.As(err, &exitError) {
|
|
t.Fatalf("Exec: error has incorrect concrete type: %#v", err)
|
|
}
|
|
|
|
const want = 1
|
|
if got := exitError.ExitCode(); got != want {
|
|
t.Fatalf("Exec: ExitCode = %d, want %d", got, want)
|
|
}
|
|
})
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
msg := message.New(nil)
|
|
msg.GetLogger().SetPrefix("check: ")
|
|
if entries, err := ldd.Resolve(t.Context(), nil, nil); err != nil {
|
|
t.Fatalf("Exec: error = %v", err)
|
|
} else if testing.Verbose() {
|
|
// result cannot be measured here as build information is not known
|
|
t.Logf("Exec: %q", entries)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestMain(m *testing.M) { container.TryArgv0(nil); os.Exit(m.Run()) }
|