 fa2a135f68
			
		
	
	
	fa2a135f68
	
	
	
		
			
			- Use mock helper functions, instead of home-brew solutions. - Disable cron jobs that are not important to be run during integration tests and might even interfere. - Avoid sleeping unnecessary, if there's some requirement then sleep or retry until that requirement is met. - Avoid trying to deliver webhooks that will always result in a failure. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7917 Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			111 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2018 The Gogs Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package forms
 | |
| 
 | |
| import (
 | |
| 	"strconv"
 | |
| 	"testing"
 | |
| 
 | |
| 	auth_model "forgejo.org/models/auth"
 | |
| 	"forgejo.org/modules/setting"
 | |
| 	"forgejo.org/modules/test"
 | |
| 
 | |
| 	"github.com/gobwas/glob"
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestRegisterForm_IsDomainAllowed_Empty(t *testing.T) {
 | |
| 	defer test.MockVariableValue(&setting.Service.EmailDomainAllowList, nil)()
 | |
| 
 | |
| 	form := RegisterForm{}
 | |
| 
 | |
| 	assert.True(t, form.IsEmailDomainAllowed())
 | |
| }
 | |
| 
 | |
| func TestRegisterForm_IsDomainAllowed_InvalidEmail(t *testing.T) {
 | |
| 	defer test.MockVariableValue(&setting.Service.EmailDomainAllowList, []glob.Glob{glob.MustCompile("gitea.io")})()
 | |
| 
 | |
| 	tt := []struct {
 | |
| 		email string
 | |
| 	}{
 | |
| 		{"invalid-email"},
 | |
| 		{"gitea.io"},
 | |
| 	}
 | |
| 
 | |
| 	for _, v := range tt {
 | |
| 		form := RegisterForm{Email: v.email}
 | |
| 
 | |
| 		assert.False(t, form.IsEmailDomainAllowed())
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestRegisterForm_IsDomainAllowed_AllowedEmail(t *testing.T) {
 | |
| 	defer test.MockVariableValue(&setting.Service.EmailDomainAllowList, []glob.Glob{glob.MustCompile("gitea.io"), glob.MustCompile("*.allow")})()
 | |
| 
 | |
| 	tt := []struct {
 | |
| 		email string
 | |
| 		valid bool
 | |
| 	}{
 | |
| 		{"security@gitea.io", true},
 | |
| 		{"security@gITea.io", true},
 | |
| 		{"invalid", false},
 | |
| 		{"seee@example.com", false},
 | |
| 
 | |
| 		{"user@my.allow", true},
 | |
| 		{"user@my.allow1", false},
 | |
| 	}
 | |
| 
 | |
| 	for _, v := range tt {
 | |
| 		form := RegisterForm{Email: v.email}
 | |
| 
 | |
| 		assert.Equal(t, v.valid, form.IsEmailDomainAllowed())
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestRegisterForm_IsDomainAllowed_BlockedEmail(t *testing.T) {
 | |
| 	defer test.MockVariableValue(&setting.Service.EmailDomainBlockList, []glob.Glob{glob.MustCompile("gitea.io"), glob.MustCompile("*.block")})()
 | |
| 
 | |
| 	tt := []struct {
 | |
| 		email string
 | |
| 		valid bool
 | |
| 	}{
 | |
| 		{"security@gitea.io", false},
 | |
| 		{"security@gitea.example", true},
 | |
| 		{"invalid", true},
 | |
| 
 | |
| 		{"user@my.block", false},
 | |
| 		{"user@my.block1", true},
 | |
| 	}
 | |
| 
 | |
| 	for _, v := range tt {
 | |
| 		form := RegisterForm{Email: v.email}
 | |
| 
 | |
| 		assert.Equal(t, v.valid, form.IsEmailDomainAllowed())
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestNewAccessTokenForm_GetScope(t *testing.T) {
 | |
| 	tests := []struct {
 | |
| 		form        NewAccessTokenForm
 | |
| 		scope       auth_model.AccessTokenScope
 | |
| 		expectedErr error
 | |
| 	}{
 | |
| 		{
 | |
| 			form:  NewAccessTokenForm{Name: "test", Scope: []string{"read:repository"}},
 | |
| 			scope: "read:repository",
 | |
| 		},
 | |
| 		{
 | |
| 			form:  NewAccessTokenForm{Name: "test", Scope: []string{"read:repository", "write:user"}},
 | |
| 			scope: "read:repository,write:user",
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	for i, test := range tests {
 | |
| 		t.Run(strconv.Itoa(i), func(t *testing.T) {
 | |
| 			scope, err := test.form.GetScope()
 | |
| 			assert.Equal(t, test.expectedErr, err)
 | |
| 			assert.Equal(t, test.scope, scope)
 | |
| 		})
 | |
| 	}
 | |
| }
 |