mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-04-18 20:40:23 +00:00
- Go has a suite of small linters that helps with modernizing Go code by using newer functions and catching small mistakes, https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/modernize. - Enable this linter in golangci-lint. - There's also [`go fix`](https://go.dev/blog/gofix), which is not yet released as a linter in golangci-lint: https://github.com/golangci/golangci-lint/pull/6385 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/11936 Reviewed-by: Mathieu Fenniak <mfenniak@noreply.codeberg.org> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
43 lines
1.2 KiB
Go
43 lines
1.2 KiB
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package git
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestSubTree_Issue29101(t *testing.T) {
|
|
repo, err := openRepositoryWithDefaultContext(filepath.Join(testReposDir, "repo1_bare"))
|
|
require.NoError(t, err)
|
|
defer repo.Close()
|
|
|
|
commit, err := repo.GetCommit("ce064814f4a0d337b333e646ece456cd39fab612")
|
|
require.NoError(t, err)
|
|
|
|
// old code could produce a different error if called multiple times
|
|
for range 10 {
|
|
_, err = commit.SubTree("file1.txt")
|
|
require.Error(t, err)
|
|
assert.True(t, IsErrNotExist(err))
|
|
}
|
|
}
|
|
|
|
func Test_GetTreePathLatestCommit(t *testing.T) {
|
|
repo, err := openRepositoryWithDefaultContext(filepath.Join(testReposDir, "repo6_blame"))
|
|
require.NoError(t, err)
|
|
defer repo.Close()
|
|
|
|
commitID, err := repo.GetBranchCommitID("master")
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "544d8f7a3b15927cddf2299b4b562d6ebd71b6a7", commitID)
|
|
|
|
commit, err := repo.GetTreePathLatestCommit("master", "blame.txt")
|
|
require.NoError(t, err)
|
|
assert.NotNil(t, commit)
|
|
assert.Equal(t, "45fb6cbc12f970b04eacd5cd4165edd11c8d7376", commit.ID.String())
|
|
}
|