Files
atlantis/server/events/command_requirement_handler_test.go
Ken Kaizu 3954955e13 fix(deps): update module github.com/petergtz/pegomock/v3 to v4 (#3534)
* fix(deps): update module github.com/petergtz/pegomock/v3 to v4 in go.mod

* remove pegomock generate m option, which is not support after v4

* make regen-mocks

* replace pegomock v4 primitive eq/matchers

* convert pegomock v4 Eq/Any matchers

* remove custom models.Repo matcher

* pegomock v4 cannot use result method args

ref https://github.com/petergtz/pegomock/issues/123

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-20 15:05:23 -04:00

293 lines
9.0 KiB
Go

package events_test
import (
"fmt"
"testing"
. "github.com/petergtz/pegomock/v4"
"github.com/runatlantis/atlantis/server/core/config/raw"
"github.com/runatlantis/atlantis/server/core/config/valid"
"github.com/runatlantis/atlantis/server/events"
"github.com/runatlantis/atlantis/server/events/models"
"github.com/runatlantis/atlantis/server/logging"
"github.com/runatlantis/atlantis/server/events/command"
"github.com/runatlantis/atlantis/server/events/mocks"
"github.com/stretchr/testify/assert"
)
func TestAggregateApplyRequirements_ValidatePlanProject(t *testing.T) {
repoDir := "repoDir"
fullRequirements := []string{
raw.ApprovedRequirement,
valid.PoliciesPassedCommandReq,
raw.MergeableRequirement,
raw.UnDivergedRequirement,
}
tests := []struct {
name string
ctx command.ProjectContext
setup func(workingDir *mocks.MockWorkingDir)
wantFailure string
wantErr assert.ErrorAssertionFunc
}{
{
name: "pass no requirements",
ctx: command.ProjectContext{},
wantErr: assert.NoError,
},
{
name: "pass full requirements",
ctx: command.ProjectContext{
PlanRequirements: fullRequirements,
PullReqStatus: models.PullReqStatus{
ApprovalStatus: models.ApprovalStatus{IsApproved: true},
Mergeable: true,
},
ProjectPlanStatus: models.PassedPolicyCheckStatus,
},
setup: func(workingDir *mocks.MockWorkingDir) {
When(workingDir.HasDiverged(Any[logging.SimpleLogging](), Any[string]())).ThenReturn(false)
},
wantErr: assert.NoError,
},
{
name: "fail by no approved",
ctx: command.ProjectContext{
PlanRequirements: []string{raw.ApprovedRequirement},
PullReqStatus: models.PullReqStatus{
ApprovalStatus: models.ApprovalStatus{IsApproved: false},
},
},
wantFailure: "Pull request must be approved by at least one person other than the author before running plan.",
wantErr: assert.NoError,
},
{
name: "fail by no mergeable",
ctx: command.ProjectContext{
PlanRequirements: []string{raw.MergeableRequirement},
PullReqStatus: models.PullReqStatus{Mergeable: false},
},
wantFailure: "Pull request must be mergeable before running plan.",
wantErr: assert.NoError,
},
{
name: "fail by diverged",
ctx: command.ProjectContext{
PlanRequirements: []string{raw.UnDivergedRequirement},
},
setup: func(workingDir *mocks.MockWorkingDir) {
When(workingDir.HasDiverged(Any[logging.SimpleLogging](), Any[string]())).ThenReturn(true)
},
wantFailure: "Default branch must be rebased onto pull request before running plan.",
wantErr: assert.NoError,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
RegisterMockTestingT(t)
workingDir := mocks.NewMockWorkingDir()
a := &events.DefaultCommandRequirementHandler{WorkingDir: workingDir}
if tt.setup != nil {
tt.setup(workingDir)
}
gotFailure, err := a.ValidatePlanProject(repoDir, tt.ctx)
if !tt.wantErr(t, err, fmt.Sprintf("ValidatePlanProject(%v, %v)", repoDir, tt.ctx)) {
return
}
assert.Equalf(t, tt.wantFailure, gotFailure, "ValidatePlanProject(%v, %v)", repoDir, tt.ctx)
})
}
}
func TestAggregateApplyRequirements_ValidateApplyProject(t *testing.T) {
repoDir := "repoDir"
fullRequirements := []string{
raw.ApprovedRequirement,
valid.PoliciesPassedCommandReq,
raw.MergeableRequirement,
raw.UnDivergedRequirement,
}
tests := []struct {
name string
ctx command.ProjectContext
setup func(workingDir *mocks.MockWorkingDir)
wantFailure string
wantErr assert.ErrorAssertionFunc
}{
{
name: "pass no requirements",
ctx: command.ProjectContext{},
wantErr: assert.NoError,
},
{
name: "pass full requirements",
ctx: command.ProjectContext{
ApplyRequirements: fullRequirements,
PullReqStatus: models.PullReqStatus{
ApprovalStatus: models.ApprovalStatus{IsApproved: true},
Mergeable: true,
},
ProjectPlanStatus: models.PassedPolicyCheckStatus,
},
setup: func(workingDir *mocks.MockWorkingDir) {
When(workingDir.HasDiverged(Any[logging.SimpleLogging](), Any[string]())).ThenReturn(false)
},
wantErr: assert.NoError,
},
{
name: "fail by no approved",
ctx: command.ProjectContext{
ApplyRequirements: []string{raw.ApprovedRequirement},
PullReqStatus: models.PullReqStatus{
ApprovalStatus: models.ApprovalStatus{IsApproved: false},
},
},
wantFailure: "Pull request must be approved by at least one person other than the author before running apply.",
wantErr: assert.NoError,
},
{
name: "fail by no policy passed",
ctx: command.ProjectContext{
ApplyRequirements: []string{valid.PoliciesPassedCommandReq},
ProjectPlanStatus: models.ErroredPolicyCheckStatus,
ProjectPolicyStatus: []models.PolicySetStatus{
{
PolicySetName: "policy1",
Passed: false,
Approvals: 0,
},
},
PolicySets: valid.PolicySets{
PolicySets: []valid.PolicySet{
{
Name: "policy1",
ApproveCount: 1,
},
},
},
},
wantFailure: "All policies must pass for project before running apply.",
wantErr: assert.NoError,
},
{
name: "fail by no mergeable",
ctx: command.ProjectContext{
ApplyRequirements: []string{raw.MergeableRequirement},
PullReqStatus: models.PullReqStatus{Mergeable: false},
},
wantFailure: "Pull request must be mergeable before running apply.",
wantErr: assert.NoError,
},
{
name: "fail by diverged",
ctx: command.ProjectContext{
ApplyRequirements: []string{raw.UnDivergedRequirement},
},
setup: func(workingDir *mocks.MockWorkingDir) {
When(workingDir.HasDiverged(Any[logging.SimpleLogging](), Any[string]())).ThenReturn(true)
},
wantFailure: "Default branch must be rebased onto pull request before running apply.",
wantErr: assert.NoError,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
RegisterMockTestingT(t)
workingDir := mocks.NewMockWorkingDir()
a := &events.DefaultCommandRequirementHandler{WorkingDir: workingDir}
if tt.setup != nil {
tt.setup(workingDir)
}
gotFailure, err := a.ValidateApplyProject(repoDir, tt.ctx)
if !tt.wantErr(t, err, fmt.Sprintf("ValidateApplyProject(%v, %v)", repoDir, tt.ctx)) {
return
}
assert.Equalf(t, tt.wantFailure, gotFailure, "ValidateApplyProject(%v, %v)", repoDir, tt.ctx)
})
}
}
func TestAggregateApplyRequirements_ValidateImportProject(t *testing.T) {
repoDir := "repoDir"
fullRequirements := []string{
raw.ApprovedRequirement,
raw.MergeableRequirement,
raw.UnDivergedRequirement,
}
tests := []struct {
name string
ctx command.ProjectContext
setup func(workingDir *mocks.MockWorkingDir)
wantFailure string
wantErr assert.ErrorAssertionFunc
}{
{
name: "pass no requirements",
ctx: command.ProjectContext{},
wantErr: assert.NoError,
},
{
name: "pass full requirements",
ctx: command.ProjectContext{
ImportRequirements: fullRequirements,
PullReqStatus: models.PullReqStatus{
ApprovalStatus: models.ApprovalStatus{IsApproved: true},
Mergeable: true,
},
ProjectPlanStatus: models.PassedPolicyCheckStatus,
},
setup: func(workingDir *mocks.MockWorkingDir) {
When(workingDir.HasDiverged(Any[logging.SimpleLogging](), Any[string]())).ThenReturn(false)
},
wantErr: assert.NoError,
},
{
name: "fail by no approved",
ctx: command.ProjectContext{
ImportRequirements: []string{raw.ApprovedRequirement},
PullReqStatus: models.PullReqStatus{
ApprovalStatus: models.ApprovalStatus{IsApproved: false},
},
},
wantFailure: "Pull request must be approved by at least one person other than the author before running import.",
wantErr: assert.NoError,
},
{
name: "fail by no mergeable",
ctx: command.ProjectContext{
ImportRequirements: []string{raw.MergeableRequirement},
PullReqStatus: models.PullReqStatus{Mergeable: false},
},
wantFailure: "Pull request must be mergeable before running import.",
wantErr: assert.NoError,
},
{
name: "fail by diverged",
ctx: command.ProjectContext{
ImportRequirements: []string{raw.UnDivergedRequirement},
},
setup: func(workingDir *mocks.MockWorkingDir) {
When(workingDir.HasDiverged(Any[logging.SimpleLogging](), Any[string]())).ThenReturn(true)
},
wantFailure: "Default branch must be rebased onto pull request before running import.",
wantErr: assert.NoError,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
RegisterMockTestingT(t)
workingDir := mocks.NewMockWorkingDir()
a := &events.DefaultCommandRequirementHandler{WorkingDir: workingDir}
if tt.setup != nil {
tt.setup(workingDir)
}
gotFailure, err := a.ValidateImportProject(repoDir, tt.ctx)
if !tt.wantErr(t, err, fmt.Sprintf("ValidateImportProject(%v, %v)", repoDir, tt.ctx)) {
return
}
assert.Equalf(t, tt.wantFailure, gotFailure, "ValidateImportProject(%v, %v)", repoDir, tt.ctx)
})
}
}