API - refactor tests fixtures
This commit is contained in:
99
fittrackee/tests/fixtures/fixtures_app.py
vendored
Normal file
99
fittrackee/tests/fixtures/fixtures_app.py
vendored
Normal file
@@ -0,0 +1,99 @@
|
||||
import os
|
||||
from typing import Generator, Optional
|
||||
|
||||
import pytest
|
||||
|
||||
from fittrackee import create_app, db
|
||||
from fittrackee.application.models import AppConfig
|
||||
from fittrackee.application.utils import update_app_config_from_database
|
||||
|
||||
|
||||
def get_app_config(
|
||||
with_config: Optional[bool] = False,
|
||||
with_federation: Optional[bool] = False,
|
||||
) -> Optional[AppConfig]:
|
||||
if with_config:
|
||||
config = AppConfig()
|
||||
config.federation_enabled = with_federation
|
||||
config.gpx_limit_import = 10
|
||||
config.max_single_file_size = 1 * 1024 * 1024
|
||||
config.max_zip_file_size = 1 * 1024 * 1024 * 10
|
||||
config.max_users = 100
|
||||
db.session.add(config)
|
||||
db.session.commit()
|
||||
return config
|
||||
return None
|
||||
|
||||
|
||||
def get_app(
|
||||
with_config: Optional[bool] = False,
|
||||
with_federation: Optional[bool] = False,
|
||||
) -> Generator:
|
||||
app = create_app()
|
||||
with app.app_context():
|
||||
try:
|
||||
db.create_all()
|
||||
app_db_config = get_app_config(with_config, with_federation)
|
||||
if app_db_config:
|
||||
update_app_config_from_database(app, app_db_config)
|
||||
yield app
|
||||
except Exception as e:
|
||||
print(f'Error with app configuration: {e}')
|
||||
finally:
|
||||
db.session.remove()
|
||||
db.drop_all()
|
||||
# close unused idle connections => avoid the following error:
|
||||
# FATAL: remaining connection slots are reserved for
|
||||
# non-replication superuser connections
|
||||
db.engine.dispose()
|
||||
return app
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def app(monkeypatch: pytest.MonkeyPatch) -> Generator:
|
||||
monkeypatch.setenv('EMAIL_URL', 'smtp://none:none@0.0.0.0:1025')
|
||||
if os.getenv('TILE_SERVER_URL'):
|
||||
monkeypatch.delenv('TILE_SERVER_URL')
|
||||
if os.getenv('MAP_ATTRIBUTION'):
|
||||
monkeypatch.delenv('MAP_ATTRIBUTION')
|
||||
yield from get_app(with_config=True)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def app_no_config() -> Generator:
|
||||
yield from get_app(with_config=False)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def app_ssl(monkeypatch: pytest.MonkeyPatch) -> Generator:
|
||||
monkeypatch.setenv('EMAIL_URL', 'smtp://none:none@0.0.0.0:1025?ssl=True')
|
||||
yield from get_app(with_config=True)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def app_tls(monkeypatch: pytest.MonkeyPatch) -> Generator:
|
||||
monkeypatch.setenv('EMAIL_URL', 'smtp://none:none@0.0.0.0:1025?tls=True')
|
||||
yield from get_app(with_config=True)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def app_with_federation() -> Generator:
|
||||
yield from get_app(with_config=True, with_federation=True)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def app_wo_domain() -> Generator:
|
||||
yield from get_app(with_config=True, with_federation=True)
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
def app_config() -> AppConfig:
|
||||
config = AppConfig()
|
||||
config.federation_enabled = False
|
||||
config.gpx_limit_import = 10
|
||||
config.max_single_file_size = 1048576
|
||||
config.max_zip_file_size = 10485760
|
||||
config.max_users = 0
|
||||
db.session.add(config)
|
||||
db.session.commit()
|
||||
return config
|
||||
Reference in New Issue
Block a user