diff options
author | 6543 <6543@obermui.de> | 2021-05-09 17:20:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-09 17:20:33 +0200 |
commit | 4ea0b46d9b484917f122d08428cde71b3ba80aed (patch) | |
tree | 4a1a1c7271af67c01112fec1207314e88877a03e /modules/git/repo_test.go | |
parent | a229e3438780a18d283b21920c5ccd1670e5f747 (diff) | |
download | gitea-4ea0b46d9b484917f122d08428cde71b3ba80aed.tar.gz gitea-4ea0b46d9b484917f122d08428cde71b3ba80aed.zip |
Tests should use test files (#15801)
Diffstat (limited to 'modules/git/repo_test.go')
-rw-r--r-- | modules/git/repo_test.go | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/modules/git/repo_test.go b/modules/git/repo_test.go index 0b6986764c..9517783e6b 100644 --- a/modules/git/repo_test.go +++ b/modules/git/repo_test.go @@ -7,23 +7,18 @@ package git import ( "path/filepath" "testing" - "time" "github.com/stretchr/testify/assert" ) func TestGetLatestCommitTime(t *testing.T) { - lct, err := GetLatestCommitTime(".") + bareRepo1Path := filepath.Join(testReposDir, "repo1_bare") + lct, err := GetLatestCommitTime(bareRepo1Path) assert.NoError(t, err) - // Time is in the past - now := time.Now() - assert.True(t, lct.Unix() < now.Unix(), "%d not smaller than %d", lct, now) - // Time is after Mon Oct 23 03:52:09 2017 +0300 + // Time is Sun Jul 21 22:43:13 2019 +0200 // which is the time of commit - // d47b98c44c9a6472e44ab80efe65235e11c6da2a - refTime, err := time.Parse("Mon Jan 02 15:04:05 2006 -0700", "Mon Oct 23 03:52:09 2017 +0300") - assert.NoError(t, err) - assert.True(t, lct.Unix() > refTime.Unix(), "%d not greater than %d", lct, refTime) + // feaf4ba6bc635fec442f46ddd4512416ec43c2c2 (refs/heads/master) + assert.EqualValues(t, 1563741793, lct.Unix()) } func TestRepoIsEmpty(t *testing.T) { |