Skip to content

Unit tests for models/wiki #777

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions models/setup_for_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import (
"os"
"testing"

"code.gitea.io/gitea/modules/setting"

"github.com/go-xorm/core"
"github.com/go-xorm/xorm"
_ "github.com/mattn/go-sqlite3" // for the test engine
Expand All @@ -23,6 +25,14 @@ func TestMain(m *testing.M) {
fmt.Printf("Error creating test engine: %v\n", err)
os.Exit(1)
}

setting.AppURL = "https://try.gitea.io/"
setting.RunUser = "runuser"
setting.SSH.Port = 3000
setting.SSH.Domain = "try.gitea.io"
setting.RepoRootPath = "/repos"
setting.AppDataPath = "/appdata"

os.Exit(m.Run())
}

Expand Down
2 changes: 1 addition & 1 deletion models/wiki.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func ToUncycloPageName(urlString string) string {
}

// UncycloCloneLink returns clone URLs of repository wiki.
func (repo *Repository) UncycloCloneLink() (cl *CloneLink) {
func (repo *Repository) UncycloCloneLink() *CloneLink {
return repo.cloneLink(true)
}

Expand Down
57 changes: 57 additions & 0 deletions models/wiki_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
// 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 models

import (
"testing"

"github.com/stretchr/testify/assert"
)

func TestToUncycloPageURL(t *testing.T) {
assert.Equal(t, "wiki-name", ToUncycloPageURL("wiki-name"))
assert.Equal(t, "wiki-name-with-many-spaces", ToUncycloPageURL("wiki name with many spaces"))
}

func TestToUncycloPageName(t *testing.T) {
assert.Equal(t, "wiki name", ToUncycloPageName("wiki name"))
assert.Equal(t, "wiki name", ToUncycloPageName("wiki-name"))
assert.Equal(t, "wiki name", ToUncycloPageName("wiki\tname"))
assert.Equal(t, "wiki name", ToUncycloPageName("./.././wiki/name"))
}

func TestRepository_UncycloCloneLink(t *testing.T) {
assert.NoError(t, PrepareTestDatabase())

repo := AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
cloneLink := repo.UncycloCloneLink()
assert.Equal(t, "ssh://[email protected]:3000/user2/repo1.wiki.git", cloneLink.SSH)
assert.Equal(t, "https://try.gitea.io/user2/repo1.wiki.git", cloneLink.HTTPS)
}

func TestUncycloPath(t *testing.T) {
assert.NoError(t, PrepareTestDatabase())
assert.Equal(t, "/repos/user2/repo1.wiki.git", UncycloPath("user2", "repo1"))
}

func TestRepository_UncycloPath(t *testing.T) {
assert.NoError(t, PrepareTestDatabase())
repo := AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
assert.Equal(t, "/repos/user2/repo1.wiki.git", repo.UncycloPath())
}

// TODO TestRepository_HasUncyclo

// TODO TestRepository_InitUncyclo

func TestRepository_LocalUncycloPath(t *testing.T) {
assert.NoError(t, PrepareTestDatabase())
repo := AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
assert.Equal(t, "/appdata/tmp/local-wiki/1", repo.LocalUncycloPath())
}

// TODO TestRepository_UpdateLocalUncyclo

// TODO ... (all remaining untested functions)