mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-13 07:10:28 +00:00
28 lines
618 B
Go
28 lines
618 B
Go
|
package authority
|
||
|
|
||
|
import (
|
||
|
"github.com/smallstep/certificates/authority/provisioner"
|
||
|
"github.com/smallstep/certificates/webhook"
|
||
|
)
|
||
|
|
||
|
type mockWebhookController struct {
|
||
|
enrichErr error
|
||
|
authorizeErr error
|
||
|
templateData provisioner.WebhookSetter
|
||
|
respData map[string]any
|
||
|
}
|
||
|
|
||
|
var _ webhookController = &mockWebhookController{}
|
||
|
|
||
|
func (wc *mockWebhookController) Enrich(req *webhook.RequestBody) error {
|
||
|
for key, data := range wc.respData {
|
||
|
wc.templateData.SetWebhook(key, data)
|
||
|
}
|
||
|
|
||
|
return wc.enrichErr
|
||
|
}
|
||
|
|
||
|
func (wc *mockWebhookController) Authorize(req *webhook.RequestBody) error {
|
||
|
return wc.authorizeErr
|
||
|
}
|