mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-23 15:43:29 +02:00
Migrations should never use model structs directly, because the model structs can be different in different releases. e.g. if one migration uses "User" model, it works in the early releases, then one day, when the User model changes, the migration breaks because it will use the new (incorrect) User model, it should only use the old User model. The same to "modules/structs". --------- Signed-off-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: delvh <dev.lh@web.de>
35 lines
919 B
Go
35 lines
919 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_25
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gitea.dev/modelmigration/migrationtest"
|
|
"gitea.dev/modules/setting"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func Test_ExtendCommentTreePathLength(t *testing.T) {
|
|
if setting.Database.Type.IsSQLite3() {
|
|
t.Skip("For SQLITE, varchar or char will always be represented as TEXT")
|
|
}
|
|
|
|
type Comment struct {
|
|
ID int64 `xorm:"pk autoincr"`
|
|
TreePath string `xorm:"VARCHAR(255)"`
|
|
}
|
|
|
|
x, deferrable := migrationtest.PrepareTestEnv(t, 0, new(Comment))
|
|
defer deferrable()
|
|
|
|
require.NoError(t, ExtendCommentTreePathLength(x))
|
|
table := migrationtest.LoadTableSchemasMap(t, x)["comment"]
|
|
column := table.GetColumn("tree_path")
|
|
assert.Contains(t, []string{"NVARCHAR", "VARCHAR"}, column.SQLType.Name)
|
|
assert.EqualValues(t, 4000, column.Length)
|
|
}
|