mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-03-29 04:48:48 +02:00
89 lines
2.2 KiB
Go
89 lines
2.2 KiB
Go
package exec
|
|
|
|
import (
|
|
"os/exec"
|
|
"regexp"
|
|
"syscall"
|
|
"testing"
|
|
"time"
|
|
|
|
argoexec "github.com/argoproj/pkg/exec"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func Test_timeout(t *testing.T) {
|
|
t.Run("Default", func(t *testing.T) {
|
|
initTimeout()
|
|
assert.Equal(t, 90*time.Second, timeout)
|
|
})
|
|
t.Run("Default", func(t *testing.T) {
|
|
t.Setenv("ARGOCD_EXEC_TIMEOUT", "1s")
|
|
initTimeout()
|
|
assert.Equal(t, 1*time.Second, timeout)
|
|
})
|
|
}
|
|
|
|
func TestRun(t *testing.T) {
|
|
out, err := Run(exec.Command("ls"))
|
|
require.NoError(t, err)
|
|
assert.NotEmpty(t, out)
|
|
}
|
|
|
|
func TestHideUsernamePassword(t *testing.T) {
|
|
_, err := RunWithRedactor(exec.Command("helm registry login https://charts.bitnami.com/bitnami", "--username", "foo", "--password", "bar"), nil)
|
|
assert.NotEmpty(t, err)
|
|
|
|
redactor := func(text string) string {
|
|
return regexp.MustCompile("(--username|--password) [^ ]*").ReplaceAllString(text, "$1 ******")
|
|
}
|
|
_, err = RunWithRedactor(exec.Command("helm registry login https://charts.bitnami.com/bitnami", "--username", "foo", "--password", "bar"), redactor)
|
|
assert.NotEmpty(t, err)
|
|
}
|
|
|
|
func TestRunWithExecRunOpts(t *testing.T) {
|
|
t.Setenv("ARGOCD_EXEC_TIMEOUT", "200ms")
|
|
initTimeout()
|
|
|
|
opts := ExecRunOpts{
|
|
TimeoutBehavior: argoexec.TimeoutBehavior{
|
|
Signal: syscall.SIGTERM,
|
|
ShouldWait: true,
|
|
},
|
|
}
|
|
_, err := RunWithExecRunOpts(exec.Command("sh", "-c", "trap 'trap - 15 && echo captured && exit' 15 && sleep 2"), opts)
|
|
assert.ErrorContains(t, err, "failed timeout after 200ms")
|
|
}
|
|
|
|
func Test_getCommandArgsToLog(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
args []string
|
|
expected string
|
|
}{
|
|
{
|
|
name: "no spaces",
|
|
args: []string{"sh", "-c", "cat"},
|
|
expected: "sh -c cat",
|
|
},
|
|
{
|
|
name: "spaces",
|
|
args: []string{"sh", "-c", `echo "hello world"`},
|
|
expected: `sh -c "echo \"hello world\""`,
|
|
},
|
|
{
|
|
name: "empty string arg",
|
|
args: []string{"sh", "-c", ""},
|
|
expected: `sh -c ""`,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
tcc := tc
|
|
t.Run(tcc.name, func(t *testing.T) {
|
|
t.Parallel()
|
|
assert.Equal(t, tcc.expected, GetCommandArgsToLog(exec.Command(tcc.args[0], tcc.args[1:]...)))
|
|
})
|
|
}
|
|
}
|