mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 13:28:25 +00:00 
			
		
		
		
	Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			86 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2018 The Gogs Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package forms
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func TestRegisterForm_IsDomainAllowed_Empty(t *testing.T) {
 | 
						|
	_ = setting.Service
 | 
						|
 | 
						|
	setting.Service.EmailDomainWhitelist = []string{}
 | 
						|
 | 
						|
	form := RegisterForm{}
 | 
						|
 | 
						|
	assert.True(t, form.IsEmailDomainAllowed())
 | 
						|
}
 | 
						|
 | 
						|
func TestRegisterForm_IsDomainAllowed_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.IsEmailDomainAllowed())
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestRegisterForm_IsDomainAllowed_WhitelistedEmail(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.IsEmailDomainAllowed())
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestRegisterForm_IsDomainAllowed_BlocklistedEmail(t *testing.T) {
 | 
						|
	_ = setting.Service
 | 
						|
 | 
						|
	setting.Service.EmailDomainWhitelist = []string{}
 | 
						|
	setting.Service.EmailDomainBlocklist = []string{"gitea.io"}
 | 
						|
 | 
						|
	tt := []struct {
 | 
						|
		email string
 | 
						|
		valid bool
 | 
						|
	}{
 | 
						|
		{"security@gitea.io", false},
 | 
						|
		{"security@gitea.example", true},
 | 
						|
		{"hdudhdd", true},
 | 
						|
	}
 | 
						|
 | 
						|
	for _, v := range tt {
 | 
						|
		form := RegisterForm{Email: v.email}
 | 
						|
 | 
						|
		assert.Equal(t, v.valid, form.IsEmailDomainAllowed())
 | 
						|
	}
 | 
						|
}
 |