1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
package git
import (
"math/rand/v2"
"net/http"
"os"
"os/exec"
"strconv"
"testing"
"gitlab.com/gitlab-org/cli/internal/run"
"gitlab.com/gitlab-org/cli/pkg/httpmock"
"github.com/stretchr/testify/require"
)
type HttpMock struct {
method string
path string
requestBody string
body string
status int
}
func InitGitRepo(t *testing.T) string {
tempDir := t.TempDir()
err := os.Chdir(tempDir)
require.NoError(t, err)
gitInit := GitCommand("init")
_, err = run.PrepareCmd(gitInit).Output()
require.NoError(t, err)
return tempDir
}
func InitGitRepoWithCommit(t *testing.T) string {
tempDir := InitGitRepo(t)
configureGitConfig(t)
err := exec.Command("touch", "randomfile").Run()
require.NoError(t, err)
gitAdd := GitCommand("add", "randomfile")
_, err = run.PrepareCmd(gitAdd).Output()
require.NoError(t, err)
gitCommit := GitCommand("commit", "-m", "\"commit\"")
_, err = run.PrepareCmd(gitCommit).Output()
require.NoError(t, err)
return tempDir
}
func configureGitConfig(t *testing.T) {
// CI will throw errors using a git command without a configuration
nameConfig := GitCommand("config", "user.name", "glab test bot")
_, err := run.PrepareCmd(nameConfig).Output()
require.NoError(t, err)
emailConfig := GitCommand("config", "user.email", "no-reply+cli-tests@gitlab.com")
_, err = run.PrepareCmd(emailConfig).Output()
require.NoError(t, err)
}
func CreateRefFiles(refs map[string]StackRef, title string) error {
for _, ref := range refs {
err := AddStackRefFile(title, ref)
if err != nil {
return err
}
}
return nil
}
func CreateBranches(t *testing.T, branches []string) {
// older versions of git could default to a different branch,
// so making sure this one exists.
_ = CheckoutNewBranch("main")
for _, branch := range branches {
err := CheckoutNewBranch(branch)
require.Nil(t, err)
}
}
func SetupMocks(mocks []HttpMock) *httpmock.Mocker {
fakeHTTP := &httpmock.Mocker{
MatchURL: httpmock.PathAndQuerystring,
}
for _, mock := range mocks {
if mock.requestBody != "" {
fakeHTTP.RegisterResponderWithBody(
mock.method,
mock.path,
mock.requestBody,
httpmock.NewStringResponse(mock.status, mock.body),
)
} else {
fakeHTTP.RegisterResponder(
mock.method,
mock.path,
httpmock.NewStringResponse(mock.status, mock.body),
)
}
}
return fakeHTTP
}
func MockStackUser() HttpMock {
return HttpMock{
method: http.MethodGet,
path: "/api/v4/user",
status: http.StatusOK,
body: `{ "username": "stack_guy" }`,
}
}
func MockPostStackMR(source, target, project string) HttpMock {
return HttpMock{
method: http.MethodPost,
path: "/api/v4/projects/stack_guy%2Fstackproject/merge_requests",
status: http.StatusOK,
requestBody: `{
"title": "",
"source_branch":"` + source + `",
"target_branch":"` + target + `",
"assignee_id":0,
"target_project_id": ` + project + `,
"remove_source_branch":true
}`,
body: `{
"title": "Test MR",
"iid": ` + strconv.Itoa(rand.IntN(100)) + `,
"source_branch":"` + source + `",
"target_branch":"` + target + `"
}`,
}
}
func MockPutStackMR(target, iid, project string) HttpMock {
return HttpMock{
method: http.MethodPut,
path: "/api/v4/projects/" + project + "/merge_requests/" + iid,
status: http.StatusOK,
requestBody: `{"target_branch":"` + target + `"}`,
body: `{}`,
}
}
func MockListStackMRsByBranch(branch, iid string) HttpMock {
return HttpMock{
method: http.MethodGet,
path: "/api/v4/projects/stack_guy%2Fstackproject/merge_requests?per_page=30&source_branch=" + branch,
status: http.StatusOK,
body: "[" + MrMockStackData(branch, iid) + "]",
}
}
func MockListOpenStackMRsByBranch(branch, iid string) HttpMock {
return HttpMock{
method: http.MethodGet,
path: "/api/v4/projects/stack_guy%2Fstackproject/merge_requests?per_page=30&source_branch=" + branch + "&state=opened",
status: http.StatusOK,
body: "[" + MrMockStackData(branch, iid) + "]",
}
}
func MockGetStackMR(branch, iid string) HttpMock {
return HttpMock{
method: http.MethodGet,
path: "https://gitlab.com/api/v4/projects/stack_guy%2Fstackproject/merge_requests/" + iid,
status: http.StatusOK,
body: MrMockStackData(branch, iid),
}
}
func MrMockStackData(branch, iid string) string {
return `{
"id": ` + iid + `,
"iid": ` + iid + `,
"project_id": 3,
"title": "test mr title",
"target_branch": "main",
"source_branch": "` + branch + `",
"description": "test mr description` + iid + `",
"author": {
"id": 1,
"username": "admin"
},
"state": "opened"
}`
}
|