mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
79 lines
1.7 KiB
Go
79 lines
1.7 KiB
Go
package databroker
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/protobuf/types/known/anypb"
|
|
|
|
"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 func() { _ = 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.DataBrokerURLString = "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, _ := anypb.New(&configpb.Config{
|
|
Name: "config",
|
|
Routes: []*configpb.Route{
|
|
{
|
|
From: "https://from.example.com",
|
|
To: []string{"https://to.example.com"},
|
|
},
|
|
},
|
|
})
|
|
_, _ = dataBrokerServer.Put(ctx, &databroker.PutRequest{
|
|
Record: &databroker.Record{
|
|
Type: data.TypeUrl,
|
|
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)
|
|
}
|
|
}
|