mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
112 lines
2.5 KiB
Go
112 lines
2.5 KiB
Go
package commands
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/client-go/rest"
|
|
"k8s.io/client-go/tools/clientcmd"
|
|
|
|
"github.com/argoproj/argo-cd/v3/pkg/apis/application/v1alpha1"
|
|
)
|
|
|
|
func Test_getQueryBySelector(t *testing.T) {
|
|
query := getQueryBySelector("my-cluster")
|
|
assert.Equal(t, "my-cluster", query.Name)
|
|
assert.Empty(t, query.Server)
|
|
|
|
query = getQueryBySelector("http://my-server")
|
|
assert.Empty(t, query.Name)
|
|
assert.Equal(t, "http://my-server", query.Server)
|
|
|
|
query = getQueryBySelector("https://my-server")
|
|
assert.Empty(t, query.Name)
|
|
assert.Equal(t, "https://my-server", query.Server)
|
|
}
|
|
|
|
func Test_printClusterTable(_ *testing.T) {
|
|
printClusterTable([]v1alpha1.Cluster{
|
|
{
|
|
Server: "my-server",
|
|
Name: "my-name",
|
|
Config: v1alpha1.ClusterConfig{
|
|
Username: "my-username",
|
|
Password: "my-password",
|
|
BearerToken: "my-bearer-token",
|
|
TLSClientConfig: v1alpha1.TLSClientConfig{},
|
|
AWSAuthConfig: nil,
|
|
DisableCompression: false,
|
|
},
|
|
Info: v1alpha1.ClusterInfo{
|
|
ConnectionState: v1alpha1.ConnectionState{
|
|
Status: "my-status",
|
|
Message: "my-message",
|
|
ModifiedAt: &metav1.Time{},
|
|
},
|
|
ServerVersion: "my-version",
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func Test_getRestConfig(t *testing.T) {
|
|
type args struct {
|
|
pathOpts *clientcmd.PathOptions
|
|
ctxName string
|
|
}
|
|
pathOpts := &clientcmd.PathOptions{
|
|
GlobalFile: "./testdata/config",
|
|
LoadingRules: clientcmd.NewDefaultClientConfigLoadingRules(),
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
expected *rest.Config
|
|
wantErr bool
|
|
expectedErr string
|
|
}{
|
|
{
|
|
"Load config for context successfully",
|
|
args{
|
|
pathOpts,
|
|
"argocd2.example.com:443",
|
|
},
|
|
&rest.Config{Host: "argocd2.example.com:443"},
|
|
false,
|
|
"",
|
|
},
|
|
{
|
|
"Load config for current-context successfully",
|
|
args{
|
|
pathOpts,
|
|
"localhost:8080",
|
|
},
|
|
&rest.Config{Host: "localhost:8080"},
|
|
false,
|
|
"",
|
|
},
|
|
{
|
|
"Context not found",
|
|
args{
|
|
pathOpts,
|
|
"not-exist",
|
|
},
|
|
nil,
|
|
true,
|
|
"context not-exist does not exist in kubeconfig",
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, err := getRestConfig(tt.args.pathOpts, tt.args.ctxName)
|
|
if tt.wantErr {
|
|
require.EqualError(t, err, tt.expectedErr)
|
|
} else {
|
|
require.NoErrorf(t, err, "An unexpected error occurred during test %s", tt.name)
|
|
require.Equal(t, tt.expected, got)
|
|
}
|
|
})
|
|
}
|
|
}
|