Files
atlantis/server/events/mocks/mock_comment_building.go
2024-11-16 15:00:42 +00:00

249 lines
9.6 KiB
Go

// Code generated by pegomock. DO NOT EDIT.
// Source: github.com/runatlantis/atlantis/server/events (interfaces: CommentBuilder)
package mocks
import (
pegomock "github.com/petergtz/pegomock/v4"
"reflect"
"time"
)
type MockCommentBuilder struct {
fail func(message string, callerSkip ...int)
}
func NewMockCommentBuilder(options ...pegomock.Option) *MockCommentBuilder {
mock := &MockCommentBuilder{}
for _, option := range options {
option.Apply(mock)
}
return mock
}
func (mock *MockCommentBuilder) SetFailHandler(fh pegomock.FailHandler) { mock.fail = fh }
func (mock *MockCommentBuilder) FailHandler() pegomock.FailHandler { return mock.fail }
func (mock *MockCommentBuilder) BuildApplyComment(repoRelDir string, workspace string, project string, autoMergeDisabled bool, autoMergeMethod string) string {
if mock == nil {
panic("mock must not be nil. Use myMock := NewMockCommentBuilder().")
}
_params := []pegomock.Param{repoRelDir, workspace, project, autoMergeDisabled, autoMergeMethod}
_result := pegomock.GetGenericMockFrom(mock).Invoke("BuildApplyComment", _params, []reflect.Type{reflect.TypeOf((*string)(nil)).Elem()})
var _ret0 string
if len(_result) != 0 {
if _result[0] != nil {
_ret0 = _result[0].(string)
}
}
return _ret0
}
func (mock *MockCommentBuilder) BuildApprovePoliciesComment(repoRelDir string, workspace string, project string) string {
if mock == nil {
panic("mock must not be nil. Use myMock := NewMockCommentBuilder().")
}
_params := []pegomock.Param{repoRelDir, workspace, project}
_result := pegomock.GetGenericMockFrom(mock).Invoke("BuildApprovePoliciesComment", _params, []reflect.Type{reflect.TypeOf((*string)(nil)).Elem()})
var _ret0 string
if len(_result) != 0 {
if _result[0] != nil {
_ret0 = _result[0].(string)
}
}
return _ret0
}
func (mock *MockCommentBuilder) BuildPlanComment(repoRelDir string, workspace string, project string, commentArgs []string) string {
if mock == nil {
panic("mock must not be nil. Use myMock := NewMockCommentBuilder().")
}
_params := []pegomock.Param{repoRelDir, workspace, project, commentArgs}
_result := pegomock.GetGenericMockFrom(mock).Invoke("BuildPlanComment", _params, []reflect.Type{reflect.TypeOf((*string)(nil)).Elem()})
var _ret0 string
if len(_result) != 0 {
if _result[0] != nil {
_ret0 = _result[0].(string)
}
}
return _ret0
}
func (mock *MockCommentBuilder) VerifyWasCalledOnce() *VerifierMockCommentBuilder {
return &VerifierMockCommentBuilder{
mock: mock,
invocationCountMatcher: pegomock.Times(1),
}
}
func (mock *MockCommentBuilder) VerifyWasCalled(invocationCountMatcher pegomock.InvocationCountMatcher) *VerifierMockCommentBuilder {
return &VerifierMockCommentBuilder{
mock: mock,
invocationCountMatcher: invocationCountMatcher,
}
}
func (mock *MockCommentBuilder) VerifyWasCalledInOrder(invocationCountMatcher pegomock.InvocationCountMatcher, inOrderContext *pegomock.InOrderContext) *VerifierMockCommentBuilder {
return &VerifierMockCommentBuilder{
mock: mock,
invocationCountMatcher: invocationCountMatcher,
inOrderContext: inOrderContext,
}
}
func (mock *MockCommentBuilder) VerifyWasCalledEventually(invocationCountMatcher pegomock.InvocationCountMatcher, timeout time.Duration) *VerifierMockCommentBuilder {
return &VerifierMockCommentBuilder{
mock: mock,
invocationCountMatcher: invocationCountMatcher,
timeout: timeout,
}
}
type VerifierMockCommentBuilder struct {
mock *MockCommentBuilder
invocationCountMatcher pegomock.InvocationCountMatcher
inOrderContext *pegomock.InOrderContext
timeout time.Duration
}
func (verifier *VerifierMockCommentBuilder) BuildApplyComment(repoRelDir string, workspace string, project string, autoMergeDisabled bool, autoMergeMethod string) *MockCommentBuilder_BuildApplyComment_OngoingVerification {
_params := []pegomock.Param{repoRelDir, workspace, project, autoMergeDisabled, autoMergeMethod}
methodInvocations := pegomock.GetGenericMockFrom(verifier.mock).Verify(verifier.inOrderContext, verifier.invocationCountMatcher, "BuildApplyComment", _params, verifier.timeout)
return &MockCommentBuilder_BuildApplyComment_OngoingVerification{mock: verifier.mock, methodInvocations: methodInvocations}
}
type MockCommentBuilder_BuildApplyComment_OngoingVerification struct {
mock *MockCommentBuilder
methodInvocations []pegomock.MethodInvocation
}
func (c *MockCommentBuilder_BuildApplyComment_OngoingVerification) GetCapturedArguments() (string, string, string, bool, string) {
repoRelDir, workspace, project, autoMergeDisabled, autoMergeMethod := c.GetAllCapturedArguments()
return repoRelDir[len(repoRelDir)-1], workspace[len(workspace)-1], project[len(project)-1], autoMergeDisabled[len(autoMergeDisabled)-1], autoMergeMethod[len(autoMergeMethod)-1]
}
func (c *MockCommentBuilder_BuildApplyComment_OngoingVerification) GetAllCapturedArguments() (_param0 []string, _param1 []string, _param2 []string, _param3 []bool, _param4 []string) {
_params := pegomock.GetGenericMockFrom(c.mock).GetInvocationParams(c.methodInvocations)
if len(_params) > 0 {
if len(_params) > 0 {
_param0 = make([]string, len(c.methodInvocations))
for u, param := range _params[0] {
_param0[u] = param.(string)
}
}
if len(_params) > 1 {
_param1 = make([]string, len(c.methodInvocations))
for u, param := range _params[1] {
_param1[u] = param.(string)
}
}
if len(_params) > 2 {
_param2 = make([]string, len(c.methodInvocations))
for u, param := range _params[2] {
_param2[u] = param.(string)
}
}
if len(_params) > 3 {
_param3 = make([]bool, len(c.methodInvocations))
for u, param := range _params[3] {
_param3[u] = param.(bool)
}
}
if len(_params) > 4 {
_param4 = make([]string, len(c.methodInvocations))
for u, param := range _params[4] {
_param4[u] = param.(string)
}
}
}
return
}
func (verifier *VerifierMockCommentBuilder) BuildApprovePoliciesComment(repoRelDir string, workspace string, project string) *MockCommentBuilder_BuildApprovePoliciesComment_OngoingVerification {
_params := []pegomock.Param{repoRelDir, workspace, project}
methodInvocations := pegomock.GetGenericMockFrom(verifier.mock).Verify(verifier.inOrderContext, verifier.invocationCountMatcher, "BuildApprovePoliciesComment", _params, verifier.timeout)
return &MockCommentBuilder_BuildApprovePoliciesComment_OngoingVerification{mock: verifier.mock, methodInvocations: methodInvocations}
}
type MockCommentBuilder_BuildApprovePoliciesComment_OngoingVerification struct {
mock *MockCommentBuilder
methodInvocations []pegomock.MethodInvocation
}
func (c *MockCommentBuilder_BuildApprovePoliciesComment_OngoingVerification) GetCapturedArguments() (string, string, string) {
repoRelDir, workspace, project := c.GetAllCapturedArguments()
return repoRelDir[len(repoRelDir)-1], workspace[len(workspace)-1], project[len(project)-1]
}
func (c *MockCommentBuilder_BuildApprovePoliciesComment_OngoingVerification) GetAllCapturedArguments() (_param0 []string, _param1 []string, _param2 []string) {
_params := pegomock.GetGenericMockFrom(c.mock).GetInvocationParams(c.methodInvocations)
if len(_params) > 0 {
if len(_params) > 0 {
_param0 = make([]string, len(c.methodInvocations))
for u, param := range _params[0] {
_param0[u] = param.(string)
}
}
if len(_params) > 1 {
_param1 = make([]string, len(c.methodInvocations))
for u, param := range _params[1] {
_param1[u] = param.(string)
}
}
if len(_params) > 2 {
_param2 = make([]string, len(c.methodInvocations))
for u, param := range _params[2] {
_param2[u] = param.(string)
}
}
}
return
}
func (verifier *VerifierMockCommentBuilder) BuildPlanComment(repoRelDir string, workspace string, project string, commentArgs []string) *MockCommentBuilder_BuildPlanComment_OngoingVerification {
_params := []pegomock.Param{repoRelDir, workspace, project, commentArgs}
methodInvocations := pegomock.GetGenericMockFrom(verifier.mock).Verify(verifier.inOrderContext, verifier.invocationCountMatcher, "BuildPlanComment", _params, verifier.timeout)
return &MockCommentBuilder_BuildPlanComment_OngoingVerification{mock: verifier.mock, methodInvocations: methodInvocations}
}
type MockCommentBuilder_BuildPlanComment_OngoingVerification struct {
mock *MockCommentBuilder
methodInvocations []pegomock.MethodInvocation
}
func (c *MockCommentBuilder_BuildPlanComment_OngoingVerification) GetCapturedArguments() (string, string, string, []string) {
repoRelDir, workspace, project, commentArgs := c.GetAllCapturedArguments()
return repoRelDir[len(repoRelDir)-1], workspace[len(workspace)-1], project[len(project)-1], commentArgs[len(commentArgs)-1]
}
func (c *MockCommentBuilder_BuildPlanComment_OngoingVerification) GetAllCapturedArguments() (_param0 []string, _param1 []string, _param2 []string, _param3 [][]string) {
_params := pegomock.GetGenericMockFrom(c.mock).GetInvocationParams(c.methodInvocations)
if len(_params) > 0 {
if len(_params) > 0 {
_param0 = make([]string, len(c.methodInvocations))
for u, param := range _params[0] {
_param0[u] = param.(string)
}
}
if len(_params) > 1 {
_param1 = make([]string, len(c.methodInvocations))
for u, param := range _params[1] {
_param1[u] = param.(string)
}
}
if len(_params) > 2 {
_param2 = make([]string, len(c.methodInvocations))
for u, param := range _params[2] {
_param2[u] = param.(string)
}
}
if len(_params) > 3 {
_param3 = make([][]string, len(c.methodInvocations))
for u, param := range _params[3] {
_param3[u] = param.([]string)
}
}
}
return
}