mirror of
https://github.com/go-gitea/gitea.git
synced 2026-09-10 19:17:58 +02:00
Migrate the deprecated gofumpt `extra-rules` to `extra.group-params`, as the alias now also enables the new `clothe-returns` and `balance-calls` rules. Disable SA4023, which hangs on go 1.27, see https://github.com/golangci/golangci-lint/issues/6732. Apply the resulting modernize fixes, mostly flattening embedded struct literals and switching errors.As to errors.AsType. Assisted-by: Claude:Opus 5
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package convert
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
repo_model "gitea.dev/models/repo"
|
|
"gitea.dev/models/unittest"
|
|
"gitea.dev/modules/git"
|
|
api "gitea.dev/modules/structs"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestToCommitMeta(t *testing.T) {
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
headRepo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
|
sha1 := git.Sha1ObjectFormat
|
|
signature := &git.Signature{Name: "Test Signature", Email: "test@email.com", When: time.Unix(0, 0)}
|
|
tag := &git.Tag{
|
|
Name: "Test Tag",
|
|
ID: sha1.EmptyObjectID(),
|
|
Object: sha1.EmptyObjectID(),
|
|
Type: "Test Type",
|
|
Tagger: signature,
|
|
MessageRaw: "Test Message",
|
|
}
|
|
|
|
commitMeta := ToCommitMeta(headRepo, tag)
|
|
|
|
assert.NotNil(t, commitMeta)
|
|
assert.Equal(t, &api.CommitMeta{
|
|
SHA: sha1.EmptyObjectID().String(),
|
|
URL: headRepo.APIURL() + "/git/commits/" + sha1.EmptyObjectID().String(),
|
|
Created: time.Unix(0, 0),
|
|
}, commitMeta)
|
|
}
|