mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
89 lines
2.2 KiB
Go
89 lines
2.2 KiB
Go
package repository
|
|
|
|
import (
|
|
"path"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestNewGoGitRepo(t *testing.T) {
|
|
// Plain
|
|
plainRepo := CreateGoGitTestRepo(t, false)
|
|
plainRoot := goGitRepoDir(t, plainRepo)
|
|
require.NoError(t, plainRepo.Close())
|
|
plainGitDir := filepath.Join(plainRoot, ".git")
|
|
|
|
// Bare
|
|
bareRepo := CreateGoGitTestRepo(t, true)
|
|
bareRoot := goGitRepoDir(t, bareRepo)
|
|
require.NoError(t, bareRepo.Close())
|
|
bareGitDir := bareRoot
|
|
|
|
tests := []struct {
|
|
inPath string
|
|
outPath string
|
|
err bool
|
|
}{
|
|
// errors
|
|
{"/", "", true},
|
|
// parent dir of a repo
|
|
{filepath.Dir(plainRoot), "", true},
|
|
|
|
// Plain repo
|
|
{plainRoot, plainGitDir, false},
|
|
{plainGitDir, plainGitDir, false},
|
|
{path.Join(plainGitDir, "objects"), plainGitDir, false},
|
|
|
|
// Bare repo
|
|
{bareRoot, bareGitDir, false},
|
|
{bareGitDir, bareGitDir, false},
|
|
{path.Join(bareGitDir, "objects"), bareGitDir, false},
|
|
}
|
|
|
|
for i, tc := range tests {
|
|
r, err := OpenGoGitRepo(tc.inPath, namespace, nil)
|
|
|
|
if tc.err {
|
|
require.Error(t, err, i)
|
|
} else {
|
|
require.NoError(t, err, i)
|
|
assert.Equal(t, filepath.ToSlash(tc.outPath), filepath.ToSlash(r.path), i)
|
|
require.NoError(t, r.Close())
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestGoGitRepo(t *testing.T) {
|
|
RepoTest(t, CreateGoGitTestRepo)
|
|
}
|
|
|
|
func TestGoGitRepo_Indexes(t *testing.T) {
|
|
repo := CreateGoGitTestRepo(t, false)
|
|
plainRoot := goGitRepoDir(t, repo)
|
|
|
|
// Can create indices
|
|
indexA, err := repo.GetBleveIndex("a")
|
|
require.NoError(t, err)
|
|
require.NotZero(t, indexA)
|
|
require.FileExists(t, filepath.Join(plainRoot, ".git", namespace, "indexes", "a", "index_meta.json"))
|
|
require.FileExists(t, filepath.Join(plainRoot, ".git", namespace, "indexes", "a", "store"))
|
|
|
|
indexB, err := repo.GetBleveIndex("b")
|
|
require.NoError(t, err)
|
|
require.NotZero(t, indexB)
|
|
require.DirExists(t, filepath.Join(plainRoot, ".git", namespace, "indexes", "b"))
|
|
|
|
// Can get an existing index
|
|
indexA, err = repo.GetBleveIndex("a")
|
|
require.NoError(t, err)
|
|
require.NotZero(t, indexA)
|
|
|
|
// Can delete an index
|
|
err = repo.ClearBleveIndex("a")
|
|
require.NoError(t, err)
|
|
require.NoDirExists(t, filepath.Join(plainRoot, ".git", namespace, "indexes", "a"))
|
|
}
|