Files
kubevela/e2e/workload/workload_test.go
Zheng Xi Zhou ecef32a7f3 Fix: add flag --label to filer components and traits (#2217)
Added flag `--flag` to filter when executing `vela componnets` and
`vela traits`

Fix https://github.com/oam-dev/kubevela.io/pull/222#discussion_r699214816
2021-09-02 20:51:34 +08:00

48 lines
1.4 KiB
Go

/*
Copyright 2021 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 e2e
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/oam-dev/kubevela/e2e"
)
var _ = Describe("Workload", func() {
e2e.WorkloadCapabilityListContext()
Context("list components with `label` filter", func() {
It("list components with the specified label", func() {
output, err := e2e.Exec("vela components --label type=terraform")
Expect(err).NotTo(HaveOccurred())
Expect(output).To(ContainSubstring("alibaba-oss"))
})
})
})
var _ = Describe("Test vela show", func() {
e2e.ShowCapabilityReference("show webservice", "webservice")
env := "namespace-xxxfwrr23erfm"
e2e.EnvInitWithNamespaceOptionContext("env init", env, env)
e2e.EnvSetContext("env switch", env)
e2e.ShowCapabilityReference("show webservice", "webservice")
e2e.EnvSetContext("env switch", "default")
e2e.EnvDeleteContext("env delete", env)
})