mirror of https://github.com/docker/cli.git
22 lines
658 B
Go
22 lines
658 B
Go
|
package container
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
"gotest.tools/v3/assert"
|
||
|
is "gotest.tools/v3/assert/cmp"
|
||
|
)
|
||
|
|
||
|
func TestCompleteLinuxCapabilityNames(t *testing.T) {
|
||
|
names, directives := completeLinuxCapabilityNames(nil, nil, "")
|
||
|
assert.Check(t, is.Equal(directives&cobra.ShellCompDirectiveNoFileComp, cobra.ShellCompDirectiveNoFileComp), "Should not perform file completion")
|
||
|
assert.Assert(t, len(names) > 1)
|
||
|
assert.Check(t, names[0] == allCaps)
|
||
|
for _, name := range names[1:] {
|
||
|
assert.Check(t, strings.HasPrefix(name, "CAP_"))
|
||
|
assert.Check(t, is.Equal(name, strings.ToUpper(name)), "Should be formatted uppercase")
|
||
|
}
|
||
|
}
|