2021-06-14 04:22:55 +02:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-06-14 04:22:55 +02:00
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
package v1_15 //nolint
|
2021-06-14 04:22:55 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
"code.gitea.io/gitea/models/migrations/base"
|
|
|
|
|
2021-06-14 04:22:55 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
func Test_AddIssueResourceIndexTable(t *testing.T) {
|
2021-06-14 04:22:55 +02:00
|
|
|
// Create the models used in the migration
|
|
|
|
type Issue struct {
|
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
RepoID int64 `xorm:"UNIQUE(s)"`
|
|
|
|
Index int64 `xorm:"UNIQUE(s)"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare and load the testing database
|
2022-11-02 09:54:36 +01:00
|
|
|
x, deferable := base.PrepareTestEnv(t, 0, new(Issue))
|
2021-06-14 04:22:55 +02:00
|
|
|
if x == nil || t.Failed() {
|
|
|
|
defer deferable()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer deferable()
|
|
|
|
|
|
|
|
// Run the migration
|
2022-11-02 09:54:36 +01:00
|
|
|
if err := AddIssueResourceIndexTable(x); err != nil {
|
2021-06-14 04:22:55 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type ResourceIndex struct {
|
2021-08-25 10:42:51 +02:00
|
|
|
GroupID int64 `xorm:"pk"`
|
|
|
|
MaxIndex int64 `xorm:"index"`
|
2021-06-14 04:22:55 +02:00
|
|
|
}
|
|
|
|
|
2022-01-20 18:46:10 +01:00
|
|
|
start := 0
|
2021-06-14 04:22:55 +02:00
|
|
|
const batchSize = 1000
|
|
|
|
for {
|
2022-01-20 18:46:10 +01:00
|
|
|
indexes := make([]ResourceIndex, 0, batchSize)
|
2021-06-14 04:22:55 +02:00
|
|
|
err := x.Table("issue_index").Limit(batchSize, start).Find(&indexes)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
for _, idx := range indexes {
|
|
|
|
var maxIndex int
|
|
|
|
has, err := x.SQL("SELECT max(`index`) FROM issue WHERE repo_id = ?", idx.GroupID).Get(&maxIndex)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.True(t, has)
|
|
|
|
assert.EqualValues(t, maxIndex, idx.MaxIndex)
|
|
|
|
}
|
|
|
|
if len(indexes) < batchSize {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
start += len(indexes)
|
|
|
|
}
|
|
|
|
}
|