aboutsummaryrefslogtreecommitdiffhomepage
path: root/ldd/exec_test.go
blob: 0546b9ad8e6623cf42de15c6e4ec9bdb39cef8e8 (plain)
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
package ldd_test

import (
	"errors"
	"os/exec"
	"testing"

	"hakurei.app/check"
	"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"))

		exitError, ok := errors.AsType[*exec.ExitError](err)
		if !ok {
			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)
		}
	})
}