blob: 8876f275a1e26bf04970fa5b7632b70311f2822f [file] [log] [blame]
// Copyright Istio 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 ingress
import (
"net"
)
import (
"github.com/apache/dubbo-go-pixiu/pkg/test/framework/components/cluster"
"github.com/apache/dubbo-go-pixiu/pkg/test/framework/components/echo"
)
type Instances []Instance
func (i Instances) Callers() echo.Callers {
var out echo.Callers
for _, instance := range i {
out = append(out, instance)
}
return out
}
// Instance represents a deployed Ingress Gateway instance.
type Instance interface {
echo.Caller
// HTTPAddress returns the external HTTP (80) address of the ingress gateway ((or the NodePort address,
// // when in an environment that doesn't support LoadBalancer).
HTTPAddress() (string, int)
// HTTPSAddress returns the external HTTPS (443) address of the ingress gateway (or the NodePort address,
// // when in an environment that doesn't support LoadBalancer).
HTTPSAddress() (string, int)
// TCPAddress returns the external TCP (31400) address of the ingress gateway (or the NodePort address,
// when in an environment that doesn't support LoadBalancer).
TCPAddress() (string, int)
// DiscoveryAddress returns the external XDS (!5012) address on the ingress gateway (or the NodePort address,
// when in an evnironment that doesn't support LoadBalancer).
DiscoveryAddress() net.TCPAddr
// AddressForPort returns the external address of the ingress gateway (or the NodePort address,
// when in an environment that doesn't support LoadBalancer) for the given port.
AddressForPort(port int) (string, int)
// ProxyStats returns proxy stats, or error if failure happens.
ProxyStats() (map[string]int, error)
// PodID returns the name of the ingress gateway pod of index i. Returns error if failed to get the pod
// or the index is out of boundary.
PodID(i int) (string, error)
// Cluster the ingress is deployed to
Cluster() cluster.Cluster
// Namespace of the ingress
Namespace() string
}