mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
Signed-off-by: rumstead <37445536+rumstead@users.noreply.github.com> Signed-off-by: Alexandre Gaudreault <alexandre_gaudreault@intuit.com> Co-authored-by: Alexandre Gaudreault <alexandre_gaudreault@intuit.com>
28 lines
772 B
Go
28 lines
772 B
Go
package command
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestNewCommand_ConcurrentApplicationUpdatesFlag(t *testing.T) {
|
|
cmd := NewCommand()
|
|
|
|
flag := cmd.Flags().Lookup("concurrent-application-updates")
|
|
require.NotNil(t, flag, "expected --concurrent-application-updates flag to be registered")
|
|
assert.Equal(t, "int", flag.Value.Type())
|
|
assert.Equal(t, "1", flag.DefValue, "default should be 1")
|
|
}
|
|
|
|
func TestNewCommand_ConcurrentApplicationUpdatesFlagValue(t *testing.T) {
|
|
cmd := NewCommand()
|
|
|
|
err := cmd.Flags().Set("concurrent-application-updates", "5")
|
|
require.NoError(t, err)
|
|
|
|
val, err := cmd.Flags().GetInt("concurrent-application-updates")
|
|
require.NoError(t, err)
|
|
assert.Equal(t, 5, val)
|
|
}
|