34140ff3e0
Previously, public referred to gRPC services that are both exposed on the dedicated gRPC port and have their definitions in the proto-public directory (so were considered usable by 3rd parties). Whereas private referred to services on the multiplexed server port that are only usable by agents and other servers. Now, we're splitting these definitions, such that external/internal refers to the port and public/private refers to whether they can be used by 3rd parties. This is necessary because the peering replication API needs to be exposed on the dedicated port, but is not (yet) suitable for use by 3rd parties.
53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
// Code generated by mockery v2.12.0. DO NOT EDIT.
|
|
|
|
package connectca
|
|
|
|
import (
|
|
acl "github.com/hashicorp/consul/acl"
|
|
mock "github.com/stretchr/testify/mock"
|
|
|
|
structs "github.com/hashicorp/consul/agent/structs"
|
|
|
|
testing "testing"
|
|
|
|
x509 "crypto/x509"
|
|
)
|
|
|
|
// MockCAManager is an autogenerated mock type for the CAManager type
|
|
type MockCAManager struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// AuthorizeAndSignCertificate provides a mock function with given fields: csr, authz
|
|
func (_m *MockCAManager) AuthorizeAndSignCertificate(csr *x509.CertificateRequest, authz acl.Authorizer) (*structs.IssuedCert, error) {
|
|
ret := _m.Called(csr, authz)
|
|
|
|
var r0 *structs.IssuedCert
|
|
if rf, ok := ret.Get(0).(func(*x509.CertificateRequest, acl.Authorizer) *structs.IssuedCert); ok {
|
|
r0 = rf(csr, authz)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*structs.IssuedCert)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(*x509.CertificateRequest, acl.Authorizer) error); ok {
|
|
r1 = rf(csr, authz)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// NewMockCAManager creates a new instance of MockCAManager. It also registers the testing.TB interface on the mock and a cleanup function to assert the mocks expectations.
|
|
func NewMockCAManager(t testing.TB) *MockCAManager {
|
|
mock := &MockCAManager{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|