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