Skip to content

Commit 807c10f

Browse files
committed
gitlab - ensure lastpipeline ref is the same as head branch
Signed-off-by: Ricky Hariady <[email protected]>
1 parent 0bdcdec commit 807c10f

File tree

2 files changed

+111
-2
lines changed

2 files changed

+111
-2
lines changed

server/events/vcs/gitlab_client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ func (g *GitlabClient) UpdateStatus(logger logging.SimpleLogging, repo models.Re
429429
if err != nil {
430430
return err
431431
}
432-
if commit.LastPipeline != nil {
432+
if commit.LastPipeline != nil && commit.LastPipeline.Ref == pull.HeadBranch {
433433
logger.Info("Pipeline found for commit %s, setting pipeline ID to %d", pull.HeadCommit, commit.LastPipeline.ID)
434434
// Set the pipeline ID to the last pipeline that ran for the commit
435435
setCommitStatusOptions.PipelineID = gitlab.Ptr(commit.LastPipeline.ID)

server/events/vcs/gitlab_client_test.go

+110-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const updateStatusDescription = "description"
2828
const updateStatusTargetUrl = "https://google.com"
2929
const updateStatusSrc = "src"
3030
const updateStatusHeadBranch = "test"
31+
const updateStatusHeadBranchDuplicate = "test_duplicate"
3132

3233
/* UpdateStatus request JSON body object */
3334
type UpdateStatusJsonBody struct {
@@ -41,7 +42,8 @@ type UpdateStatusJsonBody struct {
4142

4243
/* GetCommit response last_pipeline JSON object */
4344
type GetCommitResponseLastPipeline struct {
44-
ID int `json:"id"`
45+
ID int `json:"id"`
46+
Ref string `json:"ref"`
4547
}
4648

4749
/* GetCommit response JSON object */
@@ -352,6 +354,7 @@ func TestGitlabClient_UpdateStatus(t *testing.T) {
352354
getCommitResponse := GetCommitResponse{
353355
LastPipeline: GetCommitResponseLastPipeline{
354356
ID: gitlabPipelineSuccessMrID,
357+
Ref: updateStatusHeadBranch,
355358
},
356359
}
357360
getCommitJsonResponse, err := json.Marshal(getCommitResponse)
@@ -483,6 +486,7 @@ func TestGitlabClient_UpdateStatusGetCommitRetryable(t *testing.T) {
483486
getCommitResponse := GetCommitResponse{
484487
LastPipeline: GetCommitResponseLastPipeline{
485488
ID: gitlabPipelineSuccessMrID,
489+
Ref: updateStatusHeadBranch,
486490
},
487491
}
488492
getCommitJsonResponse, err := json.Marshal(getCommitResponse)
@@ -610,6 +614,7 @@ func TestGitlabClient_UpdateStatusSetCommitStatusConflictRetryable(t *testing.T)
610614
getCommitResponse := GetCommitResponse{
611615
LastPipeline: GetCommitResponseLastPipeline{
612616
ID: gitlabPipelineSuccessMrID,
617+
Ref: updateStatusHeadBranch,
613618
},
614619
}
615620
getCommitJsonResponse, err := json.Marshal(getCommitResponse)
@@ -669,6 +674,110 @@ func TestGitlabClient_UpdateStatusSetCommitStatusConflictRetryable(t *testing.T)
669674
}
670675
}
671676

677+
func TestGitlabClient_UpdateStatusDifferentRef(t *testing.T) {
678+
logger := logging.NewNoopLogger(t)
679+
680+
cases := []struct {
681+
status models.CommitStatus
682+
expState string
683+
}{
684+
{
685+
models.PendingCommitStatus,
686+
"running",
687+
},
688+
{
689+
models.SuccessCommitStatus,
690+
"success",
691+
},
692+
{
693+
models.FailedCommitStatus,
694+
"failed",
695+
},
696+
}
697+
for _, c := range cases {
698+
t.Run(c.expState, func(t *testing.T) {
699+
gotRequest := false
700+
testServer := httptest.NewServer(
701+
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
702+
switch r.RequestURI {
703+
case "/api/v4/projects/runatlantis%2Fatlantis/statuses/sha":
704+
gotRequest = true
705+
706+
var updateStatusJsonBody UpdateStatusJsonBody
707+
err := json.NewDecoder(r.Body).Decode(&updateStatusJsonBody)
708+
Ok(t, err)
709+
710+
Equals(t, c.expState, updateStatusJsonBody.State)
711+
Equals(t, updateStatusSrc, updateStatusJsonBody.Context)
712+
Equals(t, updateStatusTargetUrl, updateStatusJsonBody.TargetUrl)
713+
Equals(t, updateStatusDescription, updateStatusJsonBody.Description)
714+
Equals(t, updateStatusHeadBranch, updateStatusJsonBody.Ref)
715+
716+
defer r.Body.Close() // nolint: errcheck
717+
718+
setStatusJsonResponse, err := json.Marshal(EmptyStruct{})
719+
Ok(t, err)
720+
721+
_, err = w.Write(setStatusJsonResponse)
722+
Ok(t, err)
723+
724+
case "/api/v4/projects/runatlantis%2Fatlantis/repository/commits/sha":
725+
w.WriteHeader(http.StatusOK)
726+
727+
getCommitResponse := GetCommitResponse{
728+
LastPipeline: GetCommitResponseLastPipeline{
729+
ID: gitlabPipelineSuccessMrID,
730+
Ref: updateStatusHeadBranchDuplicate,
731+
},
732+
}
733+
getCommitJsonResponse, err := json.Marshal(getCommitResponse)
734+
Ok(t, err)
735+
736+
_, err = w.Write(getCommitJsonResponse)
737+
Ok(t, err)
738+
739+
case "/api/v4/":
740+
// Rate limiter requests.
741+
w.WriteHeader(http.StatusOK)
742+
743+
default:
744+
t.Errorf("got unexpected request at %q", r.RequestURI)
745+
http.Error(w, "not found", http.StatusNotFound)
746+
}
747+
}))
748+
749+
internalClient, err := gitlab.NewClient("token", gitlab.WithBaseURL(testServer.URL))
750+
Ok(t, err)
751+
client := &GitlabClient{
752+
Client: internalClient,
753+
Version: nil,
754+
}
755+
756+
repo := models.Repo{
757+
FullName: "runatlantis/atlantis",
758+
Owner: "runatlantis",
759+
Name: "atlantis",
760+
}
761+
err = client.UpdateStatus(
762+
logger,
763+
repo,
764+
models.PullRequest{
765+
Num: 1,
766+
BaseRepo: repo,
767+
HeadCommit: "sha",
768+
HeadBranch: updateStatusHeadBranch,
769+
},
770+
c.status,
771+
updateStatusSrc,
772+
updateStatusDescription,
773+
updateStatusTargetUrl,
774+
)
775+
Ok(t, err)
776+
Assert(t, gotRequest, "expected to get the request")
777+
})
778+
}
779+
}
780+
672781
func TestGitlabClient_PullIsMergeable(t *testing.T) {
673782
logger := logging.NewNoopLogger(t)
674783
gitlabClientUnderTest = true

0 commit comments

Comments
 (0)