1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
// Copyright The gittuf Authors
// SPDX-License-Identifier: Apache-2.0
package gitinterface
import (
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestRepository(t *testing.T) {
t.Run("repository.isBare", func(t *testing.T) {
t.Run("bare=true", func(t *testing.T) {
tmpDir := t.TempDir()
repo := CreateTestGitRepository(t, tmpDir, true)
assert.True(t, repo.IsBare())
})
t.Run("bare=false", func(t *testing.T) {
tmpDir := t.TempDir()
repo := CreateTestGitRepository(t, tmpDir, false)
assert.False(t, repo.IsBare())
})
})
t.Run("with specified path, not bare", func(t *testing.T) {
tmpDir := t.TempDir()
_ = CreateTestGitRepository(t, tmpDir, false)
repo, err := LoadRepository(tmpDir)
assert.Nil(t, err)
expectedPath, err := filepath.EvalSymlinks(filepath.Join(tmpDir, ".git"))
require.Nil(t, err)
actualPath, err := filepath.EvalSymlinks(repo.GetGitDir())
require.Nil(t, err)
assert.Equal(t, expectedPath, actualPath)
})
t.Run("with specified path, is bare", func(t *testing.T) {
tmpDir := t.TempDir()
_ = CreateTestGitRepository(t, tmpDir, true)
repo, err := LoadRepository(tmpDir)
assert.Nil(t, err)
expectedPath, err := filepath.EvalSymlinks(tmpDir)
require.Nil(t, err)
actualPath, err := filepath.EvalSymlinks(repo.GetGitDir())
require.Nil(t, err)
assert.Equal(t, expectedPath, actualPath)
})
}
|