2020-10-05 06:07:54 +02:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-05 06:07:54 +02:00
|
|
|
|
|
|
|
package convert
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2021-12-10 02:27:50 +01:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 15:36:47 +01:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2020-10-05 06:07:54 +02: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 15:36:47 +01:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2022-08-16 04:22:25 +02:00
|
|
|
headRepo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
2023-12-17 12:56:08 +01:00
|
|
|
sha1 := git.Sha1ObjectFormat
|
2020-12-17 15:00:47 +01:00
|
|
|
signature := &git.Signature{Name: "Test Signature", Email: "test@email.com", When: time.Unix(0, 0)}
|
2020-10-05 06:07:54 +02:00
|
|
|
tag := &git.Tag{
|
|
|
|
Name: "Test Tag",
|
2023-12-17 12:56:08 +01:00
|
|
|
ID: sha1.EmptyObjectID(),
|
|
|
|
Object: sha1.EmptyObjectID(),
|
2020-10-05 06:07:54 +02: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 12:56:08 +01:00
|
|
|
SHA: sha1.EmptyObjectID().String(),
|
|
|
|
URL: util.URLJoin(headRepo.APIURL(), "git/commits", sha1.EmptyObjectID().String()),
|
2020-10-05 06:07:54 +02:00
|
|
|
Created: time.Unix(0, 0),
|
|
|
|
}, commitMeta)
|
|
|
|
}
|