mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-30 00:03:57 -04:00 
			
		
		
		
	* Added topics validation, fixed repo topics duplication (#4031) Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Added tests Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Fixed fmt Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Added comments to exported functions Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Deleted RemoveDuplicateTopics function Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Fixed messages Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Added migration Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * fmt migration file Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * fixed lint Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Added Copyright Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Added query solution for duplicates Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Fixed migration query Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Changed RegExp. Fixed migration Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * fmt migration file Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Fixed test for changed regexp Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Removed validation log messages Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Renamed migration file Signed-off-by: Alexey Terentyev <axifnx@gmail.com> * Renamed validate function Signed-off-by: Alexey Terentyev <axifnx@gmail.com>
		
			
				
	
	
		
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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.
 | |
| 
 | |
| package models
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestAddTopic(t *testing.T) {
 | |
| 	assert.NoError(t, PrepareTestDatabase())
 | |
| 
 | |
| 	topics, err := FindTopics(&FindTopicOptions{})
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 3, len(topics))
 | |
| 
 | |
| 	topics, err = FindTopics(&FindTopicOptions{
 | |
| 		Limit: 2,
 | |
| 	})
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 2, len(topics))
 | |
| 
 | |
| 	topics, err = FindTopics(&FindTopicOptions{
 | |
| 		RepoID: 1,
 | |
| 	})
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 3, len(topics))
 | |
| 
 | |
| 	assert.NoError(t, SaveTopics(2, "golang"))
 | |
| 	topics, err = FindTopics(&FindTopicOptions{})
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 3, len(topics))
 | |
| 
 | |
| 	topics, err = FindTopics(&FindTopicOptions{
 | |
| 		RepoID: 2,
 | |
| 	})
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 1, len(topics))
 | |
| 
 | |
| 	assert.NoError(t, SaveTopics(2, "golang", "gitea"))
 | |
| 	topic, err := GetTopicByName("gitea")
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 1, topic.RepoCount)
 | |
| 
 | |
| 	topics, err = FindTopics(&FindTopicOptions{})
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 4, len(topics))
 | |
| 
 | |
| 	topics, err = FindTopics(&FindTopicOptions{
 | |
| 		RepoID: 2,
 | |
| 	})
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 2, len(topics))
 | |
| }
 | |
| 
 | |
| 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"))
 | |
| }
 |