2018-04-11 02:51:44 +00:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2022-06-06 08:01:49 +00:00
|
|
|
package repo_test
|
2018-04-11 02:51:44 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-09-19 11:49:59 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-06 08:01:49 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 14:36:47 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-17 12:34:35 +00:00
|
|
|
|
2018-04-11 02:51:44 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAddTopic(t *testing.T) {
|
2019-09-03 15:46:24 +00:00
|
|
|
totalNrOfTopics := 6
|
|
|
|
repo1NrOfTopics := 3
|
|
|
|
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2024-03-29 03:38:16 +00:00
|
|
|
topics, err := db.Find[repo_model.Topic](db.DefaultContext, &repo_model.FindTopicOptions{})
|
2018-04-11 02:51:44 +00:00
|
|
|
assert.NoError(t, err)
|
2021-06-07 05:27:09 +00:00
|
|
|
assert.Len(t, topics, totalNrOfTopics)
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2024-03-29 03:38:16 +00:00
|
|
|
topics, total, err := db.FindAndCount[repo_model.Topic](db.DefaultContext, &repo_model.FindTopicOptions{
|
2021-09-24 11:32:56 +00:00
|
|
|
ListOptions: db.ListOptions{Page: 1, PageSize: 2},
|
2018-04-11 02:51:44 +00:00
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 05:27:09 +00:00
|
|
|
assert.Len(t, topics, 2)
|
2021-08-12 12:43:08 +00:00
|
|
|
assert.EqualValues(t, 6, total)
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2024-03-29 03:38:16 +00:00
|
|
|
topics, err = db.Find[repo_model.Topic](db.DefaultContext, &repo_model.FindTopicOptions{
|
2018-04-11 02:51:44 +00:00
|
|
|
RepoID: 1,
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 05:27:09 +00:00
|
|
|
assert.Len(t, topics, repo1NrOfTopics)
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2023-09-16 14:39:12 +00:00
|
|
|
assert.NoError(t, repo_model.SaveTopics(db.DefaultContext, 2, "golang"))
|
2021-11-18 01:33:06 +00:00
|
|
|
repo2NrOfTopics := 1
|
2024-03-29 03:38:16 +00:00
|
|
|
topics, err = db.Find[repo_model.Topic](db.DefaultContext, &repo_model.FindTopicOptions{})
|
2018-04-11 02:51:44 +00:00
|
|
|
assert.NoError(t, err)
|
2021-06-07 05:27:09 +00:00
|
|
|
assert.Len(t, topics, totalNrOfTopics)
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2024-03-29 03:38:16 +00:00
|
|
|
topics, err = db.Find[repo_model.Topic](db.DefaultContext, &repo_model.FindTopicOptions{
|
2018-04-11 02:51:44 +00:00
|
|
|
RepoID: 2,
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 05:27:09 +00:00
|
|
|
assert.Len(t, topics, repo2NrOfTopics)
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2023-09-16 14:39:12 +00:00
|
|
|
assert.NoError(t, repo_model.SaveTopics(db.DefaultContext, 2, "golang", "gitea"))
|
2019-09-03 15:46:24 +00:00
|
|
|
repo2NrOfTopics = 2
|
|
|
|
totalNrOfTopics++
|
2023-09-16 14:39:12 +00:00
|
|
|
topic, err := repo_model.GetTopicByName(db.DefaultContext, "gitea")
|
2018-04-11 02:51:44 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, 1, topic.RepoCount)
|
|
|
|
|
2024-03-29 03:38:16 +00:00
|
|
|
topics, err = db.Find[repo_model.Topic](db.DefaultContext, &repo_model.FindTopicOptions{})
|
2018-04-11 02:51:44 +00:00
|
|
|
assert.NoError(t, err)
|
2021-06-07 05:27:09 +00:00
|
|
|
assert.Len(t, topics, totalNrOfTopics)
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2024-03-29 03:38:16 +00:00
|
|
|
topics, err = db.Find[repo_model.Topic](db.DefaultContext, &repo_model.FindTopicOptions{
|
2018-04-11 02:51:44 +00:00
|
|
|
RepoID: 2,
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
2021-06-07 05:27:09 +00:00
|
|
|
assert.Len(t, topics, repo2NrOfTopics)
|
2018-04-11 02:51:44 +00:00
|
|
|
}
|
2018-06-21 09:09:46 +00:00
|
|
|
|
|
|
|
func TestTopicValidator(t *testing.T) {
|
2022-06-06 08:01:49 +00:00
|
|
|
assert.True(t, repo_model.ValidateTopic("12345"))
|
|
|
|
assert.True(t, repo_model.ValidateTopic("2-test"))
|
2023-08-03 09:18:06 +00:00
|
|
|
assert.True(t, repo_model.ValidateTopic("foo.bar"))
|
2022-06-06 08:01:49 +00: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 09:18:06 +00:00
|
|
|
assert.False(t, repo_model.ValidateTopic(".foo"))
|
2018-06-21 09:09:46 +00:00
|
|
|
}
|