mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-04 21:18:30 +00:00
162 lines
6.5 KiB
Go
162 lines
6.5 KiB
Go
// Code generated by pegomock. DO NOT EDIT.
|
|
// Source: github.com/runatlantis/atlantis/server/events (interfaces: CommitStatusUpdater)
|
|
|
|
package mocks
|
|
|
|
import (
|
|
pegomock "github.com/petergtz/pegomock"
|
|
events "github.com/runatlantis/atlantis/server/events"
|
|
models "github.com/runatlantis/atlantis/server/events/models"
|
|
"reflect"
|
|
"time"
|
|
)
|
|
|
|
type MockCommitStatusUpdater struct {
|
|
fail func(message string, callerSkip ...int)
|
|
}
|
|
|
|
func NewMockCommitStatusUpdater() *MockCommitStatusUpdater {
|
|
return &MockCommitStatusUpdater{fail: pegomock.GlobalFailHandler}
|
|
}
|
|
|
|
func (mock *MockCommitStatusUpdater) Update(repo models.Repo, pull models.PullRequest, status models.CommitStatus, command events.CommandName) error {
|
|
if mock == nil {
|
|
panic("mock must not be nil. Use myMock := NewMockCommitStatusUpdater().")
|
|
}
|
|
params := []pegomock.Param{repo, pull, status, command}
|
|
result := pegomock.GetGenericMockFrom(mock).Invoke("Update", params, []reflect.Type{reflect.TypeOf((*error)(nil)).Elem()})
|
|
var ret0 error
|
|
if len(result) != 0 {
|
|
if result[0] != nil {
|
|
ret0 = result[0].(error)
|
|
}
|
|
}
|
|
return ret0
|
|
}
|
|
|
|
func (mock *MockCommitStatusUpdater) UpdateProjectResult(ctx *events.CommandContext, commandName events.CommandName, res events.CommandResult) error {
|
|
if mock == nil {
|
|
panic("mock must not be nil. Use myMock := NewMockCommitStatusUpdater().")
|
|
}
|
|
params := []pegomock.Param{ctx, commandName, res}
|
|
result := pegomock.GetGenericMockFrom(mock).Invoke("UpdateProjectResult", params, []reflect.Type{reflect.TypeOf((*error)(nil)).Elem()})
|
|
var ret0 error
|
|
if len(result) != 0 {
|
|
if result[0] != nil {
|
|
ret0 = result[0].(error)
|
|
}
|
|
}
|
|
return ret0
|
|
}
|
|
|
|
func (mock *MockCommitStatusUpdater) VerifyWasCalledOnce() *VerifierCommitStatusUpdater {
|
|
return &VerifierCommitStatusUpdater{
|
|
mock: mock,
|
|
invocationCountMatcher: pegomock.Times(1),
|
|
}
|
|
}
|
|
|
|
func (mock *MockCommitStatusUpdater) VerifyWasCalled(invocationCountMatcher pegomock.Matcher) *VerifierCommitStatusUpdater {
|
|
return &VerifierCommitStatusUpdater{
|
|
mock: mock,
|
|
invocationCountMatcher: invocationCountMatcher,
|
|
}
|
|
}
|
|
|
|
func (mock *MockCommitStatusUpdater) VerifyWasCalledInOrder(invocationCountMatcher pegomock.Matcher, inOrderContext *pegomock.InOrderContext) *VerifierCommitStatusUpdater {
|
|
return &VerifierCommitStatusUpdater{
|
|
mock: mock,
|
|
invocationCountMatcher: invocationCountMatcher,
|
|
inOrderContext: inOrderContext,
|
|
}
|
|
}
|
|
|
|
func (mock *MockCommitStatusUpdater) VerifyWasCalledEventually(invocationCountMatcher pegomock.Matcher, timeout time.Duration) *VerifierCommitStatusUpdater {
|
|
return &VerifierCommitStatusUpdater{
|
|
mock: mock,
|
|
invocationCountMatcher: invocationCountMatcher,
|
|
timeout: timeout,
|
|
}
|
|
}
|
|
|
|
type VerifierCommitStatusUpdater struct {
|
|
mock *MockCommitStatusUpdater
|
|
invocationCountMatcher pegomock.Matcher
|
|
inOrderContext *pegomock.InOrderContext
|
|
timeout time.Duration
|
|
}
|
|
|
|
func (verifier *VerifierCommitStatusUpdater) Update(repo models.Repo, pull models.PullRequest, status models.CommitStatus, command events.CommandName) *CommitStatusUpdater_Update_OngoingVerification {
|
|
params := []pegomock.Param{repo, pull, status, command}
|
|
methodInvocations := pegomock.GetGenericMockFrom(verifier.mock).Verify(verifier.inOrderContext, verifier.invocationCountMatcher, "Update", params, verifier.timeout)
|
|
return &CommitStatusUpdater_Update_OngoingVerification{mock: verifier.mock, methodInvocations: methodInvocations}
|
|
}
|
|
|
|
type CommitStatusUpdater_Update_OngoingVerification struct {
|
|
mock *MockCommitStatusUpdater
|
|
methodInvocations []pegomock.MethodInvocation
|
|
}
|
|
|
|
func (c *CommitStatusUpdater_Update_OngoingVerification) GetCapturedArguments() (models.Repo, models.PullRequest, models.CommitStatus, events.CommandName) {
|
|
repo, pull, status, command := c.GetAllCapturedArguments()
|
|
return repo[len(repo)-1], pull[len(pull)-1], status[len(status)-1], command[len(command)-1]
|
|
}
|
|
|
|
func (c *CommitStatusUpdater_Update_OngoingVerification) GetAllCapturedArguments() (_param0 []models.Repo, _param1 []models.PullRequest, _param2 []models.CommitStatus, _param3 []events.CommandName) {
|
|
params := pegomock.GetGenericMockFrom(c.mock).GetInvocationParams(c.methodInvocations)
|
|
if len(params) > 0 {
|
|
_param0 = make([]models.Repo, len(params[0]))
|
|
for u, param := range params[0] {
|
|
_param0[u] = param.(models.Repo)
|
|
}
|
|
_param1 = make([]models.PullRequest, len(params[1]))
|
|
for u, param := range params[1] {
|
|
_param1[u] = param.(models.PullRequest)
|
|
}
|
|
_param2 = make([]models.CommitStatus, len(params[2]))
|
|
for u, param := range params[2] {
|
|
_param2[u] = param.(models.CommitStatus)
|
|
}
|
|
_param3 = make([]events.CommandName, len(params[3]))
|
|
for u, param := range params[3] {
|
|
_param3[u] = param.(events.CommandName)
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func (verifier *VerifierCommitStatusUpdater) UpdateProjectResult(ctx *events.CommandContext, commandName events.CommandName, res events.CommandResult) *CommitStatusUpdater_UpdateProjectResult_OngoingVerification {
|
|
params := []pegomock.Param{ctx, commandName, res}
|
|
methodInvocations := pegomock.GetGenericMockFrom(verifier.mock).Verify(verifier.inOrderContext, verifier.invocationCountMatcher, "UpdateProjectResult", params, verifier.timeout)
|
|
return &CommitStatusUpdater_UpdateProjectResult_OngoingVerification{mock: verifier.mock, methodInvocations: methodInvocations}
|
|
}
|
|
|
|
type CommitStatusUpdater_UpdateProjectResult_OngoingVerification struct {
|
|
mock *MockCommitStatusUpdater
|
|
methodInvocations []pegomock.MethodInvocation
|
|
}
|
|
|
|
func (c *CommitStatusUpdater_UpdateProjectResult_OngoingVerification) GetCapturedArguments() (*events.CommandContext, events.CommandName, events.CommandResult) {
|
|
ctx, commandName, res := c.GetAllCapturedArguments()
|
|
return ctx[len(ctx)-1], commandName[len(commandName)-1], res[len(res)-1]
|
|
}
|
|
|
|
func (c *CommitStatusUpdater_UpdateProjectResult_OngoingVerification) GetAllCapturedArguments() (_param0 []*events.CommandContext, _param1 []events.CommandName, _param2 []events.CommandResult) {
|
|
params := pegomock.GetGenericMockFrom(c.mock).GetInvocationParams(c.methodInvocations)
|
|
if len(params) > 0 {
|
|
_param0 = make([]*events.CommandContext, len(params[0]))
|
|
for u, param := range params[0] {
|
|
_param0[u] = param.(*events.CommandContext)
|
|
}
|
|
_param1 = make([]events.CommandName, len(params[1]))
|
|
for u, param := range params[1] {
|
|
_param1[u] = param.(events.CommandName)
|
|
}
|
|
_param2 = make([]events.CommandResult, len(params[2]))
|
|
for u, param := range params[2] {
|
|
_param2[u] = param.(events.CommandResult)
|
|
}
|
|
}
|
|
return
|
|
}
|