mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	go-require lint is ignored for now Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4535 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: TheFox0x7 <thefox0x7@gmail.com> Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			570 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			570 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2023 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package hash
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| 	"github.com/stretchr/testify/require"
 | |
| )
 | |
| 
 | |
| func TestDummyHasher(t *testing.T) {
 | |
| 	dummy := &PasswordHashAlgorithm{
 | |
| 		PasswordSaltHasher: NewDummyHasher(""),
 | |
| 		Specification:      "dummy",
 | |
| 	}
 | |
| 
 | |
| 	password, salt := "password", "ZogKvWdyEx"
 | |
| 
 | |
| 	hash, err := dummy.Hash(password, salt)
 | |
| 	require.NoError(t, err)
 | |
| 	assert.Equal(t, hash, salt+":"+password)
 | |
| 
 | |
| 	assert.True(t, dummy.VerifyPassword(password, hash, salt))
 | |
| }
 |