mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 13:01:15 +00:00
5612cf32e5
Remove "EncodeSha1", it shouldn't be used as a general purpose hasher (just like we have removed "EncodeMD5" in #28622) Rewrite the "time-limited code" related code and write better tests, the old code doesn't seem quite right. (cherry picked from commit fb1ad920b769799aa1287441289d15477d9878c5) Conflicts: modules/git/utils_test.go trivial context conflict because sha256 testing in Forgejo has diverged
27 lines
606 B
Go
27 lines
606 B
Go
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package git
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// This file contains utility functions that are used across multiple tests,
|
|
// but not in production code.
|
|
|
|
func skipIfSHA256NotSupported(t *testing.T) {
|
|
if isGogit || CheckGitVersionAtLeast("2.42") != nil {
|
|
t.Skip("skipping because installed Git version doesn't support SHA256")
|
|
}
|
|
}
|
|
|
|
func TestHashFilePathForWebUI(t *testing.T) {
|
|
assert.Equal(t,
|
|
"8843d7f92416211de9ebb963ff4ce28125932878",
|
|
HashFilePathForWebUI("foobar"),
|
|
)
|
|
}
|