diff options
author | Lanre Adelowo <adelowomailbox@gmail.com> | 2018-11-15 02:00:04 +0100 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2018-11-14 20:00:04 -0500 |
commit | b97af15de67b04fd259bd70a4abbc873f12e9491 (patch) | |
tree | 9a88d821a0ec98edc6dba64804ca6d0692df91fe /modules/auth/user_form_test.go | |
parent | 4c1f1f96465e809161f7d634a07eb60b4511db35 (diff) | |
download | gitea-b97af15de67b04fd259bd70a4abbc873f12e9491.tar.gz gitea-b97af15de67b04fd259bd70a4abbc873f12e9491.zip |
Block registration based on email domain (#5157)
* implement email domain whitelist
Diffstat (limited to 'modules/auth/user_form_test.go')
-rw-r--r-- | modules/auth/user_form_test.go | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/modules/auth/user_form_test.go b/modules/auth/user_form_test.go new file mode 100644 index 0000000000..084174622e --- /dev/null +++ b/modules/auth/user_form_test.go @@ -0,0 +1,64 @@ +// Copyright 2018 The Gogs 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 auth + +import ( + "testing" + + "code.gitea.io/gitea/modules/setting" + + "github.com/stretchr/testify/assert" +) + +func TestRegisterForm_IsDomainWhiteList_Empty(t *testing.T) { + _ = setting.Service + + setting.Service.EmailDomainWhitelist = []string{} + + form := RegisterForm{} + + assert.True(t, form.IsEmailDomainWhitelisted()) +} + +func TestRegisterForm_IsDomainWhiteList_InvalidEmail(t *testing.T) { + _ = setting.Service + + setting.Service.EmailDomainWhitelist = []string{"gitea.io"} + + tt := []struct { + email string + }{ + {"securitygieqqq"}, + {"hdudhdd"}, + } + + for _, v := range tt { + form := RegisterForm{Email: v.email} + + assert.False(t, form.IsEmailDomainWhitelisted()) + } +} + +func TestRegisterForm_IsDomainWhiteList_ValidEmail(t *testing.T) { + _ = setting.Service + + setting.Service.EmailDomainWhitelist = []string{"gitea.io"} + + tt := []struct { + email string + valid bool + }{ + {"security@gitea.io", true}, + {"security@gITea.io", true}, + {"hdudhdd", false}, + {"seee@example.com", false}, + } + + for _, v := range tt { + form := RegisterForm{Email: v.email} + + assert.Equal(t, v.valid, form.IsEmailDomainWhitelisted()) + } +} |