2019-03-27 10:33:00 +01:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
2019-06-26 20:15:26 +02:00
|
|
|
"path/filepath"
|
2019-03-27 10:33:00 +01:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetLatestCommitTime(t *testing.T) {
|
2021-05-09 17:20:33 +02:00
|
|
|
bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
|
2022-01-20 00:26:57 +01:00
|
|
|
lct, err := GetLatestCommitTime(DefaultContext, bareRepo1Path)
|
2019-03-27 10:33:00 +01:00
|
|
|
assert.NoError(t, err)
|
2021-05-09 17:20:33 +02:00
|
|
|
// Time is Sun Jul 21 22:43:13 2019 +0200
|
2019-03-27 10:33:00 +01:00
|
|
|
// which is the time of commit
|
2021-05-09 17:20:33 +02:00
|
|
|
// feaf4ba6bc635fec442f46ddd4512416ec43c2c2 (refs/heads/master)
|
|
|
|
assert.EqualValues(t, 1563741793, lct.Unix())
|
2019-03-27 10:33:00 +01:00
|
|
|
}
|
2019-06-26 20:15:26 +02:00
|
|
|
|
|
|
|
func TestRepoIsEmpty(t *testing.T) {
|
|
|
|
emptyRepo2Path := filepath.Join(testReposDir, "repo2_empty")
|
2022-03-29 21:13:41 +02:00
|
|
|
repo, err := openRepositoryWithDefaultContext(emptyRepo2Path)
|
2019-06-26 20:15:26 +02:00
|
|
|
assert.NoError(t, err)
|
2019-11-13 08:01:19 +01:00
|
|
|
defer repo.Close()
|
2019-06-26 20:15:26 +02:00
|
|
|
isEmpty, err := repo.IsEmpty()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.True(t, isEmpty)
|
|
|
|
}
|