2021-02-02 12:05:47 +01:00
|
|
|
package shellx
|
|
|
|
|
2021-06-04 14:02:18 +02:00
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/apex/log"
|
|
|
|
)
|
2021-02-02 12:05:47 +01:00
|
|
|
|
|
|
|
func TestRun(t *testing.T) {
|
2021-06-04 14:02:18 +02:00
|
|
|
if err := Run(log.Log, "whoami"); err != nil {
|
2021-02-02 12:05:47 +01:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2021-06-04 14:02:18 +02:00
|
|
|
if err := Run(log.Log, "./nonexistent/command"); err == nil {
|
2021-02-02 12:05:47 +01:00
|
|
|
t.Fatal("expected an error here")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRunQuiet(t *testing.T) {
|
|
|
|
if err := RunQuiet("true"); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := RunQuiet("./nonexistent/command"); err == nil {
|
|
|
|
t.Fatal("expected an error here")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRunCommandline(t *testing.T) {
|
|
|
|
t.Run("when the command does not parse", func(t *testing.T) {
|
2021-06-04 14:02:18 +02:00
|
|
|
if err := RunCommandline(log.Log, `"foobar`); err == nil {
|
2021-02-02 12:05:47 +01:00
|
|
|
t.Fatal("expected an error here")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
t.Run("when we have no arguments", func(t *testing.T) {
|
2021-06-04 14:02:18 +02:00
|
|
|
if err := RunCommandline(log.Log, ""); err == nil {
|
2021-02-02 12:05:47 +01:00
|
|
|
t.Fatal("expected an error here")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
t.Run("when we have a single argument", func(t *testing.T) {
|
2021-06-04 14:02:18 +02:00
|
|
|
if err := RunCommandline(log.Log, "ls"); err != nil {
|
2021-02-02 12:05:47 +01:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
t.Run("when we have more than one argument", func(t *testing.T) {
|
2021-06-04 14:02:18 +02:00
|
|
|
if err := RunCommandline(log.Log, "ls ."); err != nil {
|
2021-02-02 12:05:47 +01:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|