2016-04-23 03:58:08 +05:30
|
|
|
package models_test
|
|
|
|
|
|
|
|
import (
|
2016-07-09 10:52:28 +05:30
|
|
|
"testing"
|
2016-04-23 03:58:08 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
. "code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/markdown"
|
2016-11-04 17:27:27 +05:30
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
2016-04-23 03:58:08 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func TestRepo(t *testing.T) {
|
2016-07-09 10:52:28 +05:30
|
|
|
Convey("The metas map", t, func() {
|
2016-04-23 03:58:08 +05:30
|
|
|
var repo = new(Repository)
|
|
|
|
repo.Name = "testrepo"
|
|
|
|
repo.Owner = new(User)
|
|
|
|
repo.Owner.Name = "testuser"
|
|
|
|
repo.ExternalTrackerFormat = "https://someurl.com/{user}/{repo}/{issue}"
|
|
|
|
|
2016-07-09 10:52:28 +05:30
|
|
|
Convey("When no external tracker is configured", func() {
|
|
|
|
Convey("It should be nil", func() {
|
2016-04-23 03:58:08 +05:30
|
|
|
repo.EnableExternalTracker = false
|
|
|
|
So(repo.ComposeMetas(), ShouldEqual, map[string]string(nil))
|
|
|
|
})
|
2016-07-09 10:52:28 +05:30
|
|
|
Convey("It should be nil even if other settings are present", func() {
|
2016-04-23 03:58:08 +05:30
|
|
|
repo.EnableExternalTracker = false
|
|
|
|
repo.ExternalTrackerFormat = "http://someurl.com/{user}/{repo}/{issue}"
|
2016-11-25 13:32:10 +05:30
|
|
|
repo.ExternalTrackerStyle = markdown.IssueNameStyleNumeric
|
2016-04-23 03:58:08 +05:30
|
|
|
So(repo.ComposeMetas(), ShouldEqual, map[string]string(nil))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-07-09 10:52:28 +05:30
|
|
|
Convey("When an external issue tracker is configured", func() {
|
2016-04-23 03:58:08 +05:30
|
|
|
repo.EnableExternalTracker = true
|
2016-07-09 10:52:28 +05:30
|
|
|
Convey("It should default to numeric issue style", func() {
|
2016-04-23 03:58:08 +05:30
|
|
|
metas := repo.ComposeMetas()
|
2016-11-25 13:32:10 +05:30
|
|
|
So(metas["style"], ShouldEqual, markdown.IssueNameStyleNumeric)
|
2016-04-23 03:58:08 +05:30
|
|
|
})
|
2016-07-09 10:52:28 +05:30
|
|
|
Convey("It should pass through numeric issue style setting", func() {
|
2016-11-25 13:32:10 +05:30
|
|
|
repo.ExternalTrackerStyle = markdown.IssueNameStyleNumeric
|
2016-04-23 03:58:08 +05:30
|
|
|
metas := repo.ComposeMetas()
|
2016-11-25 13:32:10 +05:30
|
|
|
So(metas["style"], ShouldEqual, markdown.IssueNameStyleNumeric)
|
2016-04-23 03:58:08 +05:30
|
|
|
})
|
2016-07-09 10:52:28 +05:30
|
|
|
Convey("It should pass through alphanumeric issue style setting", func() {
|
2016-11-25 13:32:10 +05:30
|
|
|
repo.ExternalTrackerStyle = markdown.IssueNameStyleAlphanumeric
|
2016-04-23 03:58:08 +05:30
|
|
|
metas := repo.ComposeMetas()
|
2016-11-25 13:32:10 +05:30
|
|
|
So(metas["style"], ShouldEqual, markdown.IssueNameStyleAlphanumeric)
|
2016-04-23 03:58:08 +05:30
|
|
|
})
|
2016-07-09 10:52:28 +05:30
|
|
|
Convey("It should contain the user name", func() {
|
2016-04-23 03:58:08 +05:30
|
|
|
metas := repo.ComposeMetas()
|
|
|
|
So(metas["user"], ShouldEqual, "testuser")
|
|
|
|
})
|
2016-07-09 10:52:28 +05:30
|
|
|
Convey("It should contain the repo name", func() {
|
2016-04-23 03:58:08 +05:30
|
|
|
metas := repo.ComposeMetas()
|
|
|
|
So(metas["repo"], ShouldEqual, "testrepo")
|
|
|
|
})
|
2016-07-09 10:52:28 +05:30
|
|
|
Convey("It should contain the URL format", func() {
|
2016-04-23 03:58:08 +05:30
|
|
|
metas := repo.ComposeMetas()
|
|
|
|
So(metas["format"], ShouldEqual, "https://someurl.com/{user}/{repo}/{issue}")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|