Skip to content

Commit 4ae2406

Browse files
authored
Disable the E2E tests related to plugin_config and stream routes. (#10)
* Disable the E2E tests related to plugin_config and stream routes. * change apisix to api7 --------- Signed-off-by: Ashish Tiwari <[email protected]>
1 parent d63e5e5 commit 4ae2406

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

test/e2e/e2e.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919

2020
"github.com/api7/api7-ingress-controller/pkg/log"
2121

22-
_ "github.com/api7/api7-ingress-controller/test/e2e/suite-annotations"
22+
// _ "github.com/api7/api7-ingress-controller/test/e2e/suite-annotations"
2323
_ "github.com/api7/api7-ingress-controller/test/e2e/suite-chore"
2424
_ "github.com/api7/api7-ingress-controller/test/e2e/suite-cluster"
2525
_ "github.com/api7/api7-ingress-controller/test/e2e/suite-features"

test/e2e/suite-gateway/gateway_tcproute.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"github.com/api7/api7-ingress-controller/test/e2e/scaffold"
2828
)
2929

30-
var _ = ginkgo.Describe("suite-gateway: TCP Route", func() {
30+
var _ = ginkgo.PDescribe("suite-gateway: TCP Route", func() {
3131
s := scaffold.NewDefaultScaffold()
3232
ginkgo.It("create TCPRoute", func() {
3333
backendSvc, backendPorts := s.DefaultHTTPBackend()

test/e2e/suite-gateway/gateway_tlsroute.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jW4KB95bGOTa7r7DM1Up0MbAIwWoeLBGhOIXk7inurZGg+FNjZMA5Lzm6qo=
128128
assert.Equal(ginkgo.GinkgoT(), cert, tls[0].Cert, "tls cert not expect")
129129
}
130130

131-
var _ = ginkgo.Describe("suite-gateway: TLSRoute", func() {
131+
var _ = ginkgo.PDescribe("suite-gateway: TLSRoute", func() {
132132
s := scaffold.NewDefaultScaffold()
133133

134134
ginkgo.It("Basic with 1 Hosts 1 Rule 1 Match 1 BackendRef", func() {

test/e2e/suite-gateway/gateway_udproute.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"github.com/api7/api7-ingress-controller/test/e2e/scaffold"
2727
)
2828

29-
var _ = ginkgo.Describe("suite-gateway: UDP Route", func() {
29+
var _ = ginkgo.PDescribe("suite-gateway: UDP Route", func() {
3030
s := scaffold.NewDefaultScaffold()
3131

3232
ginkgo.It("UDPRoute", func() {

test/e2e/suite-ingress/suite-ingress-resource/stream.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"github.com/api7/api7-ingress-controller/test/e2e/scaffold"
2626
)
2727

28-
var _ = ginkgo.Describe("suite-ingress-resource: ApisixRoute stream Testing", func() {
28+
var _ = ginkgo.PDescribe("suite-ingress-resource: ApisixRoute stream Testing", func() {
2929
suites := func(s *scaffold.Scaffold) {
3030
ginkgo.It("stream tcp proxy", func() {
3131
backendSvc, backendSvcPort := s.DefaultHTTPBackend()

test/e2e/suite-plugins/suite-plugins-other/mqtt-proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"github.com/api7/api7-ingress-controller/test/e2e/scaffold"
2525
)
2626

27-
var _ = ginkgo.Describe("suite-plugins-other: mqtt-proxy plugin", func() {
27+
var _ = ginkgo.PDescribe("suite-plugins-other: mqtt-proxy plugin", func() {
2828
opts := &scaffold.Options{
2929
Name: "mqtt-proxy",
3030
IngressAPISIXReplicas: 1,

test/e2e/suite-plugins/suite-plugins-other/plugin_config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"github.com/api7/api7-ingress-controller/test/e2e/scaffold"
2626
)
2727

28-
var _ = ginkgo.Describe("suite-plugins-other: ApisixPluginConfig", func() {
28+
var _ = ginkgo.PDescribe("suite-plugins-other: ApisixPluginConfig", func() {
2929
s := scaffold.NewDefaultV2Scaffold()
3030
ginkgo.It("add crd from definition", func() {
3131
backendSvc, backendPorts := s.DefaultHTTPBackend()
@@ -595,7 +595,7 @@ spec:
595595
})
596596
})
597597

598-
var _ = ginkgo.Describe("suite-plugins-other: ApisixPluginConfig cross namespace", func() {
598+
var _ = ginkgo.PDescribe("suite-plugins-other: ApisixPluginConfig cross namespace", func() {
599599
s := scaffold.NewScaffold(&scaffold.Options{
600600
NamespaceSelectorLabel: map[string][]string{
601601
"apisix.ingress.watch": {"test"},

0 commit comments

Comments
 (0)