mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-25 16:08:46 +09:00
Clean up legacy copied&pasted code, introduce the unique "database connection" function. Move migration testing helper function PrepareTestEnv to a separate package. By the way, remove "shadow connection secrets" tricks: showing connection string on UI is useless --------- Co-authored-by: Nicolas <bircni@icloud.com>
35 lines
942 B
Go
35 lines
942 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_25
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/migrations/migrationtest"
|
|
"code.gitea.io/gitea/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)
|
|
}
|