145 lines
3.3 KiB
Go
145 lines
3.3 KiB
Go
/*
|
|
Copyright 2019 The KubeSphere 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 application
|
|
|
|
import (
|
|
"context"
|
|
"path/filepath"
|
|
"reflect"
|
|
"testing"
|
|
|
|
core "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/client-go/kubernetes/scheme"
|
|
"k8s.io/klog/v2"
|
|
appv1beta1 "sigs.k8s.io/application/api/v1beta1"
|
|
"sigs.k8s.io/controller-runtime/pkg/cache"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/envtest"
|
|
|
|
"kubesphere.io/kubesphere/pkg/apiserver/query"
|
|
)
|
|
|
|
var c client.Client
|
|
|
|
func createNamespace(name string, ctx context.Context) {
|
|
namespace := &core.Namespace{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: name,
|
|
},
|
|
}
|
|
err := c.Create(ctx, namespace)
|
|
if err != nil {
|
|
klog.Error(err)
|
|
}
|
|
}
|
|
|
|
func compare(actual *appv1beta1.Application, expects ...*appv1beta1.Application) bool {
|
|
for _, app := range expects {
|
|
if actual.Name == app.Name && actual.Namespace == app.Namespace && reflect.DeepEqual(actual.Labels, app.Labels) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func TestGetListApplications(t *testing.T) {
|
|
e := &envtest.Environment{CRDDirectoryPaths: []string{filepath.Join("..", "..", "..", "..", "..", "config", "crds")}}
|
|
cfg, err := e.Start()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
sch := scheme.Scheme
|
|
if err := appv1beta1.AddToScheme(sch); err != nil {
|
|
t.Fatalf("unable add APIs to scheme: %v", err)
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
ce, _ := cache.New(cfg, cache.Options{Scheme: sch})
|
|
go ce.Start(ctx)
|
|
ce.WaitForCacheSync(ctx)
|
|
|
|
c, _ = client.New(cfg, client.Options{Scheme: sch})
|
|
|
|
var labelSet1 = map[string]string{"foo-1": "bar-1"}
|
|
var labelSet2 = map[string]string{"foo-2": "bar-2"}
|
|
|
|
var ns = "ns-1"
|
|
testCases := []*appv1beta1.Application{
|
|
{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "app-1",
|
|
Namespace: ns,
|
|
Labels: labelSet1,
|
|
},
|
|
},
|
|
{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "app-2",
|
|
Namespace: ns,
|
|
Labels: labelSet2,
|
|
},
|
|
},
|
|
}
|
|
|
|
// ctx := context.TODO()
|
|
createNamespace(ns, ctx)
|
|
|
|
for _, app := range testCases {
|
|
if err = c.Create(ctx, app); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
getter := New(ce)
|
|
|
|
results, err := getter.List(ns, &query.Query{})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if results.TotalItems != len(testCases) {
|
|
t.Fatal("TotalItems is not match")
|
|
}
|
|
|
|
if len(results.Items) != len(testCases) {
|
|
t.Fatal("Items numbers is not match mock data")
|
|
}
|
|
|
|
for _, app := range results.Items {
|
|
app, err := app.(*appv1beta1.Application)
|
|
if !err {
|
|
t.Fatal(err)
|
|
}
|
|
if !compare(app, testCases...) {
|
|
t.Errorf("The results %v not match testcases %v", results.Items, testCases)
|
|
}
|
|
}
|
|
|
|
result, err := getter.Get(ns, "app-1")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
app := result.(*appv1beta1.Application)
|
|
if !compare(app, testCases...) {
|
|
t.Errorf("The results %v not match testcases %v", result, testCases)
|
|
}
|
|
}
|