
Every ginkgo callback should return immediately when a timeout occurs or the test run manually gets aborted with CTRL-C. To do that, they must take a ctx parameter and pass it through to all code which might block. This is a first automated step towards that: the additional parameter got added with sed -i 's/\(framework.ConformanceIt\|ginkgo.It\)\(.*\)func() {$/\1\2func(ctx context.Context) {/' \ $(git grep -l -e framework.ConformanceIt -e ginkgo.It ) $GOPATH/bin/goimports -w $(git status | grep modified: | sed -e 's/.* //') log_test.go was left unchanged.
111 lines
3.4 KiB
Go
111 lines
3.4 KiB
Go
/*
|
|
Copyright 2020 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 apimachinery
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/onsi/ginkgo/v2"
|
|
"k8s.io/client-go/rest"
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
|
admissionapi "k8s.io/pod-security-admission/api"
|
|
)
|
|
|
|
const (
|
|
invalidTimeoutMessageExpected = "invalid timeout specified in the request URL"
|
|
)
|
|
|
|
var _ = SIGDescribe("Server request timeout", func() {
|
|
f := framework.NewDefaultFramework("request-timeout")
|
|
f.NamespacePodSecurityEnforceLevel = admissionapi.LevelPrivileged
|
|
|
|
ginkgo.It("should return HTTP status code 400 if the user specifies an invalid timeout in the request URL", func(ctx context.Context) {
|
|
rt := getRoundTripper(f)
|
|
req := newRequest(f, "invalid")
|
|
|
|
response, err := rt.RoundTrip(req)
|
|
framework.ExpectNoError(err)
|
|
defer response.Body.Close()
|
|
|
|
if response.StatusCode != http.StatusBadRequest {
|
|
framework.Failf("expected HTTP status code: %d, but got: %d", http.StatusBadRequest, response.StatusCode)
|
|
}
|
|
|
|
messageGot := readBody(response)
|
|
if !strings.Contains(messageGot, invalidTimeoutMessageExpected) {
|
|
framework.Failf("expected HTTP status message to contain: %s, but got: %s", invalidTimeoutMessageExpected, messageGot)
|
|
}
|
|
})
|
|
|
|
ginkgo.It("the request should be served with a default timeout if the specified timeout in the request URL exceeds maximum allowed", func(ctx context.Context) {
|
|
rt := getRoundTripper(f)
|
|
// Choose a timeout that exceeds the default timeout (60s) enforced by the apiserver
|
|
req := newRequest(f, "3m")
|
|
|
|
response, err := rt.RoundTrip(req)
|
|
framework.ExpectNoError(err)
|
|
defer response.Body.Close()
|
|
|
|
if response.StatusCode != http.StatusOK {
|
|
framework.Failf("expected HTTP status code: %d, but got: %d", http.StatusOK, response.StatusCode)
|
|
}
|
|
})
|
|
|
|
ginkgo.It("default timeout should be used if the specified timeout in the request URL is 0s", func(ctx context.Context) {
|
|
rt := getRoundTripper(f)
|
|
req := newRequest(f, "0s")
|
|
|
|
response, err := rt.RoundTrip(req)
|
|
framework.ExpectNoError(err)
|
|
defer response.Body.Close()
|
|
|
|
if response.StatusCode != http.StatusOK {
|
|
framework.Failf("expected HTTP status code: %d, but got: %d", http.StatusOK, response.StatusCode)
|
|
}
|
|
})
|
|
})
|
|
|
|
func getRoundTripper(f *framework.Framework) http.RoundTripper {
|
|
config := rest.CopyConfig(f.ClientConfig())
|
|
|
|
// ensure we don't enforce any transport timeout from the client side.
|
|
config.Timeout = 0
|
|
|
|
roundTripper, err := rest.TransportFor(config)
|
|
framework.ExpectNoError(err)
|
|
|
|
return roundTripper
|
|
}
|
|
|
|
func newRequest(f *framework.Framework, timeout string) *http.Request {
|
|
req, err := http.NewRequest(http.MethodGet, f.ClientSet.CoreV1().RESTClient().Get().
|
|
Param("timeout", timeout).AbsPath("version").URL().String(), nil)
|
|
framework.ExpectNoError(err)
|
|
|
|
return req
|
|
}
|
|
|
|
func readBody(response *http.Response) string {
|
|
raw, err := io.ReadAll(response.Body)
|
|
framework.ExpectNoError(err)
|
|
|
|
return string(raw)
|
|
}
|