mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-17 06:46:47 +00:00
69 lines
2.2 KiB
Go
69 lines
2.2 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 model
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestApplicationList_ToTableBody(t *testing.T) {
|
|
appList := &ApplicationList{{"Name", "Namespace", "Phase", "", "", "", "CreateTime"}}
|
|
assert.Equal(t, appList.ToTableBody(), [][]string{{"Name", "Namespace", "Phase", "", "", "", "CreateTime"}})
|
|
}
|
|
|
|
var _ = Describe("test Application", func() {
|
|
ctx := context.Background()
|
|
ctx = context.WithValue(ctx, &CtxKeyNamespace, "")
|
|
|
|
It("application num", func() {
|
|
num, err := applicationNum(ctx, k8sClient)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(num).To(Equal(1))
|
|
})
|
|
It("running application num", func() {
|
|
num, err := runningApplicationNum(ctx, k8sClient)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(num).To(Equal(1))
|
|
})
|
|
It("application running ratio", func() {
|
|
num := ApplicationRunningNum(cfg)
|
|
Expect(num).To(Equal("1/1"))
|
|
})
|
|
It("list applications", func() {
|
|
applicationsList, err := ListApplications(ctx, k8sClient)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(len(applicationsList)).To(Equal(1))
|
|
})
|
|
It("load application info", func() {
|
|
application, err := LoadApplication(k8sClient, "first-vela-app", "default")
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(application.Name).To(Equal("first-vela-app"))
|
|
Expect(application.Namespace).To(Equal("default"))
|
|
Expect(len(application.Spec.Components)).To(Equal(1))
|
|
})
|
|
It("application resource topology", func() {
|
|
topology, err := ApplicationResourceTopology(k8sClient, "first-vela-app", "default")
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(len(topology)).To(Equal(4))
|
|
})
|
|
})
|