[GITEA] add option for banning dots in usernames (squash) set in test

(cherry picked from commit b005b586c3)
(cherry picked from commit 0077b2661e)
(cherry picked from commit c4589d1fce)
This commit is contained in:
Earl Warren 2024-01-08 17:53:02 +01:00
parent 60aee6370f
commit a7f9ff982c
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -556,6 +556,11 @@ func Test_ValidateUser(t *testing.T) {
}
func Test_NormalizeUserFromEmail(t *testing.T) {
oldSetting := setting.Service.AllowDotsInUsernames
defer func() {
setting.Service.AllowDotsInUsernames = oldSetting
}()
setting.Service.AllowDotsInUsernames = true
testCases := []struct {
Input string
Expected string