2020-08-08 14:43:02 +02:00
|
|
|
"""Test the package's configuration module."""
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2020-08-09 17:14:23 +02:00
|
|
|
from urban_meal_delivery import configuration
|
2020-08-08 14:43:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
envs = ['production', 'testing']
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('env', envs)
|
|
|
|
def test_config_repr(env):
|
|
|
|
"""Config objects have the text representation '<configuration>'."""
|
2020-08-09 17:14:23 +02:00
|
|
|
config = configuration.make_config(env)
|
2020-08-08 14:43:02 +02:00
|
|
|
|
|
|
|
assert str(config) == '<configuration>'
|
|
|
|
|
|
|
|
|
|
|
|
def test_invalid_config():
|
|
|
|
"""There are only 'production' and 'testing' configurations."""
|
|
|
|
with pytest.raises(ValueError, match="'production' or 'testing'"):
|
2020-08-09 17:14:23 +02:00
|
|
|
configuration.make_config('invalid')
|
2020-08-08 14:43:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('env', envs)
|
|
|
|
def test_database_uri_set(env, monkeypatch):
|
|
|
|
"""Package does NOT emit warning if DATABASE_URI is set."""
|
|
|
|
uri = 'postgresql://user:password@localhost/db'
|
2020-08-09 17:14:23 +02:00
|
|
|
monkeypatch.setattr(configuration.ProductionConfig, 'DATABASE_URI', uri)
|
|
|
|
monkeypatch.setattr(configuration.TestingConfig, 'DATABASE_URI', uri)
|
2020-08-08 14:43:02 +02:00
|
|
|
|
2021-01-11 12:24:15 +01:00
|
|
|
# Prevent that a warning is emitted for a missing R_LIBS_PATH.
|
|
|
|
monkeypatch.setattr(configuration.Config, 'R_LIBS_PATH', '.cache/r_libs')
|
|
|
|
|
2020-08-08 14:43:02 +02:00
|
|
|
with pytest.warns(None) as record:
|
2020-08-09 17:14:23 +02:00
|
|
|
configuration.make_config(env)
|
2020-08-08 14:43:02 +02:00
|
|
|
|
|
|
|
assert len(record) == 0 # noqa:WPS441,WPS507
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('env', envs)
|
2021-01-04 18:50:26 +01:00
|
|
|
def test_no_database_uri_set_with_testing_env_var(env, monkeypatch):
|
2020-08-08 14:43:02 +02:00
|
|
|
"""Package does not work without DATABASE_URI set in the environment."""
|
2020-08-09 17:14:23 +02:00
|
|
|
monkeypatch.setattr(configuration.ProductionConfig, 'DATABASE_URI', None)
|
|
|
|
monkeypatch.setattr(configuration.TestingConfig, 'DATABASE_URI', None)
|
2020-08-08 14:43:02 +02:00
|
|
|
|
2021-01-04 18:50:26 +01:00
|
|
|
monkeypatch.setenv('TESTING', 'true')
|
|
|
|
|
2021-01-11 12:24:15 +01:00
|
|
|
# Prevent that a warning is emitted for a missing R_LIBS_PATH.
|
|
|
|
monkeypatch.setattr(configuration.Config, 'R_LIBS_PATH', '.cache/r_libs')
|
|
|
|
|
2021-01-04 18:50:26 +01:00
|
|
|
with pytest.warns(None) as record:
|
|
|
|
configuration.make_config(env)
|
|
|
|
|
|
|
|
assert len(record) == 0 # noqa:WPS441,WPS507
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('env', envs)
|
|
|
|
def test_no_database_uri_set_without_testing_env_var(env, monkeypatch):
|
|
|
|
"""Package does not work without DATABASE_URI set in the environment."""
|
|
|
|
monkeypatch.setattr(configuration.ProductionConfig, 'DATABASE_URI', None)
|
|
|
|
monkeypatch.setattr(configuration.TestingConfig, 'DATABASE_URI', None)
|
|
|
|
|
|
|
|
monkeypatch.delenv('TESTING', raising=False)
|
|
|
|
|
2021-01-11 12:24:15 +01:00
|
|
|
# Prevent that a warning is emitted for a missing R_LIBS_PATH.
|
|
|
|
monkeypatch.setattr(configuration.Config, 'R_LIBS_PATH', '.cache/r_libs')
|
|
|
|
|
2020-08-08 14:43:02 +02:00
|
|
|
with pytest.warns(UserWarning, match='no DATABASE_URI'):
|
2020-08-09 17:14:23 +02:00
|
|
|
configuration.make_config(env)
|
2020-08-09 03:45:19 +02:00
|
|
|
|
|
|
|
|
2021-01-11 12:24:15 +01:00
|
|
|
@pytest.mark.parametrize('env', envs)
|
|
|
|
def test_r_libs_path_set(env, monkeypatch):
|
|
|
|
"""Package does NOT emit a warning if R_LIBS is set in the environment."""
|
|
|
|
monkeypatch.setattr(configuration.Config, 'R_LIBS_PATH', '.cache/r_libs')
|
|
|
|
|
|
|
|
# Prevent that a warning is emitted for a missing DATABASE_URI.
|
|
|
|
uri = 'postgresql://user:password@localhost/db'
|
|
|
|
monkeypatch.setattr(configuration.ProductionConfig, 'DATABASE_URI', uri)
|
|
|
|
|
|
|
|
with pytest.warns(None) as record:
|
|
|
|
configuration.make_config(env)
|
|
|
|
|
|
|
|
assert len(record) == 0 # noqa:WPS441,WPS507
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('env', envs)
|
|
|
|
def test_no_r_libs_path_set_with_testing_env_var(env, monkeypatch):
|
|
|
|
"""Package emits a warning if no R_LIBS is set in the environment ...
|
|
|
|
|
|
|
|
... when not testing.
|
|
|
|
"""
|
|
|
|
monkeypatch.setattr(configuration.Config, 'R_LIBS_PATH', None)
|
|
|
|
monkeypatch.setenv('TESTING', 'true')
|
|
|
|
|
|
|
|
# Prevent that a warning is emitted for a missing DATABASE_URI.
|
|
|
|
uri = 'postgresql://user:password@localhost/db'
|
|
|
|
monkeypatch.setattr(configuration.ProductionConfig, 'DATABASE_URI', uri)
|
|
|
|
|
|
|
|
with pytest.warns(None) as record:
|
|
|
|
configuration.make_config(env)
|
|
|
|
|
|
|
|
assert len(record) == 0 # noqa:WPS441,WPS507
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('env', envs)
|
|
|
|
def test_no_r_libs_path_set_without_testing_env_var(env, monkeypatch):
|
|
|
|
"""Package emits a warning if no R_LIBS is set in the environment ...
|
|
|
|
|
|
|
|
... when not testing.
|
|
|
|
"""
|
|
|
|
monkeypatch.setattr(configuration.Config, 'R_LIBS_PATH', None)
|
|
|
|
monkeypatch.delenv('TESTING', raising=False)
|
|
|
|
|
|
|
|
# Prevent that a warning is emitted for a missing DATABASE_URI.
|
|
|
|
uri = 'postgresql://user:password@localhost/db'
|
|
|
|
monkeypatch.setattr(configuration.ProductionConfig, 'DATABASE_URI', uri)
|
|
|
|
|
|
|
|
with pytest.warns(UserWarning, match='no R_LIBS'):
|
|
|
|
configuration.make_config(env)
|
|
|
|
|
|
|
|
|
2020-08-09 03:45:19 +02:00
|
|
|
def test_random_testing_schema():
|
2020-08-09 17:14:23 +02:00
|
|
|
"""CLEAN_SCHEMA is randomized if not set explicitly."""
|
|
|
|
result = configuration.random_schema_name()
|
2020-08-09 03:45:19 +02:00
|
|
|
|
|
|
|
assert isinstance(result, str)
|
2020-08-09 17:14:23 +02:00
|
|
|
assert result.startswith('temp_')
|
|
|
|
assert len(result) == 15
|