You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
875 B
29 lines
875 B
2 years ago
|
package create
|
||
|
|
||
|
import (
|
||
|
. "github.com/onsi/ginkgo"
|
||
|
|
||
|
"mashibing.com/pkg/mashibing-deployment/test/framework"
|
||
|
)
|
||
|
|
||
|
// 真正的测试函数
|
||
|
|
||
|
// 测试创建Nodeport模式
|
||
|
func CreateNodeportMsbDeployment(ctx *framework.TestContext, f *framework.Framework) {
|
||
|
Context("Create msbdeployment mod nodeport", func() {
|
||
|
It("Should be create mode nodeport success", func() {})
|
||
|
It("Should be exist msbdeployment", func() {})
|
||
|
It("Should be exist deployment", func() {})
|
||
|
It("Should be exist service", func() {})
|
||
|
It("Should not be exist ingress", func() {})
|
||
|
})
|
||
|
|
||
|
Context("Delete msbdeployment mod nodeport", func() {
|
||
|
It("Should be delete mod nodeport success", func() {})
|
||
|
It("Should not be exist msbdeployment", func() {})
|
||
|
It("Should not be exist deployment", func() {})
|
||
|
It("Should not be exist service", func() {})
|
||
|
It("Should not be exist ingress", func() {})
|
||
|
})
|
||
|
}
|