2019-03-27 15:03:00 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-03-27 15:03:00 +05:30
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
2019-06-26 23:45:26 +05:30
|
|
|
"path/filepath"
|
2019-03-27 15:03:00 +05:30
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetLatestCommitTime(t *testing.T) {
|
2021-05-09 20:50:33 +05:30
|
|
|
bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
|
2022-01-20 04:56:57 +05:30
|
|
|
lct, err := GetLatestCommitTime(DefaultContext, bareRepo1Path)
|
2019-03-27 15:03:00 +05:30
|
|
|
assert.NoError(t, err)
|
2021-05-09 20:50:33 +05:30
|
|
|
// Time is Sun Jul 21 22:43:13 2019 +0200
|
2019-03-27 15:03:00 +05:30
|
|
|
// which is the time of commit
|
2021-05-09 20:50:33 +05:30
|
|
|
// feaf4ba6bc635fec442f46ddd4512416ec43c2c2 (refs/heads/master)
|
|
|
|
assert.EqualValues(t, 1563741793, lct.Unix())
|
2019-03-27 15:03:00 +05:30
|
|
|
}
|
2019-06-26 23:45:26 +05:30
|
|
|
|
|
|
|
func TestRepoIsEmpty(t *testing.T) {
|
|
|
|
emptyRepo2Path := filepath.Join(testReposDir, "repo2_empty")
|
2022-03-30 00:43:41 +05:30
|
|
|
repo, err := openRepositoryWithDefaultContext(emptyRepo2Path)
|
2019-06-26 23:45:26 +05:30
|
|
|
assert.NoError(t, err)
|
2019-11-13 12:31:19 +05:30
|
|
|
defer repo.Close()
|
2019-06-26 23:45:26 +05:30
|
|
|
isEmpty, err := repo.IsEmpty()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.True(t, isEmpty)
|
|
|
|
}
|