mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
add test_initdb.py
IMPORTANT: This test completely wipes out the database it's using. Make sure you've got AUR_CONFIG set to a test database configuration! Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
8a47afd2ea
commit
02311eab76
1 changed files with 27 additions and 0 deletions
27
test/test_initdb.py
Normal file
27
test/test_initdb.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
import pytest
|
||||
|
||||
import aurweb.config
|
||||
import aurweb.db
|
||||
import aurweb.initdb
|
||||
|
||||
from aurweb.models.account_type import AccountType
|
||||
from aurweb.schema import metadata
|
||||
from aurweb.testing import setup_test_db
|
||||
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def setup():
|
||||
setup_test_db()
|
||||
|
||||
tables = metadata.tables.keys()
|
||||
for table in tables:
|
||||
aurweb.db.session.execute(f"DROP TABLE IF EXISTS {table}")
|
||||
|
||||
|
||||
def test_run():
|
||||
class Args:
|
||||
use_alembic = True
|
||||
verbose = False
|
||||
aurweb.initdb.run(Args())
|
||||
assert aurweb.db.session.query(AccountType).filter(
|
||||
AccountType.AccountType == "User").first() is not None
|
Loading…
Add table
Reference in a new issue