123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*
- Copyright 2019 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 service
- import (
- "time"
- "k8s.io/apimachinery/pkg/util/wait"
- "k8s.io/kubernetes/test/e2e/framework"
- e2enetwork "k8s.io/kubernetes/test/e2e/framework/network"
- )
- // TestReachableHTTP tests that the given host serves HTTP on the given port.
- func TestReachableHTTP(host string, port int, timeout time.Duration) {
- TestReachableHTTPWithRetriableErrorCodes(host, port, []int{}, timeout)
- }
- // TestReachableHTTPWithRetriableErrorCodes tests that the given host serves HTTP on the given port with the given retriableErrCodes.
- func TestReachableHTTPWithRetriableErrorCodes(host string, port int, retriableErrCodes []int, timeout time.Duration) {
- pollfn := func() (bool, error) {
- result := e2enetwork.PokeHTTP(host, port, "/echo?msg=hello",
- &e2enetwork.HTTPPokeParams{
- BodyContains: "hello",
- RetriableCodes: retriableErrCodes,
- })
- if result.Status == e2enetwork.HTTPSuccess {
- return true, nil
- }
- return false, nil // caller can retry
- }
- if err := wait.PollImmediate(framework.Poll, timeout, pollfn); err != nil {
- if err == wait.ErrWaitTimeout {
- framework.Failf("Could not reach HTTP service through %v:%v after %v", host, port, timeout)
- } else {
- framework.Failf("Failed to reach HTTP service through %v:%v: %v", host, port, err)
- }
- }
- }
|