2023-02-20 05:20:30 +00:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package hash
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2024-07-30 19:41:10 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2023-02-20 05:20:30 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestDummyHasher(t *testing.T) {
|
|
|
|
dummy := &PasswordHashAlgorithm{
|
|
|
|
PasswordSaltHasher: NewDummyHasher(""),
|
|
|
|
Specification: "dummy",
|
|
|
|
}
|
|
|
|
|
|
|
|
password, salt := "password", "ZogKvWdyEx"
|
|
|
|
|
|
|
|
hash, err := dummy.Hash(password, salt)
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2023-02-20 05:20:30 +00:00
|
|
|
assert.Equal(t, hash, salt+":"+password)
|
|
|
|
|
|
|
|
assert.True(t, dummy.VerifyPassword(password, hash, salt))
|
|
|
|
}
|