2021-01-15 16:42:03 +03:00
|
|
|
"""
|
|
|
|
Test for loading dotenv configuration.
|
|
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
import tempfile
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from nominatim.config import Configuration
|
|
|
|
|
|
|
|
DEFCFG_DIR = Path(__file__) / '..' / '..' / '..' / 'settings'
|
|
|
|
|
|
|
|
def test_no_project_dir():
|
|
|
|
config = Configuration(None, DEFCFG_DIR)
|
|
|
|
|
|
|
|
assert config.DATABASE_WEBUSER == 'www-data'
|
|
|
|
|
2021-01-24 16:35:35 +03:00
|
|
|
|
2021-01-15 16:42:03 +03:00
|
|
|
def test_prefer_project_setting_over_default():
|
|
|
|
with tempfile.TemporaryDirectory() as project_dir:
|
|
|
|
with open(project_dir + '/.env', 'w') as envfile:
|
|
|
|
envfile.write('NOMINATIM_DATABASE_WEBUSER=apache\n')
|
|
|
|
|
|
|
|
config = Configuration(Path(project_dir), DEFCFG_DIR)
|
|
|
|
|
|
|
|
assert config.DATABASE_WEBUSER == 'apache'
|
|
|
|
|
2021-01-24 16:35:35 +03:00
|
|
|
|
2021-01-20 11:03:09 +03:00
|
|
|
def test_prefer_os_environ_over_project_setting(monkeypatch):
|
2021-01-15 16:42:03 +03:00
|
|
|
with tempfile.TemporaryDirectory() as project_dir:
|
|
|
|
with open(project_dir + '/.env', 'w') as envfile:
|
|
|
|
envfile.write('NOMINATIM_DATABASE_WEBUSER=apache\n')
|
|
|
|
|
2021-01-20 11:03:09 +03:00
|
|
|
monkeypatch.setenv('NOMINATIM_DATABASE_WEBUSER', 'nobody')
|
2021-01-15 16:42:03 +03:00
|
|
|
|
|
|
|
config = Configuration(Path(project_dir), DEFCFG_DIR)
|
|
|
|
|
|
|
|
assert config.DATABASE_WEBUSER == 'nobody'
|
|
|
|
|
2021-01-24 16:35:35 +03:00
|
|
|
|
2021-01-20 11:03:09 +03:00
|
|
|
def test_get_os_env_add_defaults(monkeypatch):
|
2021-01-15 16:42:03 +03:00
|
|
|
config = Configuration(None, DEFCFG_DIR)
|
|
|
|
|
2021-01-20 11:03:09 +03:00
|
|
|
monkeypatch.delenv('NOMINATIM_DATABASE_WEBUSER', raising=False)
|
2021-01-15 16:42:03 +03:00
|
|
|
|
|
|
|
assert config.get_os_env()['NOMINATIM_DATABASE_WEBUSER'] == 'www-data'
|
|
|
|
|
2021-01-24 16:35:35 +03:00
|
|
|
|
2021-01-20 11:03:09 +03:00
|
|
|
def test_get_os_env_prefer_os_environ(monkeypatch):
|
2021-01-15 16:42:03 +03:00
|
|
|
config = Configuration(None, DEFCFG_DIR)
|
|
|
|
|
2021-01-20 11:03:09 +03:00
|
|
|
monkeypatch.setenv('NOMINATIM_DATABASE_WEBUSER', 'nobody')
|
2021-01-15 16:42:03 +03:00
|
|
|
|
|
|
|
assert config.get_os_env()['NOMINATIM_DATABASE_WEBUSER'] == 'nobody'
|
|
|
|
|
2021-01-24 16:35:35 +03:00
|
|
|
|
2021-01-17 19:06:18 +03:00
|
|
|
def test_get_libpq_dsn_convert_default():
|
|
|
|
config = Configuration(None, DEFCFG_DIR)
|
|
|
|
|
|
|
|
assert config.get_libpq_dsn() == 'dbname=nominatim'
|
|
|
|
|
2021-01-24 16:35:35 +03:00
|
|
|
|
2021-01-20 11:03:09 +03:00
|
|
|
def test_get_libpq_dsn_convert_php(monkeypatch):
|
2021-01-17 19:06:18 +03:00
|
|
|
config = Configuration(None, DEFCFG_DIR)
|
|
|
|
|
2021-01-20 11:03:09 +03:00
|
|
|
monkeypatch.setenv('NOMINATIM_DATABASE_DSN',
|
|
|
|
'pgsql:dbname=gis;password=foo;host=localhost')
|
2021-01-17 19:06:18 +03:00
|
|
|
|
|
|
|
assert config.get_libpq_dsn() == 'dbname=gis password=foo host=localhost'
|
|
|
|
|
2021-01-24 16:35:35 +03:00
|
|
|
|
2021-01-20 11:03:09 +03:00
|
|
|
def test_get_libpq_dsn_convert_libpq(monkeypatch):
|
2021-01-17 19:06:18 +03:00
|
|
|
config = Configuration(None, DEFCFG_DIR)
|
|
|
|
|
2021-01-20 11:03:09 +03:00
|
|
|
monkeypatch.setenv('NOMINATIM_DATABASE_DSN',
|
|
|
|
'host=localhost dbname=gis password=foo')
|
2021-01-17 19:06:18 +03:00
|
|
|
|
|
|
|
assert config.get_libpq_dsn() == 'host=localhost dbname=gis password=foo'
|
2021-01-24 16:35:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("value,result",
|
|
|
|
[(x, True) for x in ('1', 'true', 'True', 'yes', 'YES')] +
|
|
|
|
[(x, False) for x in ('0', 'false', 'no', 'NO', 'x')])
|
|
|
|
def test_get_bool(monkeypatch, value, result):
|
|
|
|
config = Configuration(None, DEFCFG_DIR)
|
|
|
|
|
|
|
|
monkeypatch.setenv('NOMINATIM_FOOBAR', value)
|
|
|
|
|
|
|
|
assert config.get_bool('FOOBAR') == result
|
|
|
|
|
|
|
|
def test_get_bool_empty():
|
|
|
|
config = Configuration(None, DEFCFG_DIR)
|
|
|
|
|
|
|
|
assert config.DATABASE_MODULE_PATH == ''
|
|
|
|
assert config.get_bool('DATABASE_MODULE_PATH') == False
|