pomerium/internal/databroker/config_source_test.go
2021-01-25 17:18:50 -07:00

86 lines
1.8 KiB
Go

package databroker
import (
"context"
"net"
"net/url"
"testing"
"time"
"github.com/golang/protobuf/ptypes"
"github.com/stretchr/testify/assert"
"google.golang.org/grpc"
"github.com/pomerium/pomerium/config"
configpb "github.com/pomerium/pomerium/pkg/grpc/config"
"github.com/pomerium/pomerium/pkg/grpc/databroker"
)
func TestConfigSource(t *testing.T) {
ctx, clearTimeout := context.WithTimeout(context.Background(), 5*time.Second)
defer clearTimeout()
li, err := net.Listen("tcp", "127.0.0.1:0")
if !assert.NoError(t, err) {
return
}
defer li.Close()
dataBrokerServer := New()
srv := grpc.NewServer()
databroker.RegisterDataBrokerServiceServer(srv, dataBrokerServer)
go func() { _ = srv.Serve(li) }()
cfgs := make(chan *config.Config, 10)
base := config.NewDefaultOptions()
base.DataBrokerURL = mustParse("http://" + li.Addr().String())
base.InsecureServer = true
base.GRPCInsecure = true
src := NewConfigSource(config.NewStaticSource(&config.Config{
Options: base,
}), func(cfg *config.Config) {
cfgs <- cfg
})
cfgs <- src.GetConfig()
data, _ := ptypes.MarshalAny(&configpb.Config{
Name: "config",
Routes: []*configpb.Route{
{
From: "https://from.example.com",
To: []string{"https://to.example.com"},
},
},
})
_, _ = dataBrokerServer.Set(ctx, &databroker.SetRequest{
Type: configTypeURL,
Id: "1",
Data: data,
})
select {
case <-ctx.Done():
assert.NoError(t, ctx.Err())
return
case cfg := <-cfgs:
assert.Len(t, cfg.Options.AdditionalPolicies, 0)
}
select {
case <-ctx.Done():
assert.NoError(t, ctx.Err())
return
case cfg := <-cfgs:
assert.Len(t, cfg.Options.AdditionalPolicies, 1)
}
}
func mustParse(raw string) *url.URL {
u, err := url.Parse(raw)
if err != nil {
panic(err)
}
return u
}