mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
7bbcc564bb
* Use IP instead of endpoint in clusterIDsFile * Move and rename validateEnpoint to addPortIfMissing * Refactor clusterIDsFile handling in verify cmd
39 lines
741 B
Go
39 lines
741 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIsCloudProvider(t *testing.T) {
|
|
testCases := map[string]struct {
|
|
pos int
|
|
args []string
|
|
wantErr bool
|
|
}{
|
|
"gcp": {0, []string{"gcp"}, false},
|
|
"azure": {1, []string{"foo", "azure"}, false},
|
|
"foo": {0, []string{"foo"}, true},
|
|
"empty": {0, []string{""}, true},
|
|
"unknown": {0, []string{"unknown"}, true},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
testCmd := &cobra.Command{Args: isCloudProvider(tc.pos)}
|
|
|
|
err := testCmd.ValidateArgs(tc.args)
|
|
|
|
if tc.wantErr {
|
|
assert.Error(err)
|
|
} else {
|
|
assert.NoError(err)
|
|
}
|
|
})
|
|
}
|
|
}
|