2023-02-03 15:47:33 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-09-11 08:18:43 +00:00
|
|
|
"context"
|
2023-02-03 15:47:33 +00:00
|
|
|
"testing"
|
|
|
|
|
2023-07-25 18:19:07 +00:00
|
|
|
"github.com/databricks/cli/cmd"
|
2023-02-03 15:47:33 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCommandsDontUseUnderscoreInName(t *testing.T) {
|
|
|
|
// We use underscore as separator between commands in logs
|
|
|
|
// so need to enforce that no command uses it in its name.
|
|
|
|
//
|
|
|
|
// This test lives in the main package because this is where
|
|
|
|
// all commands are imported.
|
|
|
|
//
|
2023-09-11 08:18:43 +00:00
|
|
|
queue := []*cobra.Command{cmd.New(context.Background())}
|
2023-02-03 15:47:33 +00:00
|
|
|
for len(queue) > 0 {
|
|
|
|
cmd := queue[0]
|
|
|
|
assert.NotContains(t, cmd.Name(), "_")
|
|
|
|
queue = append(queue[1:], cmd.Commands()...)
|
|
|
|
}
|
|
|
|
}
|