2017-04-19 03:02:20 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-04-19 03:02:20 +00:00
|
|
|
|
|
|
|
package validation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
"gitea.com/go-chi/binding"
|
2017-04-19 03:02:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var gitRefNameValidationTestCases = []validationTestCase{
|
|
|
|
{
|
2021-07-08 11:38:13 +00:00
|
|
|
description: "Reference name contains only characters",
|
2017-04-19 03:02:20 +00:00
|
|
|
data: TestForm{
|
|
|
|
BranchName: "test",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Reference name contains single slash",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "feature/test",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{},
|
|
|
|
},
|
2019-03-26 19:59:48 +00:00
|
|
|
{
|
|
|
|
description: "Reference name has allowed special characters",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "debian/1%1.6.0-2",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{},
|
|
|
|
},
|
2017-04-19 03:02:20 +00:00
|
|
|
{
|
|
|
|
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",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-03-26 19:59:48 +00:00
|
|
|
{
|
|
|
|
description: "Reference name is single @",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "@",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{
|
|
|
|
binding.Error{
|
|
|
|
FieldNames: []string{"BranchName"},
|
|
|
|
Classification: ErrGitRefName,
|
|
|
|
Message: "GitRefName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Reference name has @{",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "branch@{",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{
|
|
|
|
binding.Error{
|
|
|
|
FieldNames: []string{"BranchName"},
|
|
|
|
Classification: ErrGitRefName,
|
|
|
|
Message: "GitRefName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Reference name has unallowed special character ~",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "~debian/1%1.6.0-2",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{
|
|
|
|
binding.Error{
|
|
|
|
FieldNames: []string{"BranchName"},
|
|
|
|
Classification: ErrGitRefName,
|
|
|
|
Message: "GitRefName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Reference name has unallowed special character *",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "*debian/1%1.6.0-2",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{
|
|
|
|
binding.Error{
|
|
|
|
FieldNames: []string{"BranchName"},
|
|
|
|
Classification: ErrGitRefName,
|
|
|
|
Message: "GitRefName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Reference name has unallowed special character ?",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "?debian/1%1.6.0-2",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{
|
|
|
|
binding.Error{
|
|
|
|
FieldNames: []string{"BranchName"},
|
|
|
|
Classification: ErrGitRefName,
|
|
|
|
Message: "GitRefName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Reference name has unallowed special character ^",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "^debian/1%1.6.0-2",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{
|
|
|
|
binding.Error{
|
|
|
|
FieldNames: []string{"BranchName"},
|
|
|
|
Classification: ErrGitRefName,
|
|
|
|
Message: "GitRefName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Reference name has unallowed special character :",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "debian:jessie",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{
|
|
|
|
binding.Error{
|
|
|
|
FieldNames: []string{"BranchName"},
|
|
|
|
Classification: ErrGitRefName,
|
|
|
|
Message: "GitRefName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Reference name has unallowed special character (whitespace)",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "debian jessie",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{
|
|
|
|
binding.Error{
|
|
|
|
FieldNames: []string{"BranchName"},
|
|
|
|
Classification: ErrGitRefName,
|
|
|
|
Message: "GitRefName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "Reference name has unallowed special character [",
|
|
|
|
data: TestForm{
|
|
|
|
BranchName: "debian[jessie",
|
|
|
|
},
|
|
|
|
expectedErrors: binding.Errors{
|
|
|
|
binding.Error{
|
|
|
|
FieldNames: []string{"BranchName"},
|
|
|
|
Classification: ErrGitRefName,
|
|
|
|
Message: "GitRefName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2017-04-19 03:02:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func Test_GitRefNameValidation(t *testing.T) {
|
|
|
|
AddBindingRules()
|
|
|
|
|
|
|
|
for _, testCase := range gitRefNameValidationTestCases {
|
|
|
|
t.Run(testCase.description, func(t *testing.T) {
|
|
|
|
performValidationTest(t, testCase)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|