Some checks are pending
/ release (push) Waiting to run
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-e2e (push) Blocked by required conditions
testing / test-remote-cacher (redis) (push) Blocked by required conditions
testing / test-remote-cacher (valkey) (push) Blocked by required conditions
testing / test-remote-cacher (garnet) (push) Blocked by required conditions
testing / test-remote-cacher (redict) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
testing / security-check (push) Blocked by required conditions
27 lines
819 B
Go
27 lines
819 B
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package migrations
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forgejo.org/modules/test"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMigrations(t *testing.T) {
|
|
defer test.MockVariableValue(&preparedMigrations, []*migration{
|
|
{idNumber: 70},
|
|
{idNumber: 71},
|
|
})()
|
|
assert.EqualValues(t, 72, calcDBVersion(preparedMigrations))
|
|
assert.EqualValues(t, 72, ExpectedDBVersion())
|
|
|
|
assert.EqualValues(t, 71, migrationIDNumberToDBVersion(70))
|
|
|
|
assert.EqualValues(t, []*migration{{idNumber: 70}, {idNumber: 71}}, getPendingMigrations(70, preparedMigrations))
|
|
assert.EqualValues(t, []*migration{{idNumber: 71}}, getPendingMigrations(71, preparedMigrations))
|
|
assert.EqualValues(t, []*migration{}, getPendingMigrations(72, preparedMigrations))
|
|
}
|