Better URL validation (#1507)
* Add correct git branch name validation * Change git refname validation error constant name * Implement URL validation based on GoLang url.Parse method * Backward compatibility with older Go compiler * Add git reference name validation unit tests * Remove unused variable in unit test * Implement URL validation based on GoLang url.Parse method * Backward compatibility with older Go compiler * Add url validation unit tests
This commit is contained in:
		
							parent
							
								
									941281ae12
								
							
						
					
					
						commit
						f42ec6120e
					
				
					 11 changed files with 432 additions and 9 deletions
				
			
		
							
								
								
									
										142
									
								
								modules/validation/refname_test.go
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										142
									
								
								modules/validation/refname_test.go
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,142 @@
 | 
			
		|||
// Copyright 2017 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 validation
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"testing"
 | 
			
		||||
 | 
			
		||||
	"github.com/go-macaron/binding"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var gitRefNameValidationTestCases = []validationTestCase{
 | 
			
		||||
	{
 | 
			
		||||
		description: "Referece contains only characters",
 | 
			
		||||
		data: TestForm{
 | 
			
		||||
			BranchName: "test",
 | 
			
		||||
		},
 | 
			
		||||
		expectedErrors: binding.Errors{},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		description: "Reference name contains single slash",
 | 
			
		||||
		data: TestForm{
 | 
			
		||||
			BranchName: "feature/test",
 | 
			
		||||
		},
 | 
			
		||||
		expectedErrors: binding.Errors{},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		description: "Reference name contains backslash",
 | 
			
		||||
		data: TestForm{
 | 
			
		||||
			BranchName: "feature\\test",
 | 
			
		||||
		},
 | 
			
		||||
		expectedErrors: binding.Errors{
 | 
			
		||||
			binding.Error{
 | 
			
		||||
				FieldNames:     []string{"BranchName"},
 | 
			
		||||
				Classification: ErrGitRefName,
 | 
			
		||||
				Message:        "GitRefName",
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		description: "Reference name starts with dot",
 | 
			
		||||
		data: TestForm{
 | 
			
		||||
			BranchName: ".test",
 | 
			
		||||
		},
 | 
			
		||||
		expectedErrors: binding.Errors{
 | 
			
		||||
			binding.Error{
 | 
			
		||||
				FieldNames:     []string{"BranchName"},
 | 
			
		||||
				Classification: ErrGitRefName,
 | 
			
		||||
				Message:        "GitRefName",
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		description: "Reference name ends with dot",
 | 
			
		||||
		data: TestForm{
 | 
			
		||||
			BranchName: "test.",
 | 
			
		||||
		},
 | 
			
		||||
		expectedErrors: binding.Errors{
 | 
			
		||||
			binding.Error{
 | 
			
		||||
				FieldNames:     []string{"BranchName"},
 | 
			
		||||
				Classification: ErrGitRefName,
 | 
			
		||||
				Message:        "GitRefName",
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		description: "Reference name starts with slash",
 | 
			
		||||
		data: TestForm{
 | 
			
		||||
			BranchName: "/test",
 | 
			
		||||
		},
 | 
			
		||||
		expectedErrors: binding.Errors{
 | 
			
		||||
			binding.Error{
 | 
			
		||||
				FieldNames:     []string{"BranchName"},
 | 
			
		||||
				Classification: ErrGitRefName,
 | 
			
		||||
				Message:        "GitRefName",
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		description: "Reference name ends with slash",
 | 
			
		||||
		data: TestForm{
 | 
			
		||||
			BranchName: "test/",
 | 
			
		||||
		},
 | 
			
		||||
		expectedErrors: binding.Errors{
 | 
			
		||||
			binding.Error{
 | 
			
		||||
				FieldNames:     []string{"BranchName"},
 | 
			
		||||
				Classification: ErrGitRefName,
 | 
			
		||||
				Message:        "GitRefName",
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		description: "Reference name ends with .lock",
 | 
			
		||||
		data: TestForm{
 | 
			
		||||
			BranchName: "test.lock",
 | 
			
		||||
		},
 | 
			
		||||
		expectedErrors: binding.Errors{
 | 
			
		||||
			binding.Error{
 | 
			
		||||
				FieldNames:     []string{"BranchName"},
 | 
			
		||||
				Classification: ErrGitRefName,
 | 
			
		||||
				Message:        "GitRefName",
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		description: "Reference name contains multiple consecutive dots",
 | 
			
		||||
		data: TestForm{
 | 
			
		||||
			BranchName: "te..st",
 | 
			
		||||
		},
 | 
			
		||||
		expectedErrors: binding.Errors{
 | 
			
		||||
			binding.Error{
 | 
			
		||||
				FieldNames:     []string{"BranchName"},
 | 
			
		||||
				Classification: ErrGitRefName,
 | 
			
		||||
				Message:        "GitRefName",
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		description: "Reference name contains multiple consecutive slashes",
 | 
			
		||||
		data: TestForm{
 | 
			
		||||
			BranchName: "te//st",
 | 
			
		||||
		},
 | 
			
		||||
		expectedErrors: binding.Errors{
 | 
			
		||||
			binding.Error{
 | 
			
		||||
				FieldNames:     []string{"BranchName"},
 | 
			
		||||
				Classification: ErrGitRefName,
 | 
			
		||||
				Message:        "GitRefName",
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func Test_GitRefNameValidation(t *testing.T) {
 | 
			
		||||
	AddBindingRules()
 | 
			
		||||
 | 
			
		||||
	for _, testCase := range gitRefNameValidationTestCases {
 | 
			
		||||
		t.Run(testCase.description, func(t *testing.T) {
 | 
			
		||||
			performValidationTest(t, testCase)
 | 
			
		||||
		})
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue