Skip to content

Commit

Permalink
Add tests for limit_except
Browse files Browse the repository at this point in the history
  • Loading branch information
ZJfans committed Aug 28, 2024
1 parent 2a71a24 commit 35657b3
Showing 1 changed file with 83 additions and 0 deletions.
83 changes: 83 additions & 0 deletions test/e2e/annotations/limitexcept.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
/*
Copyright 2024 The Kubernetes 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 annotations

import (
"net/http"
"strings"

"github.com/onsi/ginkgo/v2"

"k8s.io/ingress-nginx/test/e2e/framework"
)

var _ = framework.DescribeAnnotation("limit-except", func() {
f := framework.NewDefaultFramework("limitexcept")

ginkgo.BeforeEach(func() {
f.NewEchoDeployment()
})

ginkgo.It("should return 403 when the request is not allowed", func() {
host := "foo.com"

annotations := map[string]string{
"nginx.ingress.kubernetes.io/server-snippet": `
location = / {
return 403;
}`,
"nginx.ingress.kubernetes.io/configuration-snippet": `
limit_except GET {
deny all;
}`,
}

ing := framework.NewSingleIngress(host, "/foo", host, f.Namespace, framework.EchoService, 80, annotations)
f.EnsureIngress(ing)

f.WaitForNginxServer(host,
func(server string) bool {
return strings.Contains(server, `location = / { return 403; }`) &&
strings.Contains(server, `limit_except GET { deny all; }`)
})

ginkgo.By("sending request to foo.com")
f.HTTPTestClient().
POST("/").

Check failure on line 60 in test/e2e/annotations/limitexcept.go

View workflow job for this annotation

GitHub Actions / lint

f.HTTPTestClient().POST undefined (type *httpexpect.HTTPRequest has no field or method POST)

Check failure on line 60 in test/e2e/annotations/limitexcept.go

View workflow job for this annotation

GitHub Actions / lint

f.HTTPTestClient().POST undefined (type *httpexpect.HTTPRequest has no field or method POST)
WithHeader("Host", host).
Expect().
Status(http.StatusForbidden)

f.HTTPTestClient().
GET("/").
WithHeader("Host", host).
Expect().
Status(http.StatusForbidden)

f.HTTPTestClient().
POST("/foo").

Check failure on line 72 in test/e2e/annotations/limitexcept.go

View workflow job for this annotation

GitHub Actions / lint

f.HTTPTestClient().POST undefined (type *httpexpect.HTTPRequest has no field or method POST) (typecheck)

Check failure on line 72 in test/e2e/annotations/limitexcept.go

View workflow job for this annotation

GitHub Actions / lint

f.HTTPTestClient().POST undefined (type *httpexpect.HTTPRequest has no field or method POST)) (typecheck)
WithHeader("Host", host).
Expect().
Status(http.StatusForbidden)

f.HTTPTestClient().
GET("/foo").
WithHeader("Host", host).
Expect().
Status(http.StatusOK)
})
})

0 comments on commit 35657b3

Please sign in to comment.