2020-10-04 22:07:54 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-04 22:07:54 -06:00
|
|
|
|
|
|
|
package convert
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2021-12-09 18:27:50 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2020-10-04 22:07:54 -06:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestToCommitMeta(t *testing.T) {
|
2021-11-12 07:36:47 -07:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2022-08-15 20:22:25 -06:00
|
|
|
headRepo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
2023-12-17 04:56:08 -07:00
|
|
|
sha1 := git.Sha1ObjectFormat
|
2020-12-17 07:00:47 -07:00
|
|
|
signature := &git.Signature{Name: "Test Signature", Email: "test@email.com", When: time.Unix(0, 0)}
|
2020-10-04 22:07:54 -06:00
|
|
|
tag := &git.Tag{
|
|
|
|
Name: "Test Tag",
|
2023-12-17 04:56:08 -07:00
|
|
|
ID: sha1.EmptyObjectID(),
|
|
|
|
Object: sha1.EmptyObjectID(),
|
2020-10-04 22:07:54 -06:00
|
|
|
Type: "Test Type",
|
|
|
|
Tagger: signature,
|
|
|
|
Message: "Test Message",
|
|
|
|
}
|
|
|
|
|
|
|
|
commitMeta := ToCommitMeta(headRepo, tag)
|
|
|
|
|
|
|
|
assert.NotNil(t, commitMeta)
|
|
|
|
assert.EqualValues(t, &api.CommitMeta{
|
2023-12-17 04:56:08 -07:00
|
|
|
SHA: sha1.EmptyObjectID().String(),
|
|
|
|
URL: util.URLJoin(headRepo.APIURL(), "git/commits", sha1.EmptyObjectID().String()),
|
2020-10-04 22:07:54 -06:00
|
|
|
Created: time.Unix(0, 0),
|
|
|
|
}, commitMeta)
|
|
|
|
}
|