Skip to content

Commit

Permalink
add test coverge for kv store tracking executed workspaces
Browse files Browse the repository at this point in the history
Signed-off-by: davidwin93 <[email protected]>
  • Loading branch information
davidwin93 committed Nov 3, 2023
1 parent f58e72e commit 93cb160
Show file tree
Hide file tree
Showing 6 changed files with 130 additions and 3 deletions.
3 changes: 3 additions & 0 deletions pkg/mocks/helpers.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package mocks

import (
"errors"
"fmt"
"path/filepath"
"regexp"
Expand Down Expand Up @@ -175,6 +176,8 @@ func (ts *TestSuite) InitTestSuite() {
ts.MockApiClient.EXPECT().AddTags(gomock.Any(), gomock.Any(), "tfbuddylock", "101").AnyTimes()

ts.MockStreamClient.EXPECT().AddRunMeta(gomock.Any()).AnyTimes()
ts.MockStreamClient.EXPECT().AddWorkspaceMeta(gomock.Any(), gomock.Any(), gomock.Any()).AnyTimes()
ts.MockStreamClient.EXPECT().GetWorkspaceMeta(gomock.Any(), gomock.Any()).Return(nil, errors.New("not found")).AnyTimes()

ts.MockProject.EXPECT().GetPathWithNamespace().Return(ts.MetaData.ProjectNameNS).AnyTimes()

Expand Down
29 changes: 29 additions & 0 deletions pkg/mocks/mock_runstream.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion pkg/tfc_trigger/tfc_trigger.go
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,14 @@ func (t *TFCTrigger) TriggerTFCEvents(ctx context.Context) (*TriggeredTFCWorkspa
log.Debug().Msg("No Terraform changes found in changeset.")
return nil, nil
}
t.runstream.AddWorkspaceMeta(&runstream.TFCWorkspacesMetadata{}, t.GetMergeRequestIID(), t.GetProjectNameWithNamespace())
//only set workspace metadata for a MR when the first run is triggered. This prevents the count of executed workspaces from being reset
wsMeta, err := t.runstream.GetWorkspaceMeta(fmt.Sprintf("%d", t.GetMergeRequestIID()), t.GetProjectNameWithNamespace())
if err != nil || wsMeta == nil {
t.runstream.AddWorkspaceMeta(&runstream.TFCWorkspacesMetadata{
CountTotalWorkspaces: len(triggeredWorkspaces),
CountExecutedWorkspaces: 0,
}, fmt.Sprintf("%d", t.GetMergeRequestIID()), t.GetProjectNameWithNamespace())
}
return workspaceStatus, nil
}

Expand Down
11 changes: 10 additions & 1 deletion pkg/tfc_trigger/tfc_trigger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package tfc_trigger_test

import (
"context"
"errors"
"fmt"
"os"
"testing"
Expand Down Expand Up @@ -296,6 +297,10 @@ func TestTFCEvents_MultiWorkspaceApply(t *testing.T) {
}).Times(2)

testSuite.MockStreamClient.EXPECT().AddRunMeta(gomock.Any()).Times(2)
testSuite.MockStreamClient.EXPECT().AddWorkspaceMeta(&runstream.TFCWorkspacesMetadata{
CountTotalWorkspaces: 2,
CountExecutedWorkspaces: 0,
}, fmt.Sprintf("%d", testSuite.MetaData.MRIID), testSuite.MetaData.ProjectNameNS)
testSuite.InitTestSuite()
testLogger := zltest.New(t)
log.Logger = log.Logger.Output(testLogger)
Expand Down Expand Up @@ -474,7 +479,11 @@ func TestTFCEvents_WorkspaceApplyModifiedBothSrcDstBranches(t *testing.T) {
testSuite.MockGitClient.EXPECT().GetMergeRequestModifiedFiles(gomock.Any(), testSuite.MetaData.MRIID, testSuite.MetaData.ProjectNameNS).Return([]string{"main.tf"}, nil)

mockStreamClient := mocks.NewMockStreamClient(mockCtrl)

mockStreamClient.EXPECT().GetWorkspaceMeta(gomock.Any(), gomock.Any()).Return(nil, errors.New("no record"))
mockStreamClient.EXPECT().AddWorkspaceMeta(&runstream.TFCWorkspacesMetadata{
CountTotalWorkspaces: 1,
CountExecutedWorkspaces: 0,
}, fmt.Sprintf("%d", testSuite.MetaData.MRIID), testSuite.MetaData.ProjectNameNS)
testSuite.InitTestSuite()

testLogger := zltest.New(t)
Expand Down
23 changes: 22 additions & 1 deletion pkg/vcs/gitlab/mr_status_updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,29 @@ func (p *RunStatusUpdater) mergeMRIfPossible(ctx context.Context, rmd runstream.
if !rmd.GetAutoMerge() {
return
}
//check that all triggered workspaces have been executed or increment
wsMeta, err := p.rs.GetWorkspaceMeta(fmt.Sprintf("%d", rmd.GetMRInternalID()), rmd.GetMRProjectNameWithNamespace())
if err != nil {
log.Debug().AnErr("err", err).Msg("get workspace metadata")
return
}
wsMeta.CountExecutedWorkspaces++

if wsMeta.CountTotalWorkspaces > wsMeta.CountExecutedWorkspaces {
err = p.rs.AddWorkspaceMeta(wsMeta, fmt.Sprintf("%d", rmd.GetMRInternalID()), rmd.GetMRProjectNameWithNamespace())
if err != nil {
log.Debug().AnErr("err", err).Msg("add workspace metadata")
span.RecordError(err)
}
return
}
if wsMeta.CountExecutedWorkspaces > wsMeta.CountTotalWorkspaces {
log.Debug().Msg("count executed workspaces is greater than total workspaces")
span.RecordError(errors.New("count executed workspaces is greater than total workspaces"))
return
}

err := p.client.MergeMR(ctx, rmd.GetMRInternalID(), rmd.GetMRProjectNameWithNamespace())
err = p.client.MergeMR(ctx, rmd.GetMRInternalID(), rmd.GetMRProjectNameWithNamespace())
if err != nil {
span.RecordError(err)
}
Expand Down
58 changes: 58 additions & 0 deletions pkg/vcs/gitlab/mr_status_updater_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ func TestAutoMergeNoChangesApply(t *testing.T) {
testSuite.MockGitClient.EXPECT().MergeMR(gomock.Any(), gomock.Any(), gomock.Any())
testSuite.MockGitClient.EXPECT().GetPipelinesForCommit(gomock.Any(), gomock.Any(), gomock.Any()).Return([]vcs.ProjectPipeline{&GitlabPipeline{&gogitlab.PipelineInfo{ID: 1}}}, nil).AnyTimes()
testSuite.MockGitClient.EXPECT().SetCommitStatus(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(nil, errors.New("could not commit status")).AnyTimes()
testSuite.MockStreamClient.EXPECT().GetWorkspaceMeta(gomock.Any(), gomock.Any()).Return(&runstream.TFCWorkspacesMetadata{
CountExecutedWorkspaces: 0,
CountTotalWorkspaces: 1,
}, nil)
testSuite.InitTestSuite()
r := &RunStatusUpdater{
tfc: testSuite.MockApiClient,
Expand Down Expand Up @@ -71,6 +75,12 @@ func TestAutoMergeApply(t *testing.T) {
testSuite.MockGitClient.EXPECT().MergeMR(gomock.Any(), gomock.Any(), gomock.Any())
testSuite.MockGitClient.EXPECT().GetPipelinesForCommit(gomock.Any(), gomock.Any(), gomock.Any()).Return([]vcs.ProjectPipeline{&GitlabPipeline{&gogitlab.PipelineInfo{ID: 1}}}, nil).AnyTimes()
testSuite.MockGitClient.EXPECT().SetCommitStatus(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(nil, errors.New("could not commit status")).AnyTimes()

testSuite.MockStreamClient.EXPECT().GetWorkspaceMeta(gomock.Any(), gomock.Any()).Return(&runstream.TFCWorkspacesMetadata{
CountExecutedWorkspaces: 0,
CountTotalWorkspaces: 1,
}, nil)

testSuite.InitTestSuite()
r := &RunStatusUpdater{
tfc: testSuite.MockApiClient,
Expand All @@ -86,6 +96,54 @@ func TestAutoMergeApply(t *testing.T) {
})
}

func TestAutoMergeApplyMultiWorkspace(t *testing.T) {

mockCtrl := gomock.NewController(t)
defer mockCtrl.Finish()

testSuite := mocks.CreateTestSuite(mockCtrl, mocks.TestOverrides{}, t)

testSuite.MockGitClient.EXPECT().MergeMR(gomock.Any(), gomock.Any(), gomock.Any())
testSuite.MockGitClient.EXPECT().GetPipelinesForCommit(gomock.Any(), gomock.Any(), gomock.Any()).Return([]vcs.ProjectPipeline{&GitlabPipeline{&gogitlab.PipelineInfo{ID: 1}}}, nil).AnyTimes()
testSuite.MockGitClient.EXPECT().SetCommitStatus(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(nil, errors.New("could not commit status")).AnyTimes()

//workspace 1 in same mr
testSuite.MockStreamClient.EXPECT().GetWorkspaceMeta("101", "zapier/test").Return(&runstream.TFCWorkspacesMetadata{
CountExecutedWorkspaces: 0,
CountTotalWorkspaces: 2,
}, nil)
//workspace 2 in same mr
testSuite.MockStreamClient.EXPECT().GetWorkspaceMeta("101", "zapier/test").Return(&runstream.TFCWorkspacesMetadata{
CountExecutedWorkspaces: 1,
CountTotalWorkspaces: 2,
}, nil)

testSuite.InitTestSuite()
r := &RunStatusUpdater{
tfc: testSuite.MockApiClient,
client: testSuite.MockGitClient,
rs: testSuite.MockStreamClient,
}
r.updateCommitStatusForRun(context.Background(), &tfe.Run{
Status: tfe.RunApplied,
HasChanges: true,
}, &runstream.TFRunMetadata{
Action: "apply",
AutoMerge: true,
MergeRequestIID: 101,
MergeRequestProjectNameWithNamespace: "zapier/test",
})

r.updateCommitStatusForRun(context.Background(), &tfe.Run{
Status: tfe.RunApplied,
HasChanges: true,
}, &runstream.TFRunMetadata{
Action: "apply",
AutoMerge: true,
MergeRequestIID: 101,
MergeRequestProjectNameWithNamespace: "zapier/test",
})
}
func TestAutoMergeTargetedApply(t *testing.T) {

mockCtrl := gomock.NewController(t)
Expand Down

0 comments on commit 93cb160

Please sign in to comment.