mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-16 22:37:16 +00:00
* Feat: support to manage the integrations by the CLI and the workflow Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: remove the xml Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: add the unit test for the nacos writer Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Feat: add the integration API Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Feat: make the provider commands to be deprecated Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: make the unit test work Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Feat: rename the integration to the config Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: make the unit test cases work Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Feat: refactor the config commands Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Feat: add the distribution status for the config Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: sort the import packages Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: refine the code style Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: refine the code style Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: get the content format before render the content Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Feat: add some examples Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: the command test cases Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Feat: add the definitions of the workflow step Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: add some tests Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: add some tests Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: change the name Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: retry the CI Signed-off-by: barnettZQG <barnett.zqg@gmail.com> * Fix: refine some words Signed-off-by: barnettZQG <barnett.zqg@gmail.com> Signed-off-by: barnettZQG <barnett.zqg@gmail.com>
107 lines
2.7 KiB
Go
107 lines
2.7 KiB
Go
/*
|
|
Copyright 2022 The KubeVela Authors.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package utils
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
v1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/client/fake"
|
|
)
|
|
|
|
func TestGetDexConnectors(t *testing.T) {
|
|
ctx := context.Background()
|
|
type args struct {
|
|
k8sClient client.Client
|
|
}
|
|
type want struct {
|
|
connectors []map[string]interface{}
|
|
err error
|
|
}
|
|
|
|
ldap := map[string]interface{}{
|
|
"clientID": "clientID",
|
|
"clientSecret": "clientSecret",
|
|
"callbackURL": "redirectURL",
|
|
"xxx": map[string]interface{}{"aaa": "bbb", "ccc": "ddd"},
|
|
}
|
|
data, err := json.Marshal(ldap)
|
|
assert.NoError(t, err)
|
|
|
|
secret := &v1.Secret{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "a",
|
|
Namespace: "vela-system",
|
|
Labels: map[string]string{
|
|
"app.oam.dev/source-of-truth": "from-inner-system",
|
|
"config.oam.dev/catalog": "velacore-config",
|
|
"config.oam.dev/type": "dex-connector",
|
|
"config.oam.dev/sub-type": "ldap",
|
|
"project": "abc",
|
|
},
|
|
},
|
|
Data: map[string][]byte{
|
|
"ldap": data,
|
|
},
|
|
Type: v1.SecretTypeOpaque,
|
|
}
|
|
|
|
k8sClient := fake.NewClientBuilder().WithObjects(secret).Build()
|
|
|
|
testcaes := map[string]struct {
|
|
args args
|
|
want want
|
|
}{
|
|
|
|
"test": {args: args{
|
|
k8sClient: k8sClient,
|
|
},
|
|
want: want{
|
|
connectors: []map[string]interface{}{{
|
|
"id": "a",
|
|
"name": "a",
|
|
"type": "ldap",
|
|
"config": map[string]interface{}{
|
|
"clientID": "clientID",
|
|
"clientSecret": "clientSecret",
|
|
"callbackURL": "redirectURL",
|
|
"xxx": map[string]interface{}{"aaa": "bbb", "ccc": "ddd"},
|
|
},
|
|
}},
|
|
},
|
|
},
|
|
}
|
|
|
|
for name, tc := range testcaes {
|
|
t.Run(name, func(t *testing.T) {
|
|
got, err := GetDexConnectors(ctx, tc.args.k8sClient)
|
|
if err != tc.want.err {
|
|
t.Errorf("%s: GetDexConnectors() error = %v, wantErr %v", name, err, tc.want.err)
|
|
return
|
|
}
|
|
if !reflect.DeepEqual(got, tc.want.connectors) {
|
|
t.Errorf("%s: GetDexConnectors() = %v, want %v", name, got, tc.want.connectors)
|
|
}
|
|
})
|
|
}
|
|
}
|