-
Notifications
You must be signed in to change notification settings - Fork 226
/
exec_command_test.go
executable file
·64 lines (56 loc) · 1.67 KB
/
exec_command_test.go
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package dbus
import (
"os"
"os/exec"
"strconv"
"testing"
)
// How to mock exec.Command for unit tests
// https://stackoverflow.com/q/45789101/10513533
var (
mockedExitStatus = 0
mockedStdout string
)
func fakeExecCommand(command string, args ...string) *exec.Cmd {
cs := []string{"-test.run=TestExecCommandHelper", "--", command}
cs = append(cs, args...)
cmd := exec.Command(os.Args[0], cs...)
es := strconv.Itoa(mockedExitStatus)
cmd.Env = []string{
"GO_WANT_HELPER_PROCESS=1",
"STDOUT=" + mockedStdout,
"EXIT_STATUS=" + es,
}
return cmd
}
func TestExecCommandHelper(t *testing.T) {
if os.Getenv("GO_WANT_HELPER_PROCESS") != "1" {
return
}
t.Log(os.Getenv("STDOUT"))
i, _ := strconv.Atoi(os.Getenv("EXIT_STATUS"))
os.Exit(i)
}
func TestDbusLaunchMultilineResponse(t *testing.T) {
mockedExitStatus = 0
mockedStdout = `process 7616: D-Bus library appears to be incorrectly set up; failed to read machine uuid: UUID file '/etc/machine-id' should contain a hex string of length 32, not length 0, with no other text
See the manual page for dbus-uuidgen to correct this issue.
DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-0SO9YZUBGA,guid=ac22f2f3b9d228496b4d4b935cae3417
DBUS_SESSION_BUS_PID=7620
DBUS_SESSION_BUS_WINDOWID=16777217`
execCommand = fakeExecCommand
defer func() { execCommand = exec.Command }()
expOut := ""
expErr := "dbus: couldn't determine address of session bus"
out, err := getSessionBusPlatformAddress()
if out != expOut {
t.Errorf("Expected %q, got %q", expOut, out)
}
if err == nil {
t.Error("Excepted error, got none")
} else {
if err.Error() != expErr {
t.Errorf("Expected error to be %q, got %q", expErr, err.Error())
}
}
}