mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04:00
Better settings for unit tests (#795)
This commit is contained in:
parent
78535fb08e
commit
7765593018
@ -30,8 +30,8 @@ func TestMain(m *testing.M) {
|
||||
setting.RunUser = "runuser"
|
||||
setting.SSH.Port = 3000
|
||||
setting.SSH.Domain = "try.gitea.io"
|
||||
setting.RepoRootPath = "/repos"
|
||||
setting.AppDataPath = "/appdata"
|
||||
setting.RepoRootPath = "/tmp/repos"
|
||||
setting.AppDataPath = "/tmp/appdata"
|
||||
|
||||
os.Exit(m.Run())
|
||||
}
|
||||
|
@ -5,8 +5,11 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"code.gitea.io/gitea/modules/setting"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
@ -33,13 +36,15 @@ func TestRepository_WikiCloneLink(t *testing.T) {
|
||||
|
||||
func TestWikiPath(t *testing.T) {
|
||||
assert.NoError(t, PrepareTestDatabase())
|
||||
assert.Equal(t, "/repos/user2/repo1.wiki.git", WikiPath("user2", "repo1"))
|
||||
expected := filepath.Join(setting.RepoRootPath, "user2/repo1.wiki.git")
|
||||
assert.Equal(t, expected, WikiPath("user2", "repo1"))
|
||||
}
|
||||
|
||||
func TestRepository_WikiPath(t *testing.T) {
|
||||
assert.NoError(t, PrepareTestDatabase())
|
||||
repo := AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
|
||||
assert.Equal(t, "/repos/user2/repo1.wiki.git", repo.WikiPath())
|
||||
expected := filepath.Join(setting.RepoRootPath, "user2/repo1.wiki.git")
|
||||
assert.Equal(t, expected, repo.WikiPath())
|
||||
}
|
||||
|
||||
// TODO TestRepository_HasWiki
|
||||
@ -49,7 +54,8 @@ func TestRepository_WikiPath(t *testing.T) {
|
||||
func TestRepository_LocalWikiPath(t *testing.T) {
|
||||
assert.NoError(t, PrepareTestDatabase())
|
||||
repo := AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
|
||||
assert.Equal(t, "/appdata/tmp/local-wiki/1", repo.LocalWikiPath())
|
||||
expected := filepath.Join(setting.AppDataPath, "tmp/local-wiki/1")
|
||||
assert.Equal(t, expected, repo.LocalWikiPath())
|
||||
}
|
||||
|
||||
// TODO TestRepository_UpdateLocalWiki
|
||||
|
Loading…
Reference in New Issue
Block a user