2019-05-04 06:39:03 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-04 06:39:03 -06:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRepository_GetCodeActivityStats(t *testing.T) {
|
|
|
|
bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
|
2022-03-29 13:13:41 -06:00
|
|
|
bareRepo1, err := openRepositoryWithDefaultContext(bareRepo1Path)
|
2019-05-04 06:39:03 -06:00
|
|
|
assert.NoError(t, err)
|
2019-11-13 00:01:19 -07:00
|
|
|
defer bareRepo1.Close()
|
2019-05-04 06:39:03 -06:00
|
|
|
|
|
|
|
timeFrom, err := time.Parse(time.RFC3339, "2016-01-01T00:00:00+00:00")
|
2019-07-23 13:28:43 -06:00
|
|
|
assert.NoError(t, err)
|
2019-05-04 06:39:03 -06:00
|
|
|
|
|
|
|
code, err := bareRepo1.GetCodeActivityStats(timeFrom, "")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotNil(t, code)
|
|
|
|
|
2023-03-01 22:32:21 -07:00
|
|
|
assert.EqualValues(t, 10, code.CommitCount)
|
2019-07-22 06:03:15 -06:00
|
|
|
assert.EqualValues(t, 3, code.AuthorCount)
|
2023-03-01 22:32:21 -07:00
|
|
|
assert.EqualValues(t, 10, code.CommitCountInAllBranches)
|
2019-05-04 06:39:03 -06:00
|
|
|
assert.EqualValues(t, 10, code.Additions)
|
|
|
|
assert.EqualValues(t, 1, code.Deletions)
|
2019-07-22 06:03:15 -06:00
|
|
|
assert.Len(t, code.Authors, 3)
|
2020-01-20 03:07:30 -07:00
|
|
|
assert.EqualValues(t, "tris.git@shoddynet.org", code.Authors[1].Email)
|
|
|
|
assert.EqualValues(t, 3, code.Authors[1].Commits)
|
|
|
|
assert.EqualValues(t, 5, code.Authors[0].Commits)
|
2019-05-04 06:39:03 -06:00
|
|
|
}
|