mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
964 B
39 lines
964 B
// Copyright 2023 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package repo |
|
|
|
import ( |
|
"testing" |
|
|
|
"code.gitea.io/gitea/models/unittest" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestMigrate_InsertReleases(t *testing.T) { |
|
assert.NoError(t, unittest.PrepareTestDatabase()) |
|
|
|
a := &Attachment{ |
|
UUID: "a0eebc91-9c0c-4ef7-bb6e-6bb9bd380a12", |
|
} |
|
r := &Release{ |
|
Attachments: []*Attachment{a}, |
|
} |
|
|
|
err := InsertReleases(t.Context(), r) |
|
assert.NoError(t, err) |
|
} |
|
|
|
func Test_FindTagsByCommitIDs(t *testing.T) { |
|
assert.NoError(t, unittest.PrepareTestDatabase()) |
|
|
|
sha1Rels, err := FindTagsByCommitIDs(t.Context(), 1, "65f1bf27bc3bf70f64657658635e66094edbcb4d") |
|
assert.NoError(t, err) |
|
assert.Len(t, sha1Rels, 1) |
|
rels := sha1Rels["65f1bf27bc3bf70f64657658635e66094edbcb4d"] |
|
assert.Len(t, rels, 3) |
|
assert.Equal(t, "v1.1", rels[0].TagName) |
|
assert.Equal(t, "delete-tag", rels[1].TagName) |
|
assert.Equal(t, "v1.0", rels[2].TagName) |
|
}
|
|
|