2018-04-11 10:51:44 +08:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-04-11 10:51:44 +08:00
|
|
|
|
2022-06-06 16:01:49 +08:00
|
|
|
package repo_test
|
2018-04-11 10:51:44 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-09-19 19:49:59 +08:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-06 16:01:49 +08:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 22:36:47 +08:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-17 20:34:35 +08:00
|
|
|
|
2018-04-11 10:51:44 +08:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAddTopic(t *testing.T) {
|
2019-09-03 23:46:24 +08:00
|
|
|
totalNrOfTopics := 6
|
|
|
|
repo1NrOfTopics := 3
|
|
|
|
|
2021-11-12 22:36:47 +08:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2018-04-11 10:51:44 +08:00
|
|
|
|
2023-09-16 22:39:12 +08:00
|
|
|
topics, _, err := repo_model.FindTopics(db.DefaultContext, &repo_model.FindTopicOptions{})
|
2018-04-11 10:51:44 +08:00
|
|
|
assert.NoError(t, err)
|
2021-06-07 13:27:09 +08:00
|
|
|
assert.Len(t, topics, totalNrOfTopics)
|
2018-04-11 10:51:44 +08:00
|
|
|
|
2023-09-16 22:39:12 +08:00
|
|
|
topics, total, err := repo_model.FindTopics(db.DefaultContext, &repo_model.FindTopicOptions{
|
2021-09-24 19:32:56 +08:00
|
|
|
ListOptions: db.ListOptions{Page: 1, PageSize: 2},
|
2018-04-11 10:51:44 +08:00
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 13:27:09 +08:00
|
|
|
assert.Len(t, topics, 2)
|
2021-08-12 20:43:08 +08:00
|
|
|
assert.EqualValues(t, 6, total)
|
2018-04-11 10:51:44 +08:00
|
|
|
|
2023-09-16 22:39:12 +08:00
|
|
|
topics, _, err = repo_model.FindTopics(db.DefaultContext, &repo_model.FindTopicOptions{
|
2018-04-11 10:51:44 +08:00
|
|
|
RepoID: 1,
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 13:27:09 +08:00
|
|
|
assert.Len(t, topics, repo1NrOfTopics)
|
2018-04-11 10:51:44 +08:00
|
|
|
|
2023-09-16 22:39:12 +08:00
|
|
|
assert.NoError(t, repo_model.SaveTopics(db.DefaultContext, 2, "golang"))
|
2021-11-18 09:33:06 +08:00
|
|
|
repo2NrOfTopics := 1
|
2023-09-16 22:39:12 +08:00
|
|
|
topics, _, err = repo_model.FindTopics(db.DefaultContext, &repo_model.FindTopicOptions{})
|
2018-04-11 10:51:44 +08:00
|
|
|
assert.NoError(t, err)
|
2021-06-07 13:27:09 +08:00
|
|
|
assert.Len(t, topics, totalNrOfTopics)
|
2018-04-11 10:51:44 +08:00
|
|
|
|
2023-09-16 22:39:12 +08:00
|
|
|
topics, _, err = repo_model.FindTopics(db.DefaultContext, &repo_model.FindTopicOptions{
|
2018-04-11 10:51:44 +08:00
|
|
|
RepoID: 2,
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 13:27:09 +08:00
|
|
|
assert.Len(t, topics, repo2NrOfTopics)
|
2018-04-11 10:51:44 +08:00
|
|
|
|
2023-09-16 22:39:12 +08:00
|
|
|
assert.NoError(t, repo_model.SaveTopics(db.DefaultContext, 2, "golang", "gitea"))
|
2019-09-03 23:46:24 +08:00
|
|
|
repo2NrOfTopics = 2
|
|
|
|
totalNrOfTopics++
|
2023-09-16 22:39:12 +08:00
|
|
|
topic, err := repo_model.GetTopicByName(db.DefaultContext, "gitea")
|
2018-04-11 10:51:44 +08:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, 1, topic.RepoCount)
|
|
|
|
|
2023-09-16 22:39:12 +08:00
|
|
|
topics, _, err = repo_model.FindTopics(db.DefaultContext, &repo_model.FindTopicOptions{})
|
2018-04-11 10:51:44 +08:00
|
|
|
assert.NoError(t, err)
|
2021-06-07 13:27:09 +08:00
|
|
|
assert.Len(t, topics, totalNrOfTopics)
|
2018-04-11 10:51:44 +08:00
|
|
|
|
2023-09-16 22:39:12 +08:00
|
|
|
topics, _, err = repo_model.FindTopics(db.DefaultContext, &repo_model.FindTopicOptions{
|
2018-04-11 10:51:44 +08:00
|
|
|
RepoID: 2,
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 13:27:09 +08:00
|
|
|
assert.Len(t, topics, repo2NrOfTopics)
|
2018-04-11 10:51:44 +08:00
|
|
|
}
|
2018-06-21 17:09:46 +08:00
|
|
|
|
|
|
|
func TestTopicValidator(t *testing.T) {
|
2022-06-06 16:01:49 +08:00
|
|
|
assert.True(t, repo_model.ValidateTopic("12345"))
|
|
|
|
assert.True(t, repo_model.ValidateTopic("2-test"))
|
2023-08-03 17:18:06 +08:00
|
|
|
assert.True(t, repo_model.ValidateTopic("foo.bar"))
|
2022-06-06 16:01:49 +08:00
|
|
|
assert.True(t, repo_model.ValidateTopic("test-3"))
|
|
|
|
assert.True(t, repo_model.ValidateTopic("first"))
|
|
|
|
assert.True(t, repo_model.ValidateTopic("second-test-topic"))
|
|
|
|
assert.True(t, repo_model.ValidateTopic("third-project-topic-with-max-length"))
|
|
|
|
|
|
|
|
assert.False(t, repo_model.ValidateTopic("$fourth-test,topic"))
|
|
|
|
assert.False(t, repo_model.ValidateTopic("-fifth-test-topic"))
|
|
|
|
assert.False(t, repo_model.ValidateTopic("sixth-go-project-topic-with-excess-length"))
|
2023-08-03 17:18:06 +08:00
|
|
|
assert.False(t, repo_model.ValidateTopic(".foo"))
|
2018-06-21 17:09:46 +08:00
|
|
|
}
|