2023-09-08 21:09:23 +00:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2023-09-25 13:17:37 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2023-09-08 21:09:23 +00:00
|
|
|
"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},
|
|
|
|
}
|
|
|
|
|
2023-09-25 13:17:37 +00:00
|
|
|
err := InsertReleases(db.DefaultContext, r)
|
2023-09-08 21:09:23 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|