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