Remove empty BeforeEach and AfterEach from e2e tests

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-02-12 20:08:38 -03:00
parent b37270bdde
commit 0197ea0dc4
52 changed files with 0 additions and 178 deletions

View file

@ -33,9 +33,6 @@ var _ = framework.IngressNginxDescribe("Configmap change", func() {
f.NewEchoDeployment()
})
AfterEach(func() {
})
It("should reload after an update in the configuration", func() {
host := "configmap-change"

View file

@ -49,9 +49,6 @@ var _ = framework.IngressNginxDescribe("Disabled catch-all", func() {
Expect(err).NotTo(HaveOccurred(), "unexpected error updating ingress controller deployment flags")
})
AfterEach(func() {
})
It("should ignore catch all Ingress", func() {
host := "foo"

View file

@ -38,9 +38,6 @@ var _ = framework.IngressNginxDescribe("X-Forwarded headers", func() {
f.UpdateNginxConfigMapData(setting, "false")
})
AfterEach(func() {
})
It("should trust X-Forwarded headers when setting is true", func() {
host := "forwarded-headers"

View file

@ -37,9 +37,6 @@ var _ = framework.IngressNginxDescribe("Global access block", func() {
f.EnsureIngress(framework.NewSingleIngress(host, "/", host, f.Namespace, framework.EchoService, 80, nil))
})
AfterEach(func() {
})
It("should block CIDRs defined in the ConfigMap", func() {
f.UpdateNginxConfigMapData("block-cidrs", "172.16.0.0/12,192.168.0.0/16,10.0.0.0/8")

View file

@ -50,9 +50,6 @@ var _ = framework.IngressNginxDescribe("Global External Auth", func() {
f.NewHttpbinDeployment()
})
AfterEach(func() {
})
Context("when global external authentication is configured", func() {
BeforeEach(func() {

View file

@ -37,9 +37,6 @@ var _ = framework.IngressNginxDescribe("Ingress class", func() {
f.NewEchoDeploymentWithReplicas(1)
})
AfterEach(func() {
})
Context("Without a specific ingress-class", func() {
It("should ignore Ingress with class", func() {

View file

@ -31,9 +31,6 @@ var _ = framework.IngressNginxDescribe("LuaSharedDict", func() {
f.NewEchoDeployment()
})
AfterEach(func() {
})
It("configures lua shared dicts", func() {
ingress := framework.NewSingleIngress(host, "/", host, f.Namespace, framework.EchoService, 80, nil)
f.EnsureIngress(ingress)

View file

@ -53,9 +53,6 @@ var _ = framework.IngressNginxDescribe("No Auth locations", func() {
f.EnsureIngress(bi)
})
AfterEach(func() {
})
It("should return status code 401 when accessing '/' unauthentication", func() {
f.WaitForNginxServer(host,
func(server string) bool {

View file

@ -38,9 +38,6 @@ var _ = framework.IngressNginxDescribe("Proxy Protocol", func() {
f.UpdateNginxConfigMapData(setting, "false")
})
AfterEach(func() {
})
It("should respect port passed by the PROXY Protocol", func() {
host := "proxy-protocol"

View file

@ -35,9 +35,6 @@ var _ = framework.IngressNginxDescribe("Server Tokens", func() {
f.NewEchoDeployment()
})
AfterEach(func() {
})
It("should not exists Server header in the response", func() {
f.UpdateNginxConfigMapData(serverTokens, "false")

View file

@ -43,9 +43,6 @@ var _ = framework.IngressNginxDescribe("Settings - TLS)", func() {
f.UpdateNginxConfigMapData("use-forwarded-headers", "false")
})
AfterEach(func() {
})
It("should configure TLS protocol", func() {
sslCiphers := "ssl-ciphers"
sslProtocols := "ssl-protocols"