@@ -28,6 +28,7 @@ const updateStatusDescription = "description"
28
28
const updateStatusTargetUrl = "https://google.com"
29
29
const updateStatusSrc = "src"
30
30
const updateStatusHeadBranch = "test"
31
+ const updateStatusHeadBranchDuplicate = "test_duplicate"
31
32
32
33
/* UpdateStatus request JSON body object */
33
34
type UpdateStatusJsonBody struct {
@@ -41,7 +42,8 @@ type UpdateStatusJsonBody struct {
41
42
42
43
/* GetCommit response last_pipeline JSON object */
43
44
type GetCommitResponseLastPipeline struct {
44
- ID int `json:"id"`
45
+ ID int `json:"id"`
46
+ Ref string `json:"ref"`
45
47
}
46
48
47
49
/* GetCommit response JSON object */
@@ -352,6 +354,7 @@ func TestGitlabClient_UpdateStatus(t *testing.T) {
352
354
getCommitResponse := GetCommitResponse {
353
355
LastPipeline : GetCommitResponseLastPipeline {
354
356
ID : gitlabPipelineSuccessMrID ,
357
+ Ref : updateStatusHeadBranch ,
355
358
},
356
359
}
357
360
getCommitJsonResponse , err := json .Marshal (getCommitResponse )
@@ -483,6 +486,7 @@ func TestGitlabClient_UpdateStatusGetCommitRetryable(t *testing.T) {
483
486
getCommitResponse := GetCommitResponse {
484
487
LastPipeline : GetCommitResponseLastPipeline {
485
488
ID : gitlabPipelineSuccessMrID ,
489
+ Ref : updateStatusHeadBranch ,
486
490
},
487
491
}
488
492
getCommitJsonResponse , err := json .Marshal (getCommitResponse )
@@ -610,6 +614,7 @@ func TestGitlabClient_UpdateStatusSetCommitStatusConflictRetryable(t *testing.T)
610
614
getCommitResponse := GetCommitResponse {
611
615
LastPipeline : GetCommitResponseLastPipeline {
612
616
ID : gitlabPipelineSuccessMrID ,
617
+ Ref : updateStatusHeadBranch ,
613
618
},
614
619
}
615
620
getCommitJsonResponse , err := json .Marshal (getCommitResponse )
@@ -669,6 +674,110 @@ func TestGitlabClient_UpdateStatusSetCommitStatusConflictRetryable(t *testing.T)
669
674
}
670
675
}
671
676
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
+
672
781
func TestGitlabClient_PullIsMergeable (t * testing.T ) {
673
782
logger := logging .NewNoopLogger (t )
674
783
gitlabClientUnderTest = true
0 commit comments