traefik/pkg/testhelpers/config.go

152 lines
4.1 KiB
Go
Raw Normal View History

2018-06-05 10:32:03 +00:00
package testhelpers
import (
2023-02-03 14:24:05 +00:00
"github.com/traefik/traefik/v3/pkg/config/dynamic"
2018-06-05 10:32:03 +00:00
)
// BuildConfiguration is a helper to create a configuration.
func BuildConfiguration(dynamicConfigBuilders ...func(*dynamic.HTTPConfiguration)) *dynamic.HTTPConfiguration {
conf := &dynamic.HTTPConfiguration{
2020-09-11 13:40:03 +00:00
Models: map[string]*dynamic.Model{},
ServersTransports: map[string]*dynamic.ServersTransport{},
}
2018-06-05 10:32:03 +00:00
for _, build := range dynamicConfigBuilders {
2018-11-14 09:18:03 +00:00
build(conf)
2018-06-05 10:32:03 +00:00
}
2018-11-14 09:18:03 +00:00
return conf
2018-06-05 10:32:03 +00:00
}
2018-11-14 09:18:03 +00:00
// WithRouters is a helper to create a configuration.
func WithRouters(opts ...func(*dynamic.Router) string) func(*dynamic.HTTPConfiguration) {
return func(c *dynamic.HTTPConfiguration) {
c.Routers = make(map[string]*dynamic.Router)
2018-06-05 10:32:03 +00:00
for _, opt := range opts {
b := &dynamic.Router{}
2018-06-05 10:32:03 +00:00
name := opt(b)
2018-11-14 09:18:03 +00:00
c.Routers[name] = b
2018-06-05 10:32:03 +00:00
}
}
}
2018-11-14 09:18:03 +00:00
// WithRouter is a helper to create a configuration.
func WithRouter(routerName string, opts ...func(*dynamic.Router)) func(*dynamic.Router) string {
return func(r *dynamic.Router) string {
2018-06-05 10:32:03 +00:00
for _, opt := range opts {
2018-11-14 09:18:03 +00:00
opt(r)
2018-06-05 10:32:03 +00:00
}
2018-11-14 09:18:03 +00:00
return routerName
2018-06-05 10:32:03 +00:00
}
}
2018-11-14 09:18:03 +00:00
// WithRouterMiddlewares is a helper to create a configuration.
func WithRouterMiddlewares(middlewaresName ...string) func(*dynamic.Router) {
return func(r *dynamic.Router) {
2018-11-14 09:18:03 +00:00
r.Middlewares = middlewaresName
2018-06-05 10:32:03 +00:00
}
}
2018-11-14 09:18:03 +00:00
// WithServiceName is a helper to create a configuration.
func WithServiceName(serviceName string) func(*dynamic.Router) {
return func(r *dynamic.Router) {
2018-11-14 09:18:03 +00:00
r.Service = serviceName
2018-06-05 10:32:03 +00:00
}
}
2018-11-14 09:18:03 +00:00
// WithLoadBalancerServices is a helper to create a configuration.
func WithLoadBalancerServices(opts ...func(service *dynamic.ServersLoadBalancer) string) func(*dynamic.HTTPConfiguration) {
return func(c *dynamic.HTTPConfiguration) {
c.Services = make(map[string]*dynamic.Service)
2018-11-14 09:18:03 +00:00
for _, opt := range opts {
b := &dynamic.ServersLoadBalancer{}
2018-11-14 09:18:03 +00:00
name := opt(b)
c.Services[name] = &dynamic.Service{
2018-11-14 09:18:03 +00:00
LoadBalancer: b,
}
2018-06-05 10:32:03 +00:00
}
}
}
2018-11-14 09:18:03 +00:00
// WithService is a helper to create a configuration.
func WithService(name string, opts ...func(*dynamic.ServersLoadBalancer)) func(*dynamic.ServersLoadBalancer) string {
return func(r *dynamic.ServersLoadBalancer) string {
2018-06-05 10:32:03 +00:00
for _, opt := range opts {
2018-11-14 09:18:03 +00:00
opt(r)
2018-06-05 10:32:03 +00:00
}
2018-11-14 09:18:03 +00:00
return name
2018-06-05 10:32:03 +00:00
}
}
2018-11-14 09:18:03 +00:00
// WithMiddlewares is a helper to create a configuration.
func WithMiddlewares(opts ...func(*dynamic.Middleware) string) func(*dynamic.HTTPConfiguration) {
return func(c *dynamic.HTTPConfiguration) {
c.Middlewares = make(map[string]*dynamic.Middleware)
2018-06-05 10:32:03 +00:00
for _, opt := range opts {
b := &dynamic.Middleware{}
2018-11-14 09:18:03 +00:00
name := opt(b)
c.Middlewares[name] = b
2018-06-05 10:32:03 +00:00
}
2018-11-14 09:18:03 +00:00
}
}
2018-06-06 13:20:03 +00:00
2018-11-14 09:18:03 +00:00
// WithMiddleware is a helper to create a configuration.
func WithMiddleware(name string, opts ...func(*dynamic.Middleware)) func(*dynamic.Middleware) string {
return func(r *dynamic.Middleware) string {
2018-11-14 09:18:03 +00:00
for _, opt := range opts {
opt(r)
2018-06-06 13:20:03 +00:00
}
2018-11-14 09:18:03 +00:00
return name
2018-06-05 10:32:03 +00:00
}
}
2018-11-14 09:18:03 +00:00
// WithBasicAuth is a helper to create a configuration.
func WithBasicAuth(auth *dynamic.BasicAuth) func(*dynamic.Middleware) {
return func(r *dynamic.Middleware) {
2018-11-14 09:18:03 +00:00
r.BasicAuth = auth
2018-06-06 13:20:03 +00:00
}
}
2018-11-14 09:18:03 +00:00
// WithEntryPoints is a helper to create a configuration.
func WithEntryPoints(eps ...string) func(*dynamic.Router) {
return func(f *dynamic.Router) {
2018-06-05 10:32:03 +00:00
f.EntryPoints = eps
}
}
2018-11-14 09:18:03 +00:00
// WithRule is a helper to create a configuration.
func WithRule(rule string) func(*dynamic.Router) {
return func(f *dynamic.Router) {
2018-11-14 09:18:03 +00:00
f.Rule = rule
}
}
// WithServers is a helper to create a configuration.
func WithServers(opts ...func(*dynamic.Server)) func(*dynamic.ServersLoadBalancer) {
return func(b *dynamic.ServersLoadBalancer) {
2018-06-05 10:32:03 +00:00
for _, opt := range opts {
server := dynamic.Server{}
2018-11-14 09:18:03 +00:00
opt(&server)
b.Servers = append(b.Servers, server)
2018-06-05 10:32:03 +00:00
}
}
}
2018-11-14 09:18:03 +00:00
// WithServer is a helper to create a configuration.
func WithServer(url string, opts ...func(*dynamic.Server)) func(*dynamic.Server) {
return func(s *dynamic.Server) {
2018-11-14 09:18:03 +00:00
for _, opt := range opts {
opt(s)
}
s.URL = url
2018-06-05 10:32:03 +00:00
}
}
// WithSticky is a helper to create a configuration.
func WithSticky(cookieName string) func(*dynamic.ServersLoadBalancer) {
return func(b *dynamic.ServersLoadBalancer) {
b.Sticky = &dynamic.Sticky{
Cookie: &dynamic.Cookie{Name: cookieName},
2018-06-05 10:32:03 +00:00
}
}
}