2020-12-15 15:40:05 +00:00
|
|
|
package gateway
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/traefik/traefik/v2/pkg/config/dynamic"
|
|
|
|
"github.com/traefik/traefik/v2/pkg/provider"
|
|
|
|
"github.com/traefik/traefik/v2/pkg/tls"
|
2021-11-09 10:34:06 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2021-07-15 15:20:08 +00:00
|
|
|
"k8s.io/utils/pointer"
|
2021-11-09 10:34:06 +00:00
|
|
|
"sigs.k8s.io/gateway-api/apis/v1alpha2"
|
2020-12-15 15:40:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ provider.Provider = (*Provider)(nil)
|
|
|
|
|
|
|
|
func TestLoadHTTPRoutes(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
ingressClass string
|
|
|
|
paths []string
|
|
|
|
expected *dynamic.Configuration
|
|
|
|
entryPoints map[string]Entrypoint
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Empty",
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty because missing entry point",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/simple.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":443",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty because no http route defined",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/without_httproute.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by missing GatewayClass",
|
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/without_gatewayclass.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty caused by unknown GatewayClass controller desc",
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/gatewayclass_with_unknown_controller.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty caused by multi ports service with wrong TargetPort",
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/with_wrong_service_port.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by HTTPS without TLS",
|
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":443",
|
|
|
|
}},
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/with_protocol_https_without_tls.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
|
|
|
desc: "Empty caused by HTTPS with TLS passthrough",
|
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":443",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "httproute/with_protocol_https_with_tls_passthrough.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by HTTPRoute with protocol TLS",
|
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":443",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "httproute/with_protocol_tls.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by HTTPRoute with protocol TCP",
|
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":443",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "httproute/with_protocol_tcp.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by TCPRoute with protocol HTTP",
|
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":9000",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tcproute/with_protocol_http.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by TCPRoute with protocol HTTPS",
|
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":9000",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tcproute/with_protocol_https.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by TLSRoute with protocol TCP",
|
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":9001",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_protocol_tcp.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by TLSRoute with protocol HTTP",
|
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":9001",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_protocol_http.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by TLSRoute with protocol HTTPS",
|
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":9001",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_protocol_https.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused use http entrypoint with tls activated with HTTPRoute",
|
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":443",
|
|
|
|
HasHTTPTLSConf: true,
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "httproute/simple_with_tls_entrypoint.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused unsupported HTTPRoute rule",
|
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "httproute/simple_with_bad_rule.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty because no tcp route defined tls protocol",
|
|
|
|
paths: []string{"services.yml", "tcproute/without_tcproute_tls_protocol.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8080",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty caused by HTTPRoute with TLS configuration",
|
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "httproute/with_tls_configuration.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple HTTPRoute",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/simple.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
2021-02-02 18:36:04 +00:00
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2021-02-02 18:36:04 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-02-02 18:36:04 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple HTTPRoute, with api@internal service",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/simple_to_api_internal.yml"},
|
2021-02-02 18:36:04 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-02-02 18:36:04 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "api@internal",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`)",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-02-02 18:36:04 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple HTTPRoute, with myservice@file service",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/simple_cross_provider.yml"},
|
2021-02-02 18:36:04 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-02-02 18:36:04 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "service@file",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
{
|
2020-12-15 15:40:05 +00:00
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple HTTPRoute with protocol HTTPS",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/with_protocol_https.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"websecure": {
|
|
|
|
Address: ":443",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-websecure-1c0cf64bde37d9d0df06": {
|
|
|
|
EntryPoints: []string{"websecure"},
|
|
|
|
Service: "default-http-app-1-my-gateway-websecure-1c0cf64bde37d9d0df06-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`)",
|
|
|
|
TLS: &dynamic.RouterTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-1-my-gateway-websecure-1c0cf64bde37d9d0df06-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple HTTPRoute, with multiple hosts",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/with_multiple_host.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-web-75dd1ad561e42725558a": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-1-my-gateway-web-75dd1ad561e42725558a-wrr",
|
|
|
|
Rule: "Host(`foo.com`, `bar.com`) && PathPrefix(`/`)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-1-my-gateway-web-75dd1ad561e42725558a-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
2021-04-29 15:18:04 +00:00
|
|
|
{
|
|
|
|
desc: "Simple HTTPRoute, with two hosts one wildcard",
|
|
|
|
paths: []string{"services.yml", "with_two_hosts_one_wildcard.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-web-2dbd7883f5537db39bca": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-1-my-gateway-web-2dbd7883f5537db39bca-wrr",
|
|
|
|
Rule: "(Host(`foo.com`) || HostRegexp(`{subdomain:[a-zA-Z0-9-]+}.bar.com`)) && PathPrefix(`/`)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-1-my-gateway-web-2dbd7883f5537db39bca-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple HTTPRoute, with one host and a wildcard",
|
|
|
|
paths: []string{"services.yml", "with_two_hosts_wildcard.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-http-app-1-my-gateway-web-eb1490f180299bf5ed29": {
|
2021-04-29 15:18:04 +00:00
|
|
|
EntryPoints: []string{"web"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-http-app-1-my-gateway-web-eb1490f180299bf5ed29-wrr",
|
|
|
|
Rule: "(Host(`foo.com`) || HostRegexp(`{subdomain:[a-zA-Z0-9-]+}.foo.com`)) && PathPrefix(`/`)",
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-http-app-1-my-gateway-web-eb1490f180299bf5ed29-wrr": {
|
2021-04-29 15:18:04 +00:00
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
|
|
|
desc: "One HTTPRoute with two different rules",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/two_rules.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`)",
|
|
|
|
Service: "default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06-wrr",
|
|
|
|
},
|
|
|
|
"default-http-app-1-my-gateway-web-d737b4933fa88e68ab8a": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bir`)",
|
|
|
|
Service: "default-http-app-1-my-gateway-web-d737b4933fa88e68ab8a-wrr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-http-app-1-my-gateway-web-d737b4933fa88e68ab8a-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami2-8080",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami2-8080": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.3:8080",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.4:8080",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "One HTTPRoute with one rule two targets",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/one_rule_two_targets.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`)",
|
|
|
|
Service: "default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06-wrr",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "default-whoami2-8080",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami2-8080": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.3:8080",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.4:8080",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Two Gateways and one HTTPRoute",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/with_two_gateways_one_httproute.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {
|
|
|
|
Address: ":80",
|
|
|
|
},
|
|
|
|
"websecure": {
|
|
|
|
Address: ":443",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-http-web-1c0cf64bde37d9d0df06": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-1-my-gateway-http-web-1c0cf64bde37d9d0df06-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`)",
|
|
|
|
},
|
|
|
|
"default-http-app-1-my-gateway-https-websecure-1c0cf64bde37d9d0df06": {
|
|
|
|
EntryPoints: []string{"websecure"},
|
|
|
|
Service: "default-http-app-1-my-gateway-https-websecure-1c0cf64bde37d9d0df06-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`)",
|
|
|
|
TLS: &dynamic.RouterTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-1-my-gateway-http-web-1c0cf64bde37d9d0df06-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-http-app-1-my-gateway-https-websecure-1c0cf64bde37d9d0df06-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Gateway with two listeners and one HTTPRoute",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/with_two_listeners_one_httproute.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {
|
|
|
|
Address: ":80",
|
|
|
|
},
|
|
|
|
"websecure": {
|
|
|
|
Address: ":443",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`)",
|
|
|
|
},
|
|
|
|
"default-http-app-1-my-gateway-websecure-1c0cf64bde37d9d0df06": {
|
|
|
|
EntryPoints: []string{"websecure"},
|
|
|
|
Service: "default-http-app-1-my-gateway-websecure-1c0cf64bde37d9d0df06-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`)",
|
|
|
|
TLS: &dynamic.RouterTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-1-my-gateway-web-1c0cf64bde37d9d0df06-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-http-app-1-my-gateway-websecure-1c0cf64bde37d9d0df06-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple HTTPRoute, with several rules",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "httproute/with_several_rules.yml"},
|
2020-12-15 15:40:05 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":80",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-http-app-1-my-gateway-web-330d644a7f2079e8f454": {
|
2020-12-15 15:40:05 +00:00
|
|
|
EntryPoints: []string{"web"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-http-app-1-my-gateway-web-330d644a7f2079e8f454-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && PathPrefix(`/bar`) && Headers(`my-header`,`foo`) && Headers(`my-header2`,`bar`)",
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
"default-http-app-1-my-gateway-web-fe80e69a38713941ea22": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-1-my-gateway-web-fe80e69a38713941ea22-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/bar`) && Headers(`my-header`,`bar`)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-http-app-1-my-gateway-web-330d644a7f2079e8f454-wrr": {
|
2020-12-15 15:40:05 +00:00
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-http-app-1-my-gateway-web-fe80e69a38713941ea22-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
2021-10-04 13:46:08 +00:00
|
|
|
{
|
|
|
|
desc: "HTTPRoute with Same namespace selector",
|
|
|
|
paths: []string{"services.yml", "httproute/with_namespace_same.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":80"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-default-my-gateway-web-efde1997778109a1f6eb": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-default-my-gateway-web-efde1997778109a1f6eb-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/foo`)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-default-my-gateway-web-efde1997778109a1f6eb-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PassHostHeader: pointer.Bool(true),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "HTTPRoute with All namespace selector",
|
|
|
|
paths: []string{"services.yml", "httproute/with_namespace_all.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":80"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-default-my-gateway-web-efde1997778109a1f6eb": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-default-my-gateway-web-efde1997778109a1f6eb-wrr",
|
|
|
|
Rule: "Host(`foo.com`) && Path(`/foo`)",
|
|
|
|
},
|
|
|
|
"bar-http-app-bar-my-gateway-web-66f5c78d03d948e36597": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "bar-http-app-bar-my-gateway-web-66f5c78d03d948e36597-wrr",
|
|
|
|
Rule: "Host(`bar.com`) && Path(`/bar`)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-default-my-gateway-web-efde1997778109a1f6eb-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-http-app-bar-my-gateway-web-66f5c78d03d948e36597-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoami-bar-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PassHostHeader: pointer.Bool(true),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-whoami-bar-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.11:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.12:80",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PassHostHeader: pointer.Bool(true),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "HTTPRoute with namespace selector",
|
2021-10-04 13:46:08 +00:00
|
|
|
paths: []string{"services.yml", "httproute/with_namespace_selector.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":80"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"bar-http-app-bar-my-gateway-web-66f5c78d03d948e36597": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "bar-http-app-bar-my-gateway-web-66f5c78d03d948e36597-wrr",
|
|
|
|
Rule: "Host(`bar.com`) && Path(`/bar`)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"bar-http-app-bar-my-gateway-web-66f5c78d03d948e36597-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoami-bar-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-whoami-bar-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.11:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.12:80",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PassHostHeader: pointer.Bool(true),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
2020-12-15 15:40:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
if test.expected == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
p := Provider{EntryPoints: test.entryPoints}
|
|
|
|
conf := p.loadConfigurationFromGateway(context.Background(), newClientMock(test.paths...))
|
|
|
|
assert.Equal(t, test.expected, conf)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-20 09:50:12 +00:00
|
|
|
func TestLoadTCPRoutes(t *testing.T) {
|
2020-12-15 15:40:05 +00:00
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
2021-05-20 09:50:12 +00:00
|
|
|
ingressClass string
|
|
|
|
paths []string
|
|
|
|
expected *dynamic.Configuration
|
|
|
|
entryPoints map[string]Entrypoint
|
2020-12-15 15:40:05 +00:00
|
|
|
}{
|
|
|
|
{
|
2021-05-20 09:50:12 +00:00
|
|
|
desc: "Empty",
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty because missing entry point",
|
|
|
|
paths: []string{"services.yml", "tcproute/simple.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8000",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty because no tcp route defined",
|
|
|
|
paths: []string{"services.yml", "tcproute/without_tcproute.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8080",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by missing GatewayClass",
|
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8080",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tcproute/without_gatewayclass.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty caused by unknown GatewayClass controller desc",
|
2021-05-20 09:50:12 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8080",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tcproute/gatewayclass_with_unknown_controller.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty caused by HTTPRoute with TLS configuration",
|
|
|
|
entryPoints: map[string]Entrypoint{"web": {
|
|
|
|
Address: ":8080",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tcproute/with_tls_configuration.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by multi ports service with wrong TargetPort",
|
2021-05-20 09:50:12 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8080",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tcproute/with_wrong_service_port.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Simple TCPRoute",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "tcproute/simple.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-1-my-tcp-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-1-my-tcp-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-1-my-tcp-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Multiple TCPRoute",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "tcproute/with_multiple_routes.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tcp-1": {Address: ":9000"},
|
|
|
|
"tcp-2": {Address: ":10000"},
|
|
|
|
"not-tcp": {Address: ":11000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-1-my-tcp-gateway-tcp-1-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp-1"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-1-my-tcp-gateway-tcp-1-e3b0c44298fc1c149afb-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
"default-tcp-app-2-my-tcp-gateway-tcp-2-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp-2"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-2-my-tcp-gateway-tcp-2-e3b0c44298fc1c149afb-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-1-my-tcp-gateway-tcp-1-e3b0c44298fc1c149afb-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-2-my-tcp-gateway-tcp-2-e3b0c44298fc1c149afb-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-10000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-10000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:10000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:10000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "TCPRoute with multiple rules",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "tcproute/with_multiple_rules.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tcp-1": {Address: ":9000"},
|
|
|
|
"tcp-2": {Address: ":10000"},
|
|
|
|
"not-tcp": {Address: ":11000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-11-09 10:34:06 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-my-tcp-gateway-tcp-1-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp-1"},
|
|
|
|
Service: "default-tcp-app-my-tcp-gateway-tcp-1-e3b0c44298fc1c149afb-wrr",
|
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-11-09 10:34:06 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
|
|
|
"default-tcp-app-my-tcp-gateway-tcp-1-e3b0c44298fc1c149afb-wrr": {
|
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-tcp-app-my-tcp-gateway-tcp-1-e3b0c44298fc1c149afb-wrr-0",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "default-tcp-app-my-tcp-gateway-tcp-1-e3b0c44298fc1c149afb-wrr-1",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-tcp-app-my-tcp-gateway-tcp-1-e3b0c44298fc1c149afb-wrr-0": {
|
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-tcp-app-my-tcp-gateway-tcp-1-e3b0c44298fc1c149afb-wrr-1": {
|
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-10000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-10000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:10000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:10000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple TCPRoute, with backendRef",
|
|
|
|
paths: []string{"services.yml", "tcproute/simple_cross_provider.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-1-my-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-1-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-1-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "service@file",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple TCPRoute, with TLS",
|
|
|
|
paths: []string{"services.yml", "tcproute/with_protocol_tls.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-1-my-gateway-tls-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-1-my-gateway-tls-e3b0c44298fc1c149afb-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-1-my-gateway-tls-e3b0c44298fc1c149afb-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-10-04 13:46:08 +00:00
|
|
|
desc: "TCPRoute with Same namespace selector",
|
|
|
|
paths: []string{"services.yml", "tcproute/with_namespace_same.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tcp": {Address: ":9000"},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-10-04 13:46:08 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-default-my-tcp-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-default-my-tcp-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-10-04 13:46:08 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-default-my-tcp-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-10-04 13:46:08 +00:00
|
|
|
desc: "TCPRoute with All namespace selector",
|
|
|
|
paths: []string{"services.yml", "tcproute/with_namespace_all.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-10-04 13:46:08 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-default-my-tcp-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-default-my-tcp-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
"bar-tcp-app-bar-my-tcp-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "bar-tcp-app-bar-my-tcp-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-default-my-tcp-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"bar-tcp-app-bar-my-tcp-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoamitcp-bar-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-whoamitcp-bar-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.13:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.14:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "TCPRoute with namespace selector",
|
2021-10-04 13:46:08 +00:00
|
|
|
paths: []string{"services.yml", "tcproute/with_namespace_selector.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"bar-tcp-app-bar-my-tcp-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "bar-tcp-app-bar-my-tcp-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"bar-tcp-app-bar-my-tcp-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoamitcp-bar-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-whoamitcp-bar-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.13:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.14:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
if test.expected == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
p := Provider{EntryPoints: test.entryPoints}
|
|
|
|
conf := p.loadConfigurationFromGateway(context.Background(), newClientMock(test.paths...))
|
|
|
|
assert.Equal(t, test.expected, conf)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLoadTLSRoutes(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
ingressClass string
|
|
|
|
paths []string
|
|
|
|
expected *dynamic.Configuration
|
|
|
|
entryPoints map[string]Entrypoint
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Empty",
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty because no matching entry point",
|
|
|
|
paths: []string{"services.yml", "tlsroute/simple_TLS_to_TCPRoute.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8000",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty because no tls route defined",
|
|
|
|
paths: []string{"services.yml", "tlsroute/without_tlsroute.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8080",
|
|
|
|
}},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by missing GatewayClass",
|
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8080",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tlsroute/without_gatewayclass.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty caused by unknown GatewayClass controller desc",
|
2021-05-20 09:50:12 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8080",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tlsroute/gatewayclass_with_unknown_controller.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty caused by multi ports service with wrong TargetPort",
|
2021-05-20 09:50:12 +00:00
|
|
|
entryPoints: map[string]Entrypoint{"TCP": {
|
|
|
|
Address: ":8080",
|
|
|
|
}},
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_wrong_service_port.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty caused by mixed routes with wrong parent ref",
|
2021-05-20 09:50:12 +00:00
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tcp": {
|
|
|
|
Address: ":9000",
|
|
|
|
},
|
|
|
|
"tcp-tls": {
|
|
|
|
Address: ":9443",
|
|
|
|
},
|
|
|
|
"http": {
|
|
|
|
Address: ":80",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
paths: []string{"services.yml", "mixed/with_wrong_routes_selector.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty caused by simple TLSRoute with invalid SNI matching",
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_invalid_SNI_matching.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9001"},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Simple TLS listener to TCPRoute in Terminate mode",
|
|
|
|
paths: []string{"services.yml", "tlsroute/simple_TLS_to_TCPRoute.yml"},
|
2021-05-20 09:50:12 +00:00
|
|
|
entryPoints: map[string]Entrypoint{
|
2021-11-09 10:34:06 +00:00
|
|
|
"tcp": {Address: ":9000"},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-11-09 10:34:06 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-1-my-tls-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
|
|
|
Service: "default-tcp-app-1-my-tls-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-11-09 10:34:06 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
|
|
|
"default-tcp-app-1-my-tls-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Simple TLS listener to TCPRoute in Passthrough mode",
|
|
|
|
paths: []string{"services.yml", "tlsroute/simple_TLS_to_TCPRoute_passthrough.yml"},
|
2021-05-20 09:50:12 +00:00
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-1-my-tls-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-1-my-tls-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
2021-11-09 10:34:06 +00:00
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-1-my-tls-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple TLS listener to TLSRoute",
|
|
|
|
paths: []string{"services.yml", "tlsroute/simple_TLS_to_TLSRoute.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-tls-gateway-tcp-f0dd0dd89f82eae1c270": {
|
2021-05-20 09:50:12 +00:00
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-1-my-tls-gateway-tcp-f0dd0dd89f82eae1c270-wrr-0",
|
|
|
|
Rule: "HostSNI(`foo.example.com`)",
|
2021-05-20 09:50:12 +00:00
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-tls-gateway-tcp-f0dd0dd89f82eae1c270-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Multiple TLSRoute",
|
2021-05-20 09:50:12 +00:00
|
|
|
paths: []string{"services.yml", "tlsroute/with_multiple_routes_kind.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9000"},
|
|
|
|
"tcp": {Address: ":10000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-1-my-tls-gateway-tls-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-1-my-tls-gateway-tls-e3b0c44298fc1c149afb-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{},
|
|
|
|
},
|
|
|
|
"default-tls-app-1-my-tls-gateway-tcp-673acf455cb2dab0b43a": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-1-my-tls-gateway-tcp-673acf455cb2dab0b43a-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-1-my-tls-gateway-tls-e3b0c44298fc1c149afb-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-tls-gateway-tcp-673acf455cb2dab0b43a-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-10000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-10000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:10000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:10000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple TLSRoute, with backendRef",
|
|
|
|
paths: []string{"services.yml", "tlsroute/simple_cross_provider.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-1-my-gateway-tls-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-1-my-gateway-tls-e3b0c44298fc1c149afb-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-1-my-gateway-tls-e3b0c44298fc1c149afb-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "service@file",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple TLSRoute, with Passthrough and TLS configuration should raise a warn",
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_passthrough_tls.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9001"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-gateway-tls-f0dd0dd89f82eae1c270": {
|
2021-05-20 09:50:12 +00:00
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-1-my-gateway-tls-f0dd0dd89f82eae1c270-wrr-0",
|
|
|
|
Rule: "HostSNI(`foo.example.com`)",
|
2021-05-20 09:50:12 +00:00
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-gateway-tls-f0dd0dd89f82eae1c270-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple TLSRoute, with Passthrough",
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_passthrough.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9001"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-gateway-tls-f0dd0dd89f82eae1c270": {
|
2021-05-20 09:50:12 +00:00
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-1-my-gateway-tls-f0dd0dd89f82eae1c270-wrr-0",
|
|
|
|
Rule: "HostSNI(`foo.example.com`)",
|
2021-05-20 09:50:12 +00:00
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-gateway-tls-f0dd0dd89f82eae1c270-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple TLSRoute, with single SNI matching",
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_SNI_matching.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9001"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-gateway-tls-f0dd0dd89f82eae1c270": {
|
2021-05-20 09:50:12 +00:00
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-1-my-gateway-tls-f0dd0dd89f82eae1c270-wrr-0",
|
|
|
|
Rule: "HostSNI(`foo.example.com`)",
|
2021-05-20 09:50:12 +00:00
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-gateway-tls-f0dd0dd89f82eae1c270-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Simple TLSRoute, with multiple SNI matching",
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_multiple_SNI_matching.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9001"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-gateway-tls-339184c3296a9c2c39fa": {
|
2021-05-20 09:50:12 +00:00
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-1-my-gateway-tls-339184c3296a9c2c39fa-wrr-0",
|
|
|
|
Rule: "HostSNI(`foo.example.com`,`bar.example.com`)",
|
2021-05-20 09:50:12 +00:00
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-gateway-tls-339184c3296a9c2c39fa-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-10-04 13:46:08 +00:00
|
|
|
desc: "TLSRoute with Same namespace selector",
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_namespace_same.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9001"},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-10-04 13:46:08 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tls-app-default-my-gateway-tls-06ae57dcf13ab4c60ee5": {
|
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-default-my-gateway-tls-06ae57dcf13ab4c60ee5-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`foo.default`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-10-04 13:46:08 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-default-my-gateway-tls-06ae57dcf13ab4c60ee5-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "TLSRoute with All namespace selector",
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_namespace_all.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9001"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tls-app-default-my-gateway-tls-06ae57dcf13ab4c60ee5": {
|
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-default-my-gateway-tls-06ae57dcf13ab4c60ee5-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`foo.default`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-tls-app-bar-my-gateway-tls-2279fe75c5156dc5eb26": {
|
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "bar-tls-app-bar-my-gateway-tls-2279fe75c5156dc5eb26-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`foo.bar`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-default-my-gateway-tls-06ae57dcf13ab4c60ee5-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"bar-tls-app-bar-my-gateway-tls-2279fe75c5156dc5eb26-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoamitcp-bar-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-whoamitcp-bar-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.13:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.14:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "TLSRoute with namespace selector",
|
2021-10-04 13:46:08 +00:00
|
|
|
paths: []string{"services.yml", "tlsroute/with_namespace_selector.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"tls": {Address: ":9001"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"bar-tls-app-bar-my-gateway-tls-2279fe75c5156dc5eb26": {
|
|
|
|
EntryPoints: []string{"tls"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "bar-tls-app-bar-my-gateway-tls-2279fe75c5156dc5eb26-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`foo.bar`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"bar-tls-app-bar-my-gateway-tls-2279fe75c5156dc5eb26-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoamitcp-bar-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-whoamitcp-bar-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.13:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.14:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "TLSRoute with multiple rules",
|
|
|
|
paths: []string{"services.yml", "tlsroute/with_multiple_rules.yml"},
|
2021-05-20 09:50:12 +00:00
|
|
|
entryPoints: map[string]Entrypoint{
|
2021-11-09 10:34:06 +00:00
|
|
|
"tcp-1": {Address: ":9000"},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-11-09 10:34:06 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tls-app-my-gateway-tcp-1-673acf455cb2dab0b43a": {
|
|
|
|
EntryPoints: []string{"tcp-1"},
|
|
|
|
Service: "default-tls-app-my-gateway-tcp-1-673acf455cb2dab0b43a-wrr",
|
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-11-09 10:34:06 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
|
|
|
"default-tls-app-my-gateway-tcp-1-673acf455cb2dab0b43a-wrr": {
|
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-tls-app-my-gateway-tcp-1-673acf455cb2dab0b43a-wrr-0",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "default-tls-app-my-gateway-tcp-1-673acf455cb2dab0b43a-wrr-1",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-tls-app-my-gateway-tcp-1-673acf455cb2dab0b43a-wrr-0": {
|
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-tls-app-my-gateway-tcp-1-673acf455cb2dab0b43a-wrr-1": {
|
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-10000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-10000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:10000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:10000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
if test.expected == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
p := Provider{EntryPoints: test.entryPoints}
|
|
|
|
conf := p.loadConfigurationFromGateway(context.Background(), newClientMock(test.paths...))
|
|
|
|
assert.Equal(t, test.expected, conf)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLoadMixedRoutes(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
ingressClass string
|
|
|
|
paths []string
|
|
|
|
expected *dynamic.Configuration
|
|
|
|
entryPoints map[string]Entrypoint
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Empty",
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by unsupported listener.Protocol",
|
|
|
|
paths: []string{"services.yml", "mixed/with_bad_listener_protocol.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":9080"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by unsupported listener.Route.Kind",
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":9080"},
|
|
|
|
},
|
|
|
|
paths: []string{"services.yml", "mixed/with_bad_listener_route_kind.yml"},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty caused by listener.Protocol does not support listener.Route.Kind",
|
|
|
|
paths: []string{"services.yml", "mixed/with_incompatible_protocol_and_route_kind.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":9080"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Mixed routes",
|
|
|
|
paths: []string{"services.yml", "mixed/simple.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":9080"},
|
|
|
|
"websecure": {Address: ":9443"},
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
"tls-1": {Address: ":10000"},
|
|
|
|
"tls-2": {Address: ":11000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-1-my-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-1-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
"default-tcp-app-1-my-gateway-tls-1-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tls-1"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-1-my-gateway-tls-1-e3b0c44298fc1c149afb-wrr-0",
|
2021-05-20 09:50:12 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-gateway-tls-2-59130f7db6718b7700c1": {
|
2021-05-20 09:50:12 +00:00
|
|
|
EntryPoints: []string{"tls-2"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-1-my-gateway-tls-2-59130f7db6718b7700c1-wrr-0",
|
|
|
|
Rule: "HostSNI(`pass.tls.foo.example.com`)",
|
2021-05-20 09:50:12 +00:00
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-06-11 13:30:05 +00:00
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
2021-05-20 09:50:12 +00:00
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-1-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-1-my-gateway-tls-1-e3b0c44298fc1c149afb-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-1-my-gateway-tls-2-59130f7db6718b7700c1-wrr-0": {
|
2021-05-20 09:50:12 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-1-my-gateway-web-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-1-my-gateway-web-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
},
|
|
|
|
"default-http-app-1-my-gateway-websecure-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"websecure"},
|
|
|
|
Service: "default-http-app-1-my-gateway-websecure-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
TLS: &dynamic.RouterTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-1-my-gateway-web-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-http-app-1-my-gateway-websecure-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
PassHostHeader: pointer.Bool(true),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-15 12:02:11 +00:00
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-06-23 09:58:09 +00:00
|
|
|
desc: "Empty caused by mixed routes with multiple listeners using same hostname, port and protocol",
|
|
|
|
paths: []string{"services.yml", "mixed/with_multiple_listeners_using_same_hostname_port_protocol.yml"},
|
2021-05-20 09:50:12 +00:00
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":9080"},
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
"tls": {Address: ":9001"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
2021-06-11 13:30:05 +00:00
|
|
|
Routers: map[string]*dynamic.TCPRouter{},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
2021-07-15 12:02:11 +00:00
|
|
|
Routers: map[string]*dynamic.Router{},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{},
|
|
|
|
},
|
|
|
|
},
|
2021-10-04 13:46:08 +00:00
|
|
|
{
|
|
|
|
desc: "Mixed routes with Same namespace selector",
|
|
|
|
paths: []string{"services.yml", "mixed/with_namespace_same.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":9080"},
|
|
|
|
"websecure": {Address: ":9443"},
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
"tls-1": {Address: ":10000"},
|
|
|
|
"tls-2": {Address: ":11000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-default-my-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-default-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
"default-tcp-app-default-my-gateway-tls-1-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tls-1"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-default-my-gateway-tls-1-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-default-my-gateway-tls-2-59130f7db6718b7700c1": {
|
2021-10-04 13:46:08 +00:00
|
|
|
EntryPoints: []string{"tls-2"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-default-my-gateway-tls-2-59130f7db6718b7700c1-wrr-0",
|
|
|
|
Rule: "HostSNI(`pass.tls.foo.example.com`)",
|
2021-10-04 13:46:08 +00:00
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-default-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-default-my-gateway-tls-1-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-default-my-gateway-tls-2-59130f7db6718b7700c1-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-default-my-gateway-web-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-default-my-gateway-web-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
},
|
|
|
|
"default-http-app-default-my-gateway-websecure-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"websecure"},
|
|
|
|
Service: "default-http-app-default-my-gateway-websecure-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
TLS: &dynamic.RouterTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-default-my-gateway-web-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-http-app-default-my-gateway-websecure-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PassHostHeader: pointer.Bool(true),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Mixed routes with All namespace selector",
|
|
|
|
paths: []string{"services.yml", "mixed/with_namespace_all.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":9080"},
|
|
|
|
"websecure": {Address: ":9443"},
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
"tls-1": {Address: ":10000"},
|
|
|
|
"tls-2": {Address: ":11000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-default-my-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-default-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
"default-tcp-app-default-my-gateway-tls-1-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tls-1"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tcp-app-default-my-gateway-tls-1-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-default-my-gateway-tls-2-59130f7db6718b7700c1": {
|
2021-10-04 13:46:08 +00:00
|
|
|
EntryPoints: []string{"tls-2"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "default-tls-app-default-my-gateway-tls-2-59130f7db6718b7700c1-wrr-0",
|
|
|
|
Rule: "HostSNI(`pass.tls.foo.example.com`)",
|
2021-10-04 13:46:08 +00:00
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-tcp-app-bar-my-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "bar-tcp-app-bar-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
"bar-tcp-app-bar-my-gateway-tls-1-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tls-1"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "bar-tcp-app-bar-my-gateway-tls-1-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-default-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tcp-app-default-my-gateway-tls-1-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"default-tls-app-default-my-gateway-tls-2-59130f7db6718b7700c1-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-whoamitcp-bar-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.13:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.14:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"bar-tcp-app-bar-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoamitcp-bar-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"bar-tcp-app-bar-my-gateway-tls-1-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoamitcp-bar-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-default-my-gateway-web-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-default-my-gateway-web-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
},
|
|
|
|
"default-http-app-default-my-gateway-websecure-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"websecure"},
|
|
|
|
Service: "default-http-app-default-my-gateway-websecure-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
TLS: &dynamic.RouterTLSConfig{},
|
|
|
|
},
|
|
|
|
"bar-http-app-bar-my-gateway-web-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "bar-http-app-bar-my-gateway-web-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
},
|
|
|
|
"bar-http-app-bar-my-gateway-websecure-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"websecure"},
|
|
|
|
Service: "bar-http-app-bar-my-gateway-websecure-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
TLS: &dynamic.RouterTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-default-my-gateway-web-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-http-app-default-my-gateway-websecure-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PassHostHeader: pointer.Bool(true),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-whoami-bar-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.11:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.12:80",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PassHostHeader: pointer.Bool(true),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-http-app-bar-my-gateway-web-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoami-bar-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-http-app-bar-my-gateway-websecure-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoami-bar-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Mixed routes with Selector Route Binding",
|
|
|
|
paths: []string{"services.yml", "mixed/with_namespace_selector.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":9080"},
|
|
|
|
"websecure": {Address: ":9443"},
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
"tls-1": {Address: ":10000"},
|
|
|
|
"tls-2": {Address: ":11000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"bar-tcp-app-bar-my-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "bar-tcp-app-bar-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
"bar-tcp-app-bar-my-gateway-tls-1-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tls-1"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "bar-tcp-app-bar-my-gateway-tls-1-e3b0c44298fc1c149afb-wrr-0",
|
2021-10-04 13:46:08 +00:00
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"bar-tls-app-bar-my-gateway-tls-2-59130f7db6718b7700c1": {
|
2021-10-04 13:46:08 +00:00
|
|
|
EntryPoints: []string{"tls-2"},
|
2021-11-09 10:34:06 +00:00
|
|
|
Service: "bar-tls-app-bar-my-gateway-tls-2-59130f7db6718b7700c1-wrr-0",
|
|
|
|
Rule: "HostSNI(`pass.tls.foo.example.com`)",
|
2021-10-04 13:46:08 +00:00
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{
|
|
|
|
Passthrough: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{
|
|
|
|
"bar-whoamitcp-bar-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.13:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.14:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"bar-tcp-app-bar-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoamitcp-bar-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"bar-tcp-app-bar-my-gateway-tls-1-e3b0c44298fc1c149afb-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoamitcp-bar-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
"bar-tls-app-bar-my-gateway-tls-2-59130f7db6718b7700c1-wrr-0": {
|
2021-10-04 13:46:08 +00:00
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoamitcp-bar-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"bar-http-app-bar-my-gateway-web-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "bar-http-app-bar-my-gateway-web-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
},
|
|
|
|
"bar-http-app-bar-my-gateway-websecure-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"websecure"},
|
|
|
|
Service: "bar-http-app-bar-my-gateway-websecure-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
TLS: &dynamic.RouterTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"bar-whoami-bar-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.11:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.12:80",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PassHostHeader: pointer.Bool(true),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-http-app-bar-my-gateway-web-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoami-bar-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"bar-http-app-bar-my-gateway-websecure-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "bar-whoami-bar-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
{
|
|
|
|
desc: "Mixed routes with core group",
|
|
|
|
paths: []string{"services.yml", "mixed/with_core_group.yml"},
|
|
|
|
entryPoints: map[string]Entrypoint{
|
|
|
|
"web": {Address: ":9080"},
|
|
|
|
"websecure": {Address: ":9443"},
|
|
|
|
"tcp": {Address: ":9000"},
|
|
|
|
"tls": {Address: ":10000"},
|
|
|
|
},
|
|
|
|
expected: &dynamic.Configuration{
|
|
|
|
UDP: &dynamic.UDPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.UDPRouter{},
|
|
|
|
Services: map[string]*dynamic.UDPService{},
|
|
|
|
},
|
|
|
|
TCP: &dynamic.TCPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.TCPRouter{
|
|
|
|
"default-tcp-app-default-my-gateway-tcp-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tcp"},
|
|
|
|
Service: "default-tcp-app-default-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0",
|
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
"default-tcp-app-default-my-gateway-tls-e3b0c44298fc1c149afb": {
|
|
|
|
EntryPoints: []string{"tls"},
|
|
|
|
Service: "default-tcp-app-default-my-gateway-tls-e3b0c44298fc1c149afb-wrr-0",
|
|
|
|
Rule: "HostSNI(`*`)",
|
|
|
|
TLS: &dynamic.RouterTCPTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.TCPMiddleware{},
|
|
|
|
Services: map[string]*dynamic.TCPService{
|
|
|
|
"default-tcp-app-default-my-gateway-tcp-e3b0c44298fc1c149afb-wrr-0": {
|
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-tcp-app-default-my-gateway-tls-e3b0c44298fc1c149afb-wrr-0": {
|
|
|
|
Weighted: &dynamic.TCPWeightedRoundRobin{
|
|
|
|
Services: []dynamic.TCPWRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoamitcp-9000",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoamitcp-9000": {
|
|
|
|
LoadBalancer: &dynamic.TCPServersLoadBalancer{
|
|
|
|
Servers: []dynamic.TCPServer{
|
|
|
|
{
|
|
|
|
Address: "10.10.0.9:9000",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Address: "10.10.0.10:9000",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HTTP: &dynamic.HTTPConfiguration{
|
|
|
|
Routers: map[string]*dynamic.Router{
|
|
|
|
"default-http-app-default-my-gateway-web-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"web"},
|
|
|
|
Service: "default-http-app-default-my-gateway-web-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
},
|
|
|
|
"default-http-app-default-my-gateway-websecure-a431b128267aabc954fd": {
|
|
|
|
EntryPoints: []string{"websecure"},
|
|
|
|
Service: "default-http-app-default-my-gateway-websecure-a431b128267aabc954fd-wrr",
|
|
|
|
Rule: "PathPrefix(`/`)",
|
|
|
|
TLS: &dynamic.RouterTLSConfig{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Middlewares: map[string]*dynamic.Middleware{},
|
|
|
|
Services: map[string]*dynamic.Service{
|
|
|
|
"default-http-app-default-my-gateway-web-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-http-app-default-my-gateway-websecure-a431b128267aabc954fd-wrr": {
|
|
|
|
Weighted: &dynamic.WeightedRoundRobin{
|
|
|
|
Services: []dynamic.WRRService{
|
|
|
|
{
|
|
|
|
Name: "default-whoami-80",
|
|
|
|
Weight: func(i int) *int { return &i }(1),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"default-whoami-80": {
|
|
|
|
LoadBalancer: &dynamic.ServersLoadBalancer{
|
|
|
|
Servers: []dynamic.Server{
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.1:80",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
URL: "http://10.10.0.2:80",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PassHostHeader: pointer.Bool(true),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ServersTransports: map[string]*dynamic.ServersTransport{},
|
|
|
|
},
|
|
|
|
TLS: &dynamic.TLSConfiguration{
|
|
|
|
Certificates: []*tls.CertAndStores{
|
|
|
|
{
|
|
|
|
Certificate: tls.Certificate{
|
|
|
|
CertFile: tls.FileOrContent("-----BEGIN CERTIFICATE-----\n-----END CERTIFICATE-----"),
|
|
|
|
KeyFile: tls.FileOrContent("-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-05-20 09:50:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
if test.expected == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
p := Provider{EntryPoints: test.entryPoints}
|
|
|
|
conf := p.loadConfigurationFromGateway(context.Background(), newClientMock(test.paths...))
|
|
|
|
assert.Equal(t, test.expected, conf)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-09 10:34:06 +00:00
|
|
|
func Test_hostRule(t *testing.T) {
|
2021-05-20 09:50:12 +00:00
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames []v1alpha2.Hostname
|
2021-05-20 09:50:12 +00:00
|
|
|
expectedRule string
|
|
|
|
expectErr bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Empty rule and matches",
|
|
|
|
expectedRule: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "One Host",
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames: []v1alpha2.Hostname{
|
|
|
|
"Foo",
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
expectedRule: "Host(`Foo`)",
|
|
|
|
},
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
|
|
|
desc: "Multiple Hosts",
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames: []v1alpha2.Hostname{
|
|
|
|
"Foo",
|
|
|
|
"Bar",
|
|
|
|
"Bir",
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
expectedRule: "Host(`Foo`, `Bar`, `Bir`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple Hosts with empty one",
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames: []v1alpha2.Hostname{
|
|
|
|
"Foo",
|
|
|
|
"",
|
|
|
|
"Bir",
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
2021-04-29 15:18:04 +00:00
|
|
|
expectedRule: "",
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple empty hosts",
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames: []v1alpha2.Hostname{
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
expectedRule: "",
|
|
|
|
},
|
2021-04-29 15:18:04 +00:00
|
|
|
{
|
|
|
|
desc: "Several Host and wildcard",
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames: []v1alpha2.Hostname{
|
|
|
|
"*.bar.foo",
|
|
|
|
"bar.foo",
|
|
|
|
"foo.foo",
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
expectedRule: "(Host(`bar.foo`, `foo.foo`) || HostRegexp(`{subdomain:[a-zA-Z0-9-]+}.bar.foo`))",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Host with wildcard",
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames: []v1alpha2.Hostname{
|
|
|
|
"*.bar.foo",
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
expectedRule: "HostRegexp(`{subdomain:[a-zA-Z0-9-]+}.bar.foo`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Alone wildcard",
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames: []v1alpha2.Hostname{
|
|
|
|
"*",
|
|
|
|
"*.foo.foo",
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple alone Wildcard",
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames: []v1alpha2.Hostname{
|
|
|
|
"foo.foo",
|
|
|
|
"*.*",
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
expectErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple Wildcard",
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames: []v1alpha2.Hostname{
|
|
|
|
"foo.foo",
|
|
|
|
"*.toto.*.bar.foo",
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
expectErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple subdomain with misplaced wildcard",
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames: []v1alpha2.Hostname{
|
|
|
|
"foo.foo",
|
|
|
|
"toto.*.bar.foo",
|
2021-04-29 15:18:04 +00:00
|
|
|
},
|
|
|
|
expectErr: true,
|
|
|
|
},
|
2020-12-15 15:40:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
2021-11-09 10:34:06 +00:00
|
|
|
rule, err := hostRule(test.hostnames)
|
2020-12-15 15:40:05 +00:00
|
|
|
|
2021-04-29 15:18:04 +00:00
|
|
|
assert.Equal(t, test.expectedRule, rule)
|
|
|
|
if test.expectErr {
|
|
|
|
assert.Error(t, err)
|
|
|
|
}
|
2020-12-15 15:40:05 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-09 10:34:06 +00:00
|
|
|
func Test_extractRule(t *testing.T) {
|
2020-12-15 15:40:05 +00:00
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule v1alpha2.HTTPRouteRule
|
2020-12-15 15:40:05 +00:00
|
|
|
hostRule string
|
|
|
|
expectedRule string
|
|
|
|
expectedError bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Empty rule and matches",
|
|
|
|
expectedRule: "PathPrefix(`/`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "One Host rule without matches",
|
|
|
|
hostRule: "Host(`foo.com`)",
|
|
|
|
expectedRule: "Host(`foo.com`) && PathPrefix(`/`)",
|
|
|
|
},
|
2021-07-15 15:20:08 +00:00
|
|
|
{
|
|
|
|
desc: "One HTTPRouteMatch with nil HTTPHeaderMatch",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2021-07-15 15:20:08 +00:00
|
|
|
{Headers: nil},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "One HTTPRouteMatch with nil HTTPHeaderMatch Type",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2021-07-15 15:20:08 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Headers: []v1alpha2.HTTPHeaderMatch{
|
|
|
|
{Type: nil, Name: "foo", Value: "bar"},
|
2021-07-15 15:20:08 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "One HTTPRouteMatch with nil HTTPPathMatch",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2021-07-15 15:20:08 +00:00
|
|
|
{Path: nil},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "One HTTPRouteMatch with nil HTTPPathMatch Type",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2021-07-15 15:20:08 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Path: &v1alpha2.HTTPPathMatch{
|
2021-07-15 15:20:08 +00:00
|
|
|
Type: nil,
|
|
|
|
Value: pointer.String("/foo/"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "One HTTPRouteMatch with nil HTTPPathMatch Values",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2021-07-15 15:20:08 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Path: &v1alpha2.HTTPPathMatch{
|
|
|
|
Type: pathMatchTypePtr(v1alpha2.PathMatchExact),
|
2021-07-15 15:20:08 +00:00
|
|
|
Value: nil,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "",
|
|
|
|
},
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
|
|
|
desc: "One Path in matches",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Path: &v1alpha2.HTTPPathMatch{
|
|
|
|
Type: pathMatchTypePtr(v1alpha2.PathMatchExact),
|
2021-07-15 15:20:08 +00:00
|
|
|
Value: pointer.String("/foo/"),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "Path(`/foo/`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "One Path in matches and another unknown",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Path: &v1alpha2.HTTPPathMatch{
|
|
|
|
Type: pathMatchTypePtr(v1alpha2.PathMatchExact),
|
2021-07-15 15:20:08 +00:00
|
|
|
Value: pointer.String("/foo/"),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Path: &v1alpha2.HTTPPathMatch{
|
|
|
|
Type: pathMatchTypePtr("unknown"),
|
2021-07-15 15:20:08 +00:00
|
|
|
Value: pointer.String("/foo/"),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedError: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "One Path in matches and another empty",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Path: &v1alpha2.HTTPPathMatch{
|
|
|
|
Type: pathMatchTypePtr(v1alpha2.PathMatchExact),
|
2021-07-15 15:20:08 +00:00
|
|
|
Value: pointer.String("/foo/"),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "Path(`/foo/`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Path OR Header rules",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Path: &v1alpha2.HTTPPathMatch{
|
|
|
|
Type: pathMatchTypePtr(v1alpha2.PathMatchExact),
|
2021-07-15 15:20:08 +00:00
|
|
|
Value: pointer.String("/foo/"),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Headers: []v1alpha2.HTTPHeaderMatch{
|
|
|
|
{
|
|
|
|
Type: headerMatchTypePtr(v1alpha2.HeaderMatchExact),
|
|
|
|
Name: "my-header",
|
|
|
|
Value: "foo",
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "Path(`/foo/`) || Headers(`my-header`,`foo`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Path && Header rules",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Path: &v1alpha2.HTTPPathMatch{
|
|
|
|
Type: pathMatchTypePtr(v1alpha2.PathMatchExact),
|
2021-07-15 15:20:08 +00:00
|
|
|
Value: pointer.String("/foo/"),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
Headers: []v1alpha2.HTTPHeaderMatch{
|
|
|
|
{
|
|
|
|
Type: headerMatchTypePtr(v1alpha2.HeaderMatchExact),
|
|
|
|
Name: "my-header",
|
|
|
|
Value: "foo",
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "Path(`/foo/`) && Headers(`my-header`,`foo`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Host && Path && Header rules",
|
|
|
|
hostRule: "Host(`foo.com`)",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Path: &v1alpha2.HTTPPathMatch{
|
|
|
|
Type: pathMatchTypePtr(v1alpha2.PathMatchExact),
|
2021-07-15 15:20:08 +00:00
|
|
|
Value: pointer.String("/foo/"),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
Headers: []v1alpha2.HTTPHeaderMatch{
|
|
|
|
{
|
|
|
|
Type: headerMatchTypePtr(v1alpha2.HeaderMatchExact),
|
|
|
|
Name: "my-header",
|
|
|
|
Value: "foo",
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "Host(`foo.com`) && Path(`/foo/`) && Headers(`my-header`,`foo`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Host && (Path || Header) rules",
|
|
|
|
hostRule: "Host(`foo.com`)",
|
2021-11-09 10:34:06 +00:00
|
|
|
routeRule: v1alpha2.HTTPRouteRule{
|
|
|
|
Matches: []v1alpha2.HTTPRouteMatch{
|
2020-12-15 15:40:05 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Path: &v1alpha2.HTTPPathMatch{
|
|
|
|
Type: pathMatchTypePtr(v1alpha2.PathMatchExact),
|
2021-07-15 15:20:08 +00:00
|
|
|
Value: pointer.String("/foo/"),
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Headers: []v1alpha2.HTTPHeaderMatch{
|
|
|
|
{
|
|
|
|
Type: headerMatchTypePtr(v1alpha2.HeaderMatchExact),
|
|
|
|
Name: "my-header",
|
|
|
|
Value: "foo",
|
2020-12-15 15:40:05 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedRule: "Host(`foo.com`) && (Path(`/foo/`) || Headers(`my-header`,`foo`))",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
rule, err := extractRule(test.routeRule, test.hostRule)
|
|
|
|
if test.expectedError {
|
|
|
|
assert.Error(t, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, test.expectedRule, rule)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2021-05-20 09:50:12 +00:00
|
|
|
|
2021-11-09 10:34:06 +00:00
|
|
|
func Test_hostSNIRule(t *testing.T) {
|
2021-05-20 09:50:12 +00:00
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
2021-11-09 10:34:06 +00:00
|
|
|
hostnames []v1alpha2.Hostname
|
2021-05-20 09:50:12 +00:00
|
|
|
expectedRule string
|
|
|
|
expectError bool
|
|
|
|
}{
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty",
|
2021-05-20 09:50:12 +00:00
|
|
|
expectedRule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Empty hostname",
|
|
|
|
hostnames: []v1alpha2.Hostname{""},
|
2021-05-20 09:50:12 +00:00
|
|
|
expectedRule: "HostSNI(`*`)",
|
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Unsupported wildcard",
|
|
|
|
hostnames: []v1alpha2.Hostname{"*"},
|
|
|
|
expectError: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple malformed wildcard",
|
|
|
|
hostnames: []v1alpha2.Hostname{"*.foo.*"},
|
|
|
|
expectError: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Some empty hostnames",
|
|
|
|
hostnames: []v1alpha2.Hostname{"foo", "", "bar"},
|
|
|
|
expectedRule: "HostSNI(`foo`,`bar`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Valid hostname",
|
|
|
|
hostnames: []v1alpha2.Hostname{"foo"},
|
|
|
|
expectedRule: "HostSNI(`foo`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple valid hostnames",
|
|
|
|
hostnames: []v1alpha2.Hostname{"foo", "bar"},
|
|
|
|
expectedRule: "HostSNI(`foo`,`bar`)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple overlapping hostnames",
|
|
|
|
hostnames: []v1alpha2.Hostname{"foo", "bar", "foo", "baz"},
|
|
|
|
expectedRule: "HostSNI(`foo`,`bar`,`baz`)",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
rule, err := hostSNIRule(test.hostnames)
|
|
|
|
if test.expectError {
|
|
|
|
assert.Error(t, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, test.expectedRule, rule)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_shouldAttach(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
gateway *v1alpha2.Gateway
|
|
|
|
listener v1alpha2.Listener
|
|
|
|
routeNamespace string
|
|
|
|
routeSpec v1alpha2.CommonRouteSpec
|
|
|
|
expectedAttach bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "No ParentRefs",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "default",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: nil,
|
|
|
|
},
|
|
|
|
expectedAttach: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Unsupported Kind",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "default",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
SectionName: sectionNamePtr("bar"),
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: namespacePtr("default"),
|
|
|
|
Kind: kindPtr("Foo"),
|
|
|
|
Group: groupPtr(v1alpha2.GroupName),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
expectedAttach: false,
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Unsupported Group",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "default",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
SectionName: sectionNamePtr("bar"),
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: namespacePtr("default"),
|
|
|
|
Kind: kindPtr("Gateway"),
|
|
|
|
Group: groupPtr("foo.com"),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
expectedAttach: false,
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Kind is nil",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "default",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
SectionName: sectionNamePtr("bar"),
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: namespacePtr("default"),
|
|
|
|
Group: groupPtr(v1alpha2.GroupName),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
expectedAttach: false,
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Group is nil",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "default",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
SectionName: sectionNamePtr("bar"),
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: namespacePtr("default"),
|
|
|
|
Kind: kindPtr("Gateway"),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
expectedAttach: false,
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "SectionName does not match a listener desc",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "default",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
SectionName: sectionNamePtr("bar"),
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: namespacePtr("default"),
|
|
|
|
Group: groupPtr(v1alpha2.GroupName),
|
|
|
|
Kind: kindPtr("Gateway"),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
expectedAttach: false,
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Namespace does not match the Gateway namespace",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "default",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
SectionName: sectionNamePtr("bar"),
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: namespacePtr("bar"),
|
|
|
|
Group: groupPtr(v1alpha2.GroupName),
|
|
|
|
Kind: kindPtr("Gateway"),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
expectedAttach: false,
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Route namespace does not match the Gateway namespace",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "bar",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
SectionName: sectionNamePtr("bar"),
|
|
|
|
Name: "gateway",
|
|
|
|
Group: groupPtr(v1alpha2.GroupName),
|
|
|
|
Kind: kindPtr("Gateway"),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
expectedAttach: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Unsupported Kind",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "default",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
|
|
|
{
|
|
|
|
SectionName: sectionNamePtr("bar"),
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: namespacePtr("default"),
|
|
|
|
Kind: kindPtr("Gateway"),
|
|
|
|
Group: groupPtr(v1alpha2.GroupName),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedAttach: false,
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Route namespace matches the Gateway namespace",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "default",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
SectionName: sectionNamePtr("foo"),
|
|
|
|
Name: "gateway",
|
|
|
|
Kind: kindPtr("Gateway"),
|
|
|
|
Group: groupPtr(v1alpha2.GroupName),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedAttach: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Namespace matches the Gateway namespace",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "bar",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
SectionName: sectionNamePtr("foo"),
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: namespacePtr("default"),
|
|
|
|
Kind: kindPtr("Gateway"),
|
|
|
|
Group: groupPtr(v1alpha2.GroupName),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
expectedAttach: true,
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
desc: "Only one ParentRef matches the Gateway",
|
|
|
|
gateway: &v1alpha2.Gateway{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "gateway",
|
|
|
|
Namespace: "default",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Name: "foo",
|
|
|
|
},
|
|
|
|
routeNamespace: "bar",
|
|
|
|
routeSpec: v1alpha2.CommonRouteSpec{
|
|
|
|
ParentRefs: []v1alpha2.ParentRef{
|
2021-05-20 09:50:12 +00:00
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Name: "gateway2",
|
|
|
|
Namespace: namespacePtr("default"),
|
|
|
|
Kind: kindPtr("Gateway"),
|
|
|
|
Group: groupPtr(v1alpha2.GroupName),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
{
|
2021-11-09 10:34:06 +00:00
|
|
|
Name: "gateway",
|
|
|
|
Namespace: namespacePtr("default"),
|
|
|
|
Kind: kindPtr("Gateway"),
|
|
|
|
Group: groupPtr(v1alpha2.GroupName),
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-09 10:34:06 +00:00
|
|
|
expectedAttach: true,
|
2021-05-20 09:50:12 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
2021-11-09 10:34:06 +00:00
|
|
|
got := shouldAttach(test.gateway, test.listener, test.routeNamespace, test.routeSpec)
|
|
|
|
assert.Equal(t, test.expectedAttach, got)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_matchingHostnames(t *testing.T) {
|
2022-06-23 09:58:09 +00:00
|
|
|
testCases := []struct {
|
2021-11-09 10:34:06 +00:00
|
|
|
desc string
|
|
|
|
listener v1alpha2.Listener
|
|
|
|
hostnames []v1alpha2.Hostname
|
|
|
|
want []v1alpha2.Hostname
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Empty",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Only listener hostname",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Hostname: hostnamePtr("foo.com"),
|
|
|
|
},
|
|
|
|
want: []v1alpha2.Hostname{"foo.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Only Route hostname",
|
|
|
|
hostnames: []v1alpha2.Hostname{"foo.com"},
|
|
|
|
want: []v1alpha2.Hostname{"foo.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Matching hostname",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Hostname: hostnamePtr("foo.com"),
|
|
|
|
},
|
|
|
|
hostnames: []v1alpha2.Hostname{"foo.com"},
|
|
|
|
want: []v1alpha2.Hostname{"foo.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Matching hostname with wildcard",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Hostname: hostnamePtr("*.foo.com"),
|
|
|
|
},
|
|
|
|
hostnames: []v1alpha2.Hostname{"*.foo.com"},
|
|
|
|
want: []v1alpha2.Hostname{"*.foo.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Matching subdomain with listener wildcard",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Hostname: hostnamePtr("*.foo.com"),
|
|
|
|
},
|
|
|
|
hostnames: []v1alpha2.Hostname{"bar.foo.com"},
|
|
|
|
want: []v1alpha2.Hostname{"bar.foo.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Matching subdomain with route hostname wildcard",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Hostname: hostnamePtr("bar.foo.com"),
|
|
|
|
},
|
|
|
|
hostnames: []v1alpha2.Hostname{"*.foo.com"},
|
|
|
|
want: []v1alpha2.Hostname{"bar.foo.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Non matching root domain with listener wildcard",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Hostname: hostnamePtr("*.foo.com"),
|
|
|
|
},
|
|
|
|
hostnames: []v1alpha2.Hostname{"foo.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Non matching root domain with route hostname wildcard",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Hostname: hostnamePtr("foo.com"),
|
|
|
|
},
|
|
|
|
hostnames: []v1alpha2.Hostname{"*.foo.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple route hostnames with one matching route hostname",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Hostname: hostnamePtr("*.foo.com"),
|
|
|
|
},
|
|
|
|
hostnames: []v1alpha2.Hostname{"bar.com", "test.foo.com", "test.buz.com"},
|
|
|
|
want: []v1alpha2.Hostname{"test.foo.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple route hostnames with non matching route hostname",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Hostname: hostnamePtr("*.fuz.com"),
|
|
|
|
},
|
|
|
|
hostnames: []v1alpha2.Hostname{"bar.com", "test.foo.com", "test.buz.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Multiple route hostnames with multiple matching route hostnames",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Hostname: hostnamePtr("*.foo.com"),
|
|
|
|
},
|
|
|
|
hostnames: []v1alpha2.Hostname{"toto.foo.com", "test.foo.com", "test.buz.com"},
|
|
|
|
want: []v1alpha2.Hostname{"toto.foo.com", "test.foo.com"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-06-23 09:58:09 +00:00
|
|
|
for _, test := range testCases {
|
2021-11-09 10:34:06 +00:00
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
got := matchingHostnames(test.listener, test.hostnames)
|
|
|
|
assert.Equal(t, test.want, got)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_getAllowedRoutes(t *testing.T) {
|
2022-06-23 09:58:09 +00:00
|
|
|
testCases := []struct {
|
2021-11-09 10:34:06 +00:00
|
|
|
desc string
|
|
|
|
listener v1alpha2.Listener
|
|
|
|
supportedRouteKinds []v1alpha2.RouteGroupKind
|
|
|
|
wantKinds []v1alpha2.RouteGroupKind
|
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Empty",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Empty AllowedRoutes",
|
|
|
|
supportedRouteKinds: []v1alpha2.RouteGroupKind{
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
},
|
|
|
|
wantKinds: []v1alpha2.RouteGroupKind{
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "AllowedRoutes with unsupported Group",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
AllowedRoutes: &v1alpha2.AllowedRoutes{
|
|
|
|
Kinds: []v1alpha2.RouteGroupKind{{
|
|
|
|
Kind: kindTLSRoute, Group: groupPtr("foo"),
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
supportedRouteKinds: []v1alpha2.RouteGroupKind{
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "AllowedRoutes with nil Group",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
AllowedRoutes: &v1alpha2.AllowedRoutes{
|
|
|
|
Kinds: []v1alpha2.RouteGroupKind{{
|
|
|
|
Kind: kindTLSRoute, Group: nil,
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
supportedRouteKinds: []v1alpha2.RouteGroupKind{
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "AllowedRoutes with unsupported Kind",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
AllowedRoutes: &v1alpha2.AllowedRoutes{
|
|
|
|
Kinds: []v1alpha2.RouteGroupKind{{
|
|
|
|
Kind: "foo", Group: groupPtr(v1alpha2.GroupName),
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
supportedRouteKinds: []v1alpha2.RouteGroupKind{
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Supported AllowedRoutes",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
AllowedRoutes: &v1alpha2.AllowedRoutes{
|
|
|
|
Kinds: []v1alpha2.RouteGroupKind{{
|
|
|
|
Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName),
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
supportedRouteKinds: []v1alpha2.RouteGroupKind{
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
},
|
|
|
|
wantKinds: []v1alpha2.RouteGroupKind{
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "Supported AllowedRoutes with duplicates",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
AllowedRoutes: &v1alpha2.AllowedRoutes{
|
|
|
|
Kinds: []v1alpha2.RouteGroupKind{
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
{Kind: kindTCPRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
{Kind: kindTCPRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
supportedRouteKinds: []v1alpha2.RouteGroupKind{
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
{Kind: kindTCPRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
},
|
|
|
|
wantKinds: []v1alpha2.RouteGroupKind{
|
|
|
|
{Kind: kindTLSRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
{Kind: kindTCPRoute, Group: groupPtr(v1alpha2.GroupName)},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-06-23 09:58:09 +00:00
|
|
|
for _, test := range testCases {
|
2021-11-09 10:34:06 +00:00
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
got, conditions := getAllowedRouteKinds(test.listener, test.supportedRouteKinds)
|
|
|
|
if test.wantErr {
|
|
|
|
require.NotEmpty(t, conditions, "no conditions")
|
2021-05-20 09:50:12 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-09 10:34:06 +00:00
|
|
|
require.Len(t, conditions, 0)
|
|
|
|
assert.Equal(t, test.wantKinds, got)
|
2021-05-20 09:50:12 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2021-11-09 10:34:06 +00:00
|
|
|
|
2022-06-23 09:58:09 +00:00
|
|
|
func Test_makeListenerKey(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
listener v1alpha2.Listener
|
|
|
|
expectedKey string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "empty",
|
|
|
|
expectedKey: "||0",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "listener with port, protocol and hostname",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Port: 443,
|
|
|
|
Protocol: v1alpha2.HTTPSProtocolType,
|
|
|
|
Hostname: hostnamePtr("www.example.com"),
|
|
|
|
},
|
|
|
|
expectedKey: "HTTPS|www.example.com|443",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "listener with port, protocol and nil hostname",
|
|
|
|
listener: v1alpha2.Listener{
|
|
|
|
Port: 443,
|
|
|
|
Protocol: v1alpha2.HTTPSProtocolType,
|
|
|
|
},
|
|
|
|
expectedKey: "HTTPS||443",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
test := test
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
assert.Equal(t, test.expectedKey, makeListenerKey(test.listener))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-09 10:34:06 +00:00
|
|
|
func hostnamePtr(hostname v1alpha2.Hostname) *v1alpha2.Hostname {
|
|
|
|
return &hostname
|
|
|
|
}
|
|
|
|
|
|
|
|
func groupPtr(group v1alpha2.Group) *v1alpha2.Group {
|
|
|
|
return &group
|
|
|
|
}
|
|
|
|
|
|
|
|
func sectionNamePtr(sectionName v1alpha2.SectionName) *v1alpha2.SectionName {
|
|
|
|
return §ionName
|
|
|
|
}
|
|
|
|
|
|
|
|
func namespacePtr(namespace v1alpha2.Namespace) *v1alpha2.Namespace {
|
|
|
|
return &namespace
|
|
|
|
}
|
|
|
|
|
|
|
|
func kindPtr(kind v1alpha2.Kind) *v1alpha2.Kind {
|
|
|
|
return &kind
|
|
|
|
}
|
|
|
|
|
|
|
|
func pathMatchTypePtr(p v1alpha2.PathMatchType) *v1alpha2.PathMatchType { return &p }
|
|
|
|
|
|
|
|
func headerMatchTypePtr(h v1alpha2.HeaderMatchType) *v1alpha2.HeaderMatchType { return &h }
|