2018-04-11 08:21:44 +05:30
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2021-12-12 21:18:20 +05:30
|
|
|
package repo
|
2018-04-11 08:21:44 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-12 20:06:47 +05:30
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-17 18:04:35 +05:30
|
|
|
|
2018-04-11 08:21:44 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAddTopic(t *testing.T) {
|
2019-09-03 21:16:24 +05:30
|
|
|
totalNrOfTopics := 6
|
|
|
|
repo1NrOfTopics := 3
|
|
|
|
|
2021-11-12 20:06:47 +05:30
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2018-04-11 08:21:44 +05:30
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
topics, _, err := FindTopics(&FindTopicOptions{})
|
2018-04-11 08:21:44 +05:30
|
|
|
assert.NoError(t, err)
|
2021-06-07 10:57:09 +05:30
|
|
|
assert.Len(t, topics, totalNrOfTopics)
|
2018-04-11 08:21:44 +05:30
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
topics, total, err := FindTopics(&FindTopicOptions{
|
2021-09-24 17:02:56 +05:30
|
|
|
ListOptions: db.ListOptions{Page: 1, PageSize: 2},
|
2018-04-11 08:21:44 +05:30
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 10:57:09 +05:30
|
|
|
assert.Len(t, topics, 2)
|
2021-08-12 18:13:08 +05:30
|
|
|
assert.EqualValues(t, 6, total)
|
2018-04-11 08:21:44 +05:30
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
topics, _, err = FindTopics(&FindTopicOptions{
|
2018-04-11 08:21:44 +05:30
|
|
|
RepoID: 1,
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 10:57:09 +05:30
|
|
|
assert.Len(t, topics, repo1NrOfTopics)
|
2018-04-11 08:21:44 +05:30
|
|
|
|
|
|
|
assert.NoError(t, SaveTopics(2, "golang"))
|
2021-11-18 07:03:06 +05:30
|
|
|
repo2NrOfTopics := 1
|
2021-08-12 18:13:08 +05:30
|
|
|
topics, _, err = FindTopics(&FindTopicOptions{})
|
2018-04-11 08:21:44 +05:30
|
|
|
assert.NoError(t, err)
|
2021-06-07 10:57:09 +05:30
|
|
|
assert.Len(t, topics, totalNrOfTopics)
|
2018-04-11 08:21:44 +05:30
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
topics, _, err = FindTopics(&FindTopicOptions{
|
2018-04-11 08:21:44 +05:30
|
|
|
RepoID: 2,
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 10:57:09 +05:30
|
|
|
assert.Len(t, topics, repo2NrOfTopics)
|
2018-04-11 08:21:44 +05:30
|
|
|
|
|
|
|
assert.NoError(t, SaveTopics(2, "golang", "gitea"))
|
2019-09-03 21:16:24 +05:30
|
|
|
repo2NrOfTopics = 2
|
|
|
|
totalNrOfTopics++
|
2018-04-11 08:21:44 +05:30
|
|
|
topic, err := GetTopicByName("gitea")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, 1, topic.RepoCount)
|
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
topics, _, err = FindTopics(&FindTopicOptions{})
|
2018-04-11 08:21:44 +05:30
|
|
|
assert.NoError(t, err)
|
2021-06-07 10:57:09 +05:30
|
|
|
assert.Len(t, topics, totalNrOfTopics)
|
2018-04-11 08:21:44 +05:30
|
|
|
|
2021-08-12 18:13:08 +05:30
|
|
|
topics, _, err = FindTopics(&FindTopicOptions{
|
2018-04-11 08:21:44 +05:30
|
|
|
RepoID: 2,
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 10:57:09 +05:30
|
|
|
assert.Len(t, topics, repo2NrOfTopics)
|
2018-04-11 08:21:44 +05:30
|
|
|
}
|
2018-06-21 14:39:46 +05:30
|
|
|
|
|
|
|
func TestTopicValidator(t *testing.T) {
|
|
|
|
assert.True(t, ValidateTopic("12345"))
|
|
|
|
assert.True(t, ValidateTopic("2-test"))
|
|
|
|
assert.True(t, ValidateTopic("test-3"))
|
|
|
|
assert.True(t, ValidateTopic("first"))
|
|
|
|
assert.True(t, ValidateTopic("second-test-topic"))
|
|
|
|
assert.True(t, ValidateTopic("third-project-topic-with-max-length"))
|
|
|
|
|
|
|
|
assert.False(t, ValidateTopic("$fourth-test,topic"))
|
|
|
|
assert.False(t, ValidateTopic("-fifth-test-topic"))
|
|
|
|
assert.False(t, ValidateTopic("sixth-go-project-topic-with-excess-length"))
|
|
|
|
}
|