split storage & ugprade and separate fixtures

This commit is contained in:
Twenty Panda 2024-03-17 16:26:17 +01:00
parent bf689a2478
commit 554d2b48c0
20 changed files with 170 additions and 118 deletions

View file

@ -1,28 +0,0 @@
#!/bin/bash
# SPDX-License-Identifier: MIT
function test_forgejo_database_v3_upgrades_list_table() {
local table=$1
local work_path=$DIR/forgejo-work-path
sqlite3 $work_path/forgejo.db ".tables $table" .exit | grep --quiet $table
}
function test_forgejo_database_v3_upgrades() {
local table=forgejo_auth_token
stop
reset default
log_info "run 1.20.4-1"
start 1.20.4-1
stop
! test_forgejo_database_v3_upgrades_list_table $table
test_forgejo_database_version 2
log_info "run 1.20.5-0"
start 1.20.5-0
stop
test_forgejo_database_v3_upgrades_list_table $table
test_forgejo_database_version 3
}