mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-08 18:36:48 +00:00
* Enable "vela show" to support namespaced capability Provide option `-namespace`, if not set, the default namespace is default. If not found, as by default, capabilities are located in vela-system, it will continue to retrieve the capability in vela-system directory. Fix #1520 * add e2e tests * Address comments: Revert env context back Get namespace from env, instead of adding option "-namespace" * fix unittest issue * Address comments Co-authored-by: Jianbo Sun <wonderflow.sun@gmail.com> * fix e2e Co-authored-by: Jianbo Sun <wonderflow.sun@gmail.com>
39 lines
1.1 KiB
Go
39 lines
1.1 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/oam-dev/kubevela/e2e"
|
|
)
|
|
|
|
var _ = ginkgo.Describe("Workload", func() {
|
|
e2e.WorkloadCapabilityListContext()
|
|
})
|
|
|
|
var _ = ginkgo.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)
|
|
})
|