2019-03-27 03:33:00 -06:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-03-27 03:33:00 -06:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
2019-06-26 12:15:26 -06:00
|
|
|
"path/filepath"
|
2019-03-27 03:33:00 -06:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetLatestCommitTime(t *testing.T) {
|
2021-05-09 09:20:33 -06:00
|
|
|
bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
|
2022-01-19 16:26:57 -07:00
|
|
|
lct, err := GetLatestCommitTime(DefaultContext, bareRepo1Path)
|
2019-03-27 03:33:00 -06:00
|
|
|
assert.NoError(t, err)
|
2023-03-03 12:42:46 -07:00
|
|
|
// Time is Sun Nov 13 16:40:14 2022 +0100
|
2019-03-27 03:33:00 -06:00
|
|
|
// which is the time of commit
|
2023-03-03 12:42:46 -07:00
|
|
|
// ce064814f4a0d337b333e646ece456cd39fab612 (refs/heads/master)
|
|
|
|
assert.EqualValues(t, 1668354014, lct.Unix())
|
2019-03-27 03:33:00 -06:00
|
|
|
}
|
2019-06-26 12:15:26 -06:00
|
|
|
|
|
|
|
func TestRepoIsEmpty(t *testing.T) {
|
|
|
|
emptyRepo2Path := filepath.Join(testReposDir, "repo2_empty")
|
2022-03-29 13:13:41 -06:00
|
|
|
repo, err := openRepositoryWithDefaultContext(emptyRepo2Path)
|
2019-06-26 12:15:26 -06:00
|
|
|
assert.NoError(t, err)
|
2019-11-13 00:01:19 -07:00
|
|
|
defer repo.Close()
|
2019-06-26 12:15:26 -06:00
|
|
|
isEmpty, err := repo.IsEmpty()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.True(t, isEmpty)
|
|
|
|
}
|