497df1ca3b
This is the OSS portion of enterprise PR 2056. This commit provides server-local implementations of the proxycfg.ConfigEntry and proxycfg.ConfigEntryList interfaces, that source data from streaming events. It makes use of the LocalMaterializer type introduced for peering replication, adding the necessary support for authorization. It also adds support for "wildcard" subscriptions (within a topic) to the event publisher, as this is needed to fetch service-resolvers for all services when configuring mesh gateways. Currently, events will be emitted for just the ingress-gateway, service-resolver, and mesh config entry types, as these are the only entries required by proxycfg — the events will be emitted on topics named IngressGateway, ServiceResolver, and MeshConfig topics respectively. Though these events will only be consumed "locally" for now, they can also be consumed via the gRPC endpoint (confirmed using grpcurl) so using them from client agents should be a case of swapping the LocalMaterializer for an RPCMaterializer.
49 lines
1.4 KiB
Go
49 lines
1.4 KiB
Go
// Code generated by mockery v2.12.0. DO NOT EDIT.
|
|
|
|
package submatview
|
|
|
|
import (
|
|
acl "github.com/hashicorp/consul/acl"
|
|
mock "github.com/stretchr/testify/mock"
|
|
|
|
resolver "github.com/hashicorp/consul/acl/resolver"
|
|
|
|
testing "testing"
|
|
)
|
|
|
|
// MockACLResolver is an autogenerated mock type for the ACLResolver type
|
|
type MockACLResolver struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// ResolveTokenAndDefaultMeta provides a mock function with given fields: token, entMeta, authzContext
|
|
func (_m *MockACLResolver) ResolveTokenAndDefaultMeta(token string, entMeta *acl.EnterpriseMeta, authzContext *acl.AuthorizerContext) (resolver.Result, error) {
|
|
ret := _m.Called(token, entMeta, authzContext)
|
|
|
|
var r0 resolver.Result
|
|
if rf, ok := ret.Get(0).(func(string, *acl.EnterpriseMeta, *acl.AuthorizerContext) resolver.Result); ok {
|
|
r0 = rf(token, entMeta, authzContext)
|
|
} else {
|
|
r0 = ret.Get(0).(resolver.Result)
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string, *acl.EnterpriseMeta, *acl.AuthorizerContext) error); ok {
|
|
r1 = rf(token, entMeta, authzContext)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// NewMockACLResolver creates a new instance of MockACLResolver. It also registers the testing.TB interface on the mock and a cleanup function to assert the mocks expectations.
|
|
func NewMockACLResolver(t testing.TB) *MockACLResolver {
|
|
mock := &MockACLResolver{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|