|
|
|
@ -5,11 +5,15 @@ package git_test
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
|
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
|
"code.gitea.io/gitea/modules/gitrepo"
|
|
|
|
|
"code.gitea.io/gitea/modules/structs"
|
|
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
@ -175,3 +179,55 @@ func Test_CalcCommitStatus(t *testing.T) {
|
|
|
|
|
assert.Equal(t, kase.expected, git_model.CalcCommitStatus(kase.statuses))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestFindRepoRecentCommitStatusContexts(t *testing.T) {
|
|
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
|
|
|
|
|
|
repo2 := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 2})
|
|
|
|
|
user2 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
|
|
|
|
gitRepo, err := gitrepo.OpenRepository(git.DefaultContext, repo2)
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
defer gitRepo.Close()
|
|
|
|
|
|
|
|
|
|
commit, err := gitRepo.GetBranchCommit(repo2.DefaultBranch)
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
|
_, err := db.DeleteByBean(db.DefaultContext, &git_model.CommitStatus{
|
|
|
|
|
RepoID: repo2.ID,
|
|
|
|
|
CreatorID: user2.ID,
|
|
|
|
|
SHA: commit.ID.String(),
|
|
|
|
|
})
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
err = git_model.NewCommitStatus(db.DefaultContext, git_model.NewCommitStatusOptions{
|
|
|
|
|
Repo: repo2,
|
|
|
|
|
Creator: user2,
|
|
|
|
|
SHA: commit.ID,
|
|
|
|
|
CommitStatus: &git_model.CommitStatus{
|
|
|
|
|
State: structs.CommitStatusFailure,
|
|
|
|
|
TargetURL: "https://example.com/tests/",
|
|
|
|
|
Context: "compliance/lint-backend",
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
err = git_model.NewCommitStatus(db.DefaultContext, git_model.NewCommitStatusOptions{
|
|
|
|
|
Repo: repo2,
|
|
|
|
|
Creator: user2,
|
|
|
|
|
SHA: commit.ID,
|
|
|
|
|
CommitStatus: &git_model.CommitStatus{
|
|
|
|
|
State: structs.CommitStatusSuccess,
|
|
|
|
|
TargetURL: "https://example.com/tests/",
|
|
|
|
|
Context: "compliance/lint-backend",
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
contexts, err := git_model.FindRepoRecentCommitStatusContexts(db.DefaultContext, repo2.ID, time.Hour)
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
if assert.Len(t, contexts, 1) {
|
|
|
|
|
assert.Equal(t, "compliance/lint-backend", contexts[0])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|