mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
408a484224
- Remove `ObjectFormatID` - Remove function `ObjectFormatFromID`. - Use `Sha1ObjectFormat` directly but not a pointer because it's an empty struct. - Store `ObjectFormatName` in `repository` struct
21 lines
572 B
Go
21 lines
572 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package git
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIsValidSHAPattern(t *testing.T) {
|
|
h := Sha1ObjectFormat
|
|
assert.True(t, h.IsValid("fee1"))
|
|
assert.True(t, h.IsValid("abc000"))
|
|
assert.True(t, h.IsValid("9023902390239023902390239023902390239023"))
|
|
assert.False(t, h.IsValid("90239023902390239023902390239023902390239023"))
|
|
assert.False(t, h.IsValid("abc"))
|
|
assert.False(t, h.IsValid("123g"))
|
|
assert.False(t, h.IsValid("some random text"))
|
|
}
|