Files
atlantis/server/core/runtime/mocks/mock_runner.go
2024-11-16 15:00:42 +00:00

130 lines
4.4 KiB
Go

// Code generated by pegomock. DO NOT EDIT.
// Source: github.com/runatlantis/atlantis/server/core/runtime (interfaces: Runner)
package mocks
import (
pegomock "github.com/petergtz/pegomock/v4"
command "github.com/runatlantis/atlantis/server/events/command"
"reflect"
"time"
)
type MockRunner struct {
fail func(message string, callerSkip ...int)
}
func NewMockRunner(options ...pegomock.Option) *MockRunner {
mock := &MockRunner{}
for _, option := range options {
option.Apply(mock)
}
return mock
}
func (mock *MockRunner) SetFailHandler(fh pegomock.FailHandler) { mock.fail = fh }
func (mock *MockRunner) FailHandler() pegomock.FailHandler { return mock.fail }
func (mock *MockRunner) Run(ctx command.ProjectContext, extraArgs []string, path string, envs map[string]string) (string, error) {
if mock == nil {
panic("mock must not be nil. Use myMock := NewMockRunner().")
}
_params := []pegomock.Param{ctx, extraArgs, path, envs}
_result := pegomock.GetGenericMockFrom(mock).Invoke("Run", _params, []reflect.Type{reflect.TypeOf((*string)(nil)).Elem(), reflect.TypeOf((*error)(nil)).Elem()})
var _ret0 string
var _ret1 error
if len(_result) != 0 {
if _result[0] != nil {
_ret0 = _result[0].(string)
}
if _result[1] != nil {
_ret1 = _result[1].(error)
}
}
return _ret0, _ret1
}
func (mock *MockRunner) VerifyWasCalledOnce() *VerifierMockRunner {
return &VerifierMockRunner{
mock: mock,
invocationCountMatcher: pegomock.Times(1),
}
}
func (mock *MockRunner) VerifyWasCalled(invocationCountMatcher pegomock.InvocationCountMatcher) *VerifierMockRunner {
return &VerifierMockRunner{
mock: mock,
invocationCountMatcher: invocationCountMatcher,
}
}
func (mock *MockRunner) VerifyWasCalledInOrder(invocationCountMatcher pegomock.InvocationCountMatcher, inOrderContext *pegomock.InOrderContext) *VerifierMockRunner {
return &VerifierMockRunner{
mock: mock,
invocationCountMatcher: invocationCountMatcher,
inOrderContext: inOrderContext,
}
}
func (mock *MockRunner) VerifyWasCalledEventually(invocationCountMatcher pegomock.InvocationCountMatcher, timeout time.Duration) *VerifierMockRunner {
return &VerifierMockRunner{
mock: mock,
invocationCountMatcher: invocationCountMatcher,
timeout: timeout,
}
}
type VerifierMockRunner struct {
mock *MockRunner
invocationCountMatcher pegomock.InvocationCountMatcher
inOrderContext *pegomock.InOrderContext
timeout time.Duration
}
func (verifier *VerifierMockRunner) Run(ctx command.ProjectContext, extraArgs []string, path string, envs map[string]string) *MockRunner_Run_OngoingVerification {
_params := []pegomock.Param{ctx, extraArgs, path, envs}
methodInvocations := pegomock.GetGenericMockFrom(verifier.mock).Verify(verifier.inOrderContext, verifier.invocationCountMatcher, "Run", _params, verifier.timeout)
return &MockRunner_Run_OngoingVerification{mock: verifier.mock, methodInvocations: methodInvocations}
}
type MockRunner_Run_OngoingVerification struct {
mock *MockRunner
methodInvocations []pegomock.MethodInvocation
}
func (c *MockRunner_Run_OngoingVerification) GetCapturedArguments() (command.ProjectContext, []string, string, map[string]string) {
ctx, extraArgs, path, envs := c.GetAllCapturedArguments()
return ctx[len(ctx)-1], extraArgs[len(extraArgs)-1], path[len(path)-1], envs[len(envs)-1]
}
func (c *MockRunner_Run_OngoingVerification) GetAllCapturedArguments() (_param0 []command.ProjectContext, _param1 [][]string, _param2 []string, _param3 []map[string]string) {
_params := pegomock.GetGenericMockFrom(c.mock).GetInvocationParams(c.methodInvocations)
if len(_params) > 0 {
if len(_params) > 0 {
_param0 = make([]command.ProjectContext, len(c.methodInvocations))
for u, param := range _params[0] {
_param0[u] = param.(command.ProjectContext)
}
}
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([]map[string]string, len(c.methodInvocations))
for u, param := range _params[3] {
_param3[u] = param.(map[string]string)
}
}
}
return
}