package hash_test import ( "testing" "git.badhouseplants.net/softplayer/softplayer-backend/internal/helpers/hash" "github.com/alecthomas/assert/v2" ) func TestHashValid(t *testing.T) { password := "qwertyu9" hpass, err := hash.HashPassword(password, 10) assert.NoError(t, err) assert.True(t, hash.CheckPasswordHash(password, hpass)) } func TestHashInvalid(t *testing.T) { password := "qwertyu9" invhash := "qwertyu9" assert.False(t, hash.CheckPasswordHash(password, invhash)) }