mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 01:10:49 +01:00
Pass 'not' to commit count (#24473)
Due to #24409 , we can now specify '--not' when getting all commits from a repo to exclude commits from a different branch. When I wrote that PR, I forgot to also update the code that counts the number of commits in the repo. So now, if the --not option is used, it may return too many commits, which can indicate that another page of data is available when it is not. This PR passes --not to the commands that count the number of commits in a repo
This commit is contained in:
parent
e962ade99c
commit
ff5629268c
10 changed files with 177 additions and 30 deletions
|
@ -208,7 +208,12 @@ func (r *Repository) GetCommitGraphsCount(ctx context.Context, hidePRRefs bool,
|
||||||
if len(branches) == 0 {
|
if len(branches) == 0 {
|
||||||
return git.AllCommitsCount(ctx, r.Repository.RepoPath(), hidePRRefs, files...)
|
return git.AllCommitsCount(ctx, r.Repository.RepoPath(), hidePRRefs, files...)
|
||||||
}
|
}
|
||||||
return git.CommitsCountFiles(ctx, r.Repository.RepoPath(), branches, files)
|
return git.CommitsCount(ctx,
|
||||||
|
git.CommitsCountOptions{
|
||||||
|
RepoPath: r.Repository.RepoPath(),
|
||||||
|
Revision: branches,
|
||||||
|
RelPath: files,
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -160,15 +160,29 @@ func AllCommitsCount(ctx context.Context, repoPath string, hidePRRefs bool, file
|
||||||
return strconv.ParseInt(strings.TrimSpace(stdout), 10, 64)
|
return strconv.ParseInt(strings.TrimSpace(stdout), 10, 64)
|
||||||
}
|
}
|
||||||
|
|
||||||
// CommitsCountFiles returns number of total commits of until given revision.
|
// CommitsCountOptions the options when counting commits
|
||||||
func CommitsCountFiles(ctx context.Context, repoPath string, revision, relpath []string) (int64, error) {
|
type CommitsCountOptions struct {
|
||||||
|
RepoPath string
|
||||||
|
Not string
|
||||||
|
Revision []string
|
||||||
|
RelPath []string
|
||||||
|
}
|
||||||
|
|
||||||
|
// CommitsCount returns number of total commits of until given revision.
|
||||||
|
func CommitsCount(ctx context.Context, opts CommitsCountOptions) (int64, error) {
|
||||||
cmd := NewCommand(ctx, "rev-list", "--count")
|
cmd := NewCommand(ctx, "rev-list", "--count")
|
||||||
cmd.AddDynamicArguments(revision...)
|
|
||||||
if len(relpath) > 0 {
|
cmd.AddDynamicArguments(opts.Revision...)
|
||||||
cmd.AddDashesAndList(relpath...)
|
|
||||||
|
if opts.Not != "" {
|
||||||
|
cmd.AddOptionValues("--not", opts.Not)
|
||||||
}
|
}
|
||||||
|
|
||||||
stdout, _, err := cmd.RunStdString(&RunOpts{Dir: repoPath})
|
if len(opts.RelPath) > 0 {
|
||||||
|
cmd.AddDashesAndList(opts.RelPath...)
|
||||||
|
}
|
||||||
|
|
||||||
|
stdout, _, err := cmd.RunStdString(&RunOpts{Dir: opts.RepoPath})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
@ -176,14 +190,12 @@ func CommitsCountFiles(ctx context.Context, repoPath string, revision, relpath [
|
||||||
return strconv.ParseInt(strings.TrimSpace(stdout), 10, 64)
|
return strconv.ParseInt(strings.TrimSpace(stdout), 10, 64)
|
||||||
}
|
}
|
||||||
|
|
||||||
// CommitsCount returns number of total commits of until given revision.
|
|
||||||
func CommitsCount(ctx context.Context, repoPath string, revision ...string) (int64, error) {
|
|
||||||
return CommitsCountFiles(ctx, repoPath, revision, []string{})
|
|
||||||
}
|
|
||||||
|
|
||||||
// CommitsCount returns number of total commits of until current revision.
|
// CommitsCount returns number of total commits of until current revision.
|
||||||
func (c *Commit) CommitsCount() (int64, error) {
|
func (c *Commit) CommitsCount() (int64, error) {
|
||||||
return CommitsCount(c.repo.Ctx, c.repo.Path, c.ID.String())
|
return CommitsCount(c.repo.Ctx, CommitsCountOptions{
|
||||||
|
RepoPath: c.repo.Path,
|
||||||
|
Revision: []string{c.ID.String()},
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// CommitsByRange returns the specific page commits before current revision, every page's number default by CommitsRangeSize
|
// CommitsByRange returns the specific page commits before current revision, every page's number default by CommitsRangeSize
|
||||||
|
|
|
@ -14,11 +14,30 @@ import (
|
||||||
func TestCommitsCount(t *testing.T) {
|
func TestCommitsCount(t *testing.T) {
|
||||||
bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
|
bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
|
||||||
|
|
||||||
commitsCount, err := CommitsCount(DefaultContext, bareRepo1Path, "8006ff9adbf0cb94da7dad9e537e53817f9fa5c0")
|
commitsCount, err := CommitsCount(DefaultContext,
|
||||||
|
CommitsCountOptions{
|
||||||
|
RepoPath: bareRepo1Path,
|
||||||
|
Revision: []string{"8006ff9adbf0cb94da7dad9e537e53817f9fa5c0"},
|
||||||
|
})
|
||||||
|
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
assert.Equal(t, int64(3), commitsCount)
|
assert.Equal(t, int64(3), commitsCount)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCommitsCountWithoutBase(t *testing.T) {
|
||||||
|
bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
|
||||||
|
|
||||||
|
commitsCount, err := CommitsCount(DefaultContext,
|
||||||
|
CommitsCountOptions{
|
||||||
|
RepoPath: bareRepo1Path,
|
||||||
|
Not: "master",
|
||||||
|
Revision: []string{"branch1"},
|
||||||
|
})
|
||||||
|
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, int64(2), commitsCount)
|
||||||
|
}
|
||||||
|
|
||||||
func TestGetFullCommitID(t *testing.T) {
|
func TestGetFullCommitID(t *testing.T) {
|
||||||
bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
|
bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
|
||||||
|
|
||||||
|
|
|
@ -205,12 +205,24 @@ func (repo *Repository) FileChangedBetweenCommits(filename, id1, id2 string) (bo
|
||||||
|
|
||||||
// FileCommitsCount return the number of files at a revision
|
// FileCommitsCount return the number of files at a revision
|
||||||
func (repo *Repository) FileCommitsCount(revision, file string) (int64, error) {
|
func (repo *Repository) FileCommitsCount(revision, file string) (int64, error) {
|
||||||
return CommitsCountFiles(repo.Ctx, repo.Path, []string{revision}, []string{file})
|
return CommitsCount(repo.Ctx,
|
||||||
|
CommitsCountOptions{
|
||||||
|
RepoPath: repo.Path,
|
||||||
|
Revision: []string{revision},
|
||||||
|
RelPath: []string{file},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
type CommitsByFileAndRangeOptions struct {
|
||||||
|
Revision string
|
||||||
|
File string
|
||||||
|
Not string
|
||||||
|
Page int
|
||||||
}
|
}
|
||||||
|
|
||||||
// CommitsByFileAndRange return the commits according revision file and the page
|
// CommitsByFileAndRange return the commits according revision file and the page
|
||||||
func (repo *Repository) CommitsByFileAndRange(revision, file string, page int) ([]*Commit, error) {
|
func (repo *Repository) CommitsByFileAndRange(opts CommitsByFileAndRangeOptions) ([]*Commit, error) {
|
||||||
skip := (page - 1) * setting.Git.CommitsRangeSize
|
skip := (opts.Page - 1) * setting.Git.CommitsRangeSize
|
||||||
|
|
||||||
stdoutReader, stdoutWriter := io.Pipe()
|
stdoutReader, stdoutWriter := io.Pipe()
|
||||||
defer func() {
|
defer func() {
|
||||||
|
@ -220,10 +232,15 @@ func (repo *Repository) CommitsByFileAndRange(revision, file string, page int) (
|
||||||
go func() {
|
go func() {
|
||||||
stderr := strings.Builder{}
|
stderr := strings.Builder{}
|
||||||
gitCmd := NewCommand(repo.Ctx, "rev-list").
|
gitCmd := NewCommand(repo.Ctx, "rev-list").
|
||||||
AddOptionFormat("--max-count=%d", setting.Git.CommitsRangeSize*page).
|
AddOptionFormat("--max-count=%d", setting.Git.CommitsRangeSize*opts.Page).
|
||||||
AddOptionFormat("--skip=%d", skip)
|
AddOptionFormat("--skip=%d", skip)
|
||||||
gitCmd.AddDynamicArguments(revision)
|
gitCmd.AddDynamicArguments(opts.Revision)
|
||||||
gitCmd.AddDashesAndList(file)
|
|
||||||
|
if opts.Not != "" {
|
||||||
|
gitCmd.AddOptionValues("--not", opts.Not)
|
||||||
|
}
|
||||||
|
|
||||||
|
gitCmd.AddDashesAndList(opts.File)
|
||||||
err := gitCmd.Run(&RunOpts{
|
err := gitCmd.Run(&RunOpts{
|
||||||
Dir: repo.Path,
|
Dir: repo.Path,
|
||||||
Stdout: stdoutWriter,
|
Stdout: stdoutWriter,
|
||||||
|
@ -365,11 +382,18 @@ func (repo *Repository) CommitsBetweenIDs(last, before string) ([]*Commit, error
|
||||||
|
|
||||||
// CommitsCountBetween return numbers of commits between two commits
|
// CommitsCountBetween return numbers of commits between two commits
|
||||||
func (repo *Repository) CommitsCountBetween(start, end string) (int64, error) {
|
func (repo *Repository) CommitsCountBetween(start, end string) (int64, error) {
|
||||||
count, err := CommitsCountFiles(repo.Ctx, repo.Path, []string{start + ".." + end}, []string{})
|
count, err := CommitsCount(repo.Ctx, CommitsCountOptions{
|
||||||
|
RepoPath: repo.Path,
|
||||||
|
Revision: []string{start + ".." + end},
|
||||||
|
})
|
||||||
|
|
||||||
if err != nil && strings.Contains(err.Error(), "no merge base") {
|
if err != nil && strings.Contains(err.Error(), "no merge base") {
|
||||||
// future versions of git >= 2.28 are likely to return an error if before and last have become unrelated.
|
// future versions of git >= 2.28 are likely to return an error if before and last have become unrelated.
|
||||||
// previously it would return the results of git rev-list before last so let's try that...
|
// previously it would return the results of git rev-list before last so let's try that...
|
||||||
return CommitsCountFiles(repo.Ctx, repo.Path, []string{start, end}, []string{})
|
return CommitsCount(repo.Ctx, CommitsCountOptions{
|
||||||
|
RepoPath: repo.Path,
|
||||||
|
Revision: []string{start, end},
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
return count, err
|
return count, err
|
||||||
|
|
|
@ -146,6 +146,7 @@ func GetAllCommits(ctx *context.APIContext) {
|
||||||
|
|
||||||
sha := ctx.FormString("sha")
|
sha := ctx.FormString("sha")
|
||||||
path := ctx.FormString("path")
|
path := ctx.FormString("path")
|
||||||
|
not := ctx.FormString("not")
|
||||||
|
|
||||||
var (
|
var (
|
||||||
commitsCountTotal int64
|
commitsCountTotal int64
|
||||||
|
@ -178,14 +179,18 @@ func GetAllCommits(ctx *context.APIContext) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Total commit count
|
// Total commit count
|
||||||
commitsCountTotal, err = baseCommit.CommitsCount()
|
commitsCountTotal, err = git.CommitsCount(ctx.Repo.GitRepo.Ctx, git.CommitsCountOptions{
|
||||||
|
RepoPath: ctx.Repo.GitRepo.Path,
|
||||||
|
Not: not,
|
||||||
|
Revision: []string{baseCommit.ID.String()},
|
||||||
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Error(http.StatusInternalServerError, "GetCommitsCount", err)
|
ctx.Error(http.StatusInternalServerError, "GetCommitsCount", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Query commits
|
// Query commits
|
||||||
not := ctx.FormString("not")
|
|
||||||
commits, err = baseCommit.CommitsByRange(listOptions.Page, listOptions.PageSize, not)
|
commits, err = baseCommit.CommitsByRange(listOptions.Page, listOptions.PageSize, not)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Error(http.StatusInternalServerError, "CommitsByRange", err)
|
ctx.Error(http.StatusInternalServerError, "CommitsByRange", err)
|
||||||
|
@ -196,7 +201,14 @@ func GetAllCommits(ctx *context.APIContext) {
|
||||||
sha = ctx.Repo.Repository.DefaultBranch
|
sha = ctx.Repo.Repository.DefaultBranch
|
||||||
}
|
}
|
||||||
|
|
||||||
commitsCountTotal, err = ctx.Repo.GitRepo.FileCommitsCount(sha, path)
|
commitsCountTotal, err = git.CommitsCount(ctx,
|
||||||
|
git.CommitsCountOptions{
|
||||||
|
RepoPath: ctx.Repo.GitRepo.Path,
|
||||||
|
Not: not,
|
||||||
|
Revision: []string{sha},
|
||||||
|
RelPath: []string{path},
|
||||||
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Error(http.StatusInternalServerError, "FileCommitsCount", err)
|
ctx.Error(http.StatusInternalServerError, "FileCommitsCount", err)
|
||||||
return
|
return
|
||||||
|
@ -205,7 +217,14 @@ func GetAllCommits(ctx *context.APIContext) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
commits, err = ctx.Repo.GitRepo.CommitsByFileAndRange(sha, path, listOptions.Page)
|
commits, err = ctx.Repo.GitRepo.CommitsByFileAndRange(
|
||||||
|
git.CommitsByFileAndRangeOptions{
|
||||||
|
Revision: sha,
|
||||||
|
File: path,
|
||||||
|
Not: not,
|
||||||
|
Page: listOptions.Page,
|
||||||
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Error(http.StatusInternalServerError, "CommitsByFileAndRange", err)
|
ctx.Error(http.StatusInternalServerError, "CommitsByFileAndRange", err)
|
||||||
return
|
return
|
||||||
|
|
|
@ -429,7 +429,12 @@ func ListPageRevisions(ctx *context.APIContext) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// get Commit Count
|
// get Commit Count
|
||||||
commitsHistory, err := wikiRepo.CommitsByFileAndRange("master", pageFilename, page)
|
commitsHistory, err := wikiRepo.CommitsByFileAndRange(
|
||||||
|
git.CommitsByFileAndRangeOptions{
|
||||||
|
Revision: "master",
|
||||||
|
File: pageFilename,
|
||||||
|
Page: page,
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Error(http.StatusInternalServerError, "CommitsByFileAndRange", err)
|
ctx.Error(http.StatusInternalServerError, "CommitsByFileAndRange", err)
|
||||||
return
|
return
|
||||||
|
|
|
@ -10,6 +10,7 @@ import (
|
||||||
|
|
||||||
"code.gitea.io/gitea/models/repo"
|
"code.gitea.io/gitea/models/repo"
|
||||||
"code.gitea.io/gitea/modules/context"
|
"code.gitea.io/gitea/modules/context"
|
||||||
|
"code.gitea.io/gitea/modules/git"
|
||||||
"code.gitea.io/gitea/modules/util"
|
"code.gitea.io/gitea/modules/util"
|
||||||
|
|
||||||
"github.com/gorilla/feeds"
|
"github.com/gorilla/feeds"
|
||||||
|
@ -21,7 +22,12 @@ func ShowFileFeed(ctx *context.Context, repo *repo.Repository, formatType string
|
||||||
if len(fileName) == 0 {
|
if len(fileName) == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(ctx.Repo.RefName, fileName, 1)
|
commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(
|
||||||
|
git.CommitsByFileAndRangeOptions{
|
||||||
|
Revision: ctx.Repo.RefName,
|
||||||
|
File: fileName,
|
||||||
|
Page: 1,
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.ServerError("ShowBranchFeed", err)
|
ctx.ServerError("ShowBranchFeed", err)
|
||||||
return
|
return
|
||||||
|
|
|
@ -230,7 +230,12 @@ func FileHistory(ctx *context.Context) {
|
||||||
page = 1
|
page = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(ctx.Repo.RefName, fileName, page)
|
commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(
|
||||||
|
git.CommitsByFileAndRangeOptions{
|
||||||
|
Revision: ctx.Repo.RefName,
|
||||||
|
File: fileName,
|
||||||
|
Page: page,
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.ServerError("CommitsByFileAndRange", err)
|
ctx.ServerError("CommitsByFileAndRange", err)
|
||||||
return
|
return
|
||||||
|
|
|
@ -376,7 +376,12 @@ func renderRevisionPage(ctx *context.Context) (*git.Repository, *git.TreeEntry)
|
||||||
}
|
}
|
||||||
|
|
||||||
// get Commit Count
|
// get Commit Count
|
||||||
commitsHistory, err := wikiRepo.CommitsByFileAndRange(wiki_service.DefaultBranch, pageFilename, page)
|
commitsHistory, err := wikiRepo.CommitsByFileAndRange(
|
||||||
|
git.CommitsByFileAndRangeOptions{
|
||||||
|
Revision: wiki_service.DefaultBranch,
|
||||||
|
File: pageFilename,
|
||||||
|
Page: page,
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if wikiRepo != nil {
|
if wikiRepo != nil {
|
||||||
wikiRepo.Close()
|
wikiRepo.Close()
|
||||||
|
|
|
@ -58,6 +58,29 @@ func TestAPIReposGitCommitList(t *testing.T) {
|
||||||
session := loginUser(t, user.Name)
|
session := loginUser(t, user.Name)
|
||||||
token := getTokenForLoggedInUser(t, session)
|
token := getTokenForLoggedInUser(t, session)
|
||||||
|
|
||||||
|
// Test getting commits (Page 1)
|
||||||
|
req := NewRequestf(t, "GET", "/api/v1/repos/%s/repo20/commits?token="+token+"¬=master&sha=remove-files-a", user.Name)
|
||||||
|
resp := MakeRequest(t, req, http.StatusOK)
|
||||||
|
|
||||||
|
var apiData []api.Commit
|
||||||
|
DecodeJSON(t, resp, &apiData)
|
||||||
|
|
||||||
|
assert.Len(t, apiData, 2)
|
||||||
|
assert.EqualValues(t, "cfe3b3c1fd36fba04f9183287b106497e1afe986", apiData[0].CommitMeta.SHA)
|
||||||
|
compareCommitFiles(t, []string{"link_hi", "test.csv"}, apiData[0].Files)
|
||||||
|
assert.EqualValues(t, "c8e31bc7688741a5287fcde4fbb8fc129ca07027", apiData[1].CommitMeta.SHA)
|
||||||
|
compareCommitFiles(t, []string{"test.csv"}, apiData[1].Files)
|
||||||
|
|
||||||
|
assert.EqualValues(t, resp.Header().Get("X-Total"), "2")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestAPIReposGitCommitListNotMaster(t *testing.T) {
|
||||||
|
defer tests.PrepareTestEnv(t)()
|
||||||
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
||||||
|
// Login as User2.
|
||||||
|
session := loginUser(t, user.Name)
|
||||||
|
token := getTokenForLoggedInUser(t, session)
|
||||||
|
|
||||||
// Test getting commits (Page 1)
|
// Test getting commits (Page 1)
|
||||||
req := NewRequestf(t, "GET", "/api/v1/repos/%s/repo16/commits?token="+token, user.Name)
|
req := NewRequestf(t, "GET", "/api/v1/repos/%s/repo16/commits?token="+token, user.Name)
|
||||||
resp := MakeRequest(t, req, http.StatusOK)
|
resp := MakeRequest(t, req, http.StatusOK)
|
||||||
|
@ -72,6 +95,8 @@ func TestAPIReposGitCommitList(t *testing.T) {
|
||||||
compareCommitFiles(t, []string{"readme.md"}, apiData[1].Files)
|
compareCommitFiles(t, []string{"readme.md"}, apiData[1].Files)
|
||||||
assert.EqualValues(t, "5099b81332712fe655e34e8dd63574f503f61811", apiData[2].CommitMeta.SHA)
|
assert.EqualValues(t, "5099b81332712fe655e34e8dd63574f503f61811", apiData[2].CommitMeta.SHA)
|
||||||
compareCommitFiles(t, []string{"readme.md"}, apiData[2].Files)
|
compareCommitFiles(t, []string{"readme.md"}, apiData[2].Files)
|
||||||
|
|
||||||
|
assert.EqualValues(t, resp.Header().Get("X-Total"), "3")
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestAPIReposGitCommitListPage2Empty(t *testing.T) {
|
func TestAPIReposGitCommitListPage2Empty(t *testing.T) {
|
||||||
|
@ -148,4 +173,26 @@ func TestGetFileHistory(t *testing.T) {
|
||||||
assert.Len(t, apiData, 1)
|
assert.Len(t, apiData, 1)
|
||||||
assert.Equal(t, "f27c2b2b03dcab38beaf89b0ab4ff61f6de63441", apiData[0].CommitMeta.SHA)
|
assert.Equal(t, "f27c2b2b03dcab38beaf89b0ab4ff61f6de63441", apiData[0].CommitMeta.SHA)
|
||||||
compareCommitFiles(t, []string{"readme.md"}, apiData[0].Files)
|
compareCommitFiles(t, []string{"readme.md"}, apiData[0].Files)
|
||||||
|
|
||||||
|
assert.EqualValues(t, resp.Header().Get("X-Total"), "1")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetFileHistoryNotOnMaster(t *testing.T) {
|
||||||
|
defer tests.PrepareTestEnv(t)()
|
||||||
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
||||||
|
// Login as User2.
|
||||||
|
session := loginUser(t, user.Name)
|
||||||
|
token := getTokenForLoggedInUser(t, session)
|
||||||
|
|
||||||
|
req := NewRequestf(t, "GET", "/api/v1/repos/%s/repo20/commits?path=test.csv&token="+token+"&sha=add-csv¬=master", user.Name)
|
||||||
|
resp := MakeRequest(t, req, http.StatusOK)
|
||||||
|
|
||||||
|
var apiData []api.Commit
|
||||||
|
DecodeJSON(t, resp, &apiData)
|
||||||
|
|
||||||
|
assert.Len(t, apiData, 1)
|
||||||
|
assert.Equal(t, "c8e31bc7688741a5287fcde4fbb8fc129ca07027", apiData[0].CommitMeta.SHA)
|
||||||
|
compareCommitFiles(t, []string{"test.csv"}, apiData[0].Files)
|
||||||
|
|
||||||
|
assert.EqualValues(t, resp.Header().Get("X-Total"), "1")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue