autogits/workflow-pr/pr_test.go

162 lines
4.6 KiB
Go
Raw Normal View History

2024-12-02 10:26:51 +01:00
package main
2024-12-04 08:55:40 +01:00
import (
2024-12-17 23:33:43 +01:00
"errors"
"os"
"os/exec"
"path"
2024-12-04 08:55:40 +01:00
"testing"
2024-12-17 23:33:43 +01:00
2024-12-04 08:55:40 +01:00
"go.uber.org/mock/gomock"
2024-12-17 23:33:43 +01:00
"src.opensuse.org/autogits/common"
2024-12-04 08:55:40 +01:00
"src.opensuse.org/autogits/common/gitea-generated/models"
2024-12-17 23:33:43 +01:00
mock_common "src.opensuse.org/autogits/common/mock"
2024-12-04 08:55:40 +01:00
)
2024-12-02 10:26:51 +01:00
func TestPR(t *testing.T) {
2024-12-17 23:33:43 +01:00
cwd, _ := os.Getwd()
cmd := exec.Command("/usr/bin/bash", path.Join(cwd, "test_repo_setup.sh"))
cmd.Dir = t.TempDir()
if out, err := cmd.CombinedOutput(); err != nil {
t.Fatal(string(out))
}
baseConfig := common.AutogitConfig{
Reviewers: []string{"super1", "super2"},
Branch: "branch",
2024-12-18 17:30:00 +01:00
Organization: "foo",
2024-12-17 23:33:43 +01:00
GitProjectName: "barPrj",
}
type prdata struct {
pr *models.PullRequest
err error
}
tests := []struct {
name string
data []prdata
api_error string
2024-12-18 17:30:00 +01:00
resLen int
reviewed bool
prjGitPRIndex int
2024-12-17 23:33:43 +01:00
}{
{
2024-12-18 17:30:00 +01:00
name: "Error fetching PullRequest",
2024-12-17 23:33:43 +01:00
data: []prdata{
{pr: &models.PullRequest{Body: "", Index: 42, Base: &models.PRBranchInfo{Repo: &models.Repository{Name: "repo", Owner: &models.User{UserName: "test"}}}}, err: errors.New("Missing PR")},
},
},
{
2024-12-18 17:30:00 +01:00
name: "Error fetching is missing links, fixable",
2024-12-17 23:33:43 +01:00
data: []prdata{
{pr: &models.PullRequest{Body: "", Index: 42, Base: &models.PRBranchInfo{Repo: &models.Repository{Name: "repo", Owner: &models.User{UserName: "test"}}}}},
2024-12-18 17:30:00 +01:00
},
resLen: 1,
prjGitPRIndex: -1,
2024-12-17 23:33:43 +01:00
},
2024-12-02 10:26:51 +01:00
2024-12-17 23:33:43 +01:00
{
2024-12-18 17:30:00 +01:00
name: "Review set is not consistent, but fixable",
2024-12-17 23:33:43 +01:00
data: []prdata{
{pr: &models.PullRequest{Body: "PR: foo/barPrj#22", Index: 42, Base: &models.PRBranchInfo{Repo: &models.Repository{Name: "repo", Owner: &models.User{UserName: "test"}}}}},
{pr: &models.PullRequest{Body: "", Index: 22, Base: &models.PRBranchInfo{Repo: &models.Repository{Name: "barPrj", Owner: &models.User{UserName: "foo"}}}}},
},
2024-12-18 17:30:00 +01:00
resLen: 2,
prjGitPRIndex: 1,
2024-12-17 23:33:43 +01:00
},
{
name: "Review set is consistent: 1pkg",
data: []prdata{
{pr: &models.PullRequest{Body: "PR: foo/barPrj#22", Index: 42, Base: &models.PRBranchInfo{Repo: &models.Repository{Name: "repo", Owner: &models.User{UserName: "test"}}}}},
{pr: &models.PullRequest{Body: "PR: test/repo#42", Index: 22, Base: &models.PRBranchInfo{Repo: &models.Repository{Name: "barPrj", Owner: &models.User{UserName: "foo"}}}}},
},
2024-12-18 17:30:00 +01:00
resLen: 2,
prjGitPRIndex: 1,
2024-12-17 23:33:43 +01:00
},
{
name: "Review set is consistent: 2pkg",
data: []prdata{
{pr: &models.PullRequest{Body: "PR: foo/barPrj#22", Index: 42, Base: &models.PRBranchInfo{Repo: &models.Repository{Name: "repo", Owner: &models.User{UserName: "test"}}}}},
{pr: &models.PullRequest{Body: "PR: test/repo#42\nPR: test/repo2#41", Index: 22, Base: &models.PRBranchInfo{Repo: &models.Repository{Name: "barPrj", Owner: &models.User{UserName: "foo"}}}}},
{pr: &models.PullRequest{Body: "PR: foo/barPrj#22", Index: 41, Base: &models.PRBranchInfo{Repo: &models.Repository{Name: "repo2", Owner: &models.User{UserName: "test"}}}}},
},
2024-12-18 17:30:00 +01:00
resLen: 3,
prjGitPRIndex: 1,
2024-12-17 23:33:43 +01:00
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
ctl := gomock.NewController(t)
mock := mock_common.NewMockGiteaPRFetcher(ctl)
var test_err error
for _, data := range test.data {
mock.EXPECT().GetPullRequest(data.pr.Base.Repo.Owner.UserName, data.pr.Base.Repo.Name, data.pr.Index).Return(data.pr, data.err)
if data.err != nil {
test_err = data.err
}
}
res, err := FetchReviewSet(mock, "test", "repo", 42, &baseConfig)
if err == nil {
if test_err != nil {
t.Fatal("Expected", test_err, "but got", err)
}
} else {
2024-12-18 17:30:00 +01:00
if res != nil {
t.Fatal("error but got ReviewSet?")
}
2024-12-17 23:33:43 +01:00
if test.api_error != "" {
if err.Error() != test.api_error {
t.Fatal("expected", test.api_error, "but got", err)
}
} else if test_err != err {
t.Fatal("expected", test_err, "but got", err)
}
return
}
t.Log(res)
if test.resLen != len(res.prs) {
t.Error("expected result len", test.resLen, "but got", len(res.prs))
}
2024-12-18 17:30:00 +01:00
pr, err := res.GetPrjGitPR()
if test.prjGitPRIndex < 0 {
if err == nil {
t.Error("expected error, but nothing")
}
2024-12-17 23:33:43 +01:00
}
2024-12-18 17:30:00 +01:00
pr_found := false
if test.prjGitPRIndex >= 0 {
for i := range test.data {
if pr == test.data[i].pr && i == test.prjGitPRIndex {
t.Log("found at index", i)
pr_found = true
}
}
if !pr_found {
t.Error("Cannot find expected PrjGit location in PrjGit set", pr)
}
} else {
if pr != nil {
t.Log("Expected prjgit not found, but found?", pr)
}
}
/*
if res.IsReviewed() != test.reviewed {
t.Error("expected reviewed to be NOT", res.IsReviewed())
}
2024-12-17 23:33:43 +01:00
*/
})
}
}