X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c8958a22d297afc2501619fe8d393cc186e1a79a..2cdbcac353805767df011edc494f8067f9409f63:/test/python/tools/test_refresh_setup_website.py?ds=sidebyside diff --git a/test/python/tools/test_refresh_setup_website.py b/test/python/tools/test_refresh_setup_website.py index 7102d43b..12f5df82 100644 --- a/test/python/tools/test_refresh_setup_website.py +++ b/test/python/tools/test_refresh_setup_website.py @@ -36,6 +36,16 @@ def run_website_script(tmp_path, project_env, temp_db_conn): return _runner +def test_basedir_created(tmp_path, project_env, temp_db_conn): + webdir = tmp_path / 'website' + + assert not webdir.exists() + + refresh.setup_website(webdir, project_env, temp_db_conn) + + assert webdir.exists() + + @pytest.mark.parametrize("setting,retval", (('yes', 10), ('no', 20))) def test_setup_website_check_bool(monkeypatch, test_script, run_website_script, setting, retval): @@ -69,3 +79,13 @@ def test_setup_website_check_str(monkeypatch, test_script, run_website_script): test_script('exit(CONST_Default_Language === "ffde 2" ? 10 : 20);') assert run_website_script() == 10 + + +def test_relative_log_file(project_env, monkeypatch, test_script, run_website_script): + monkeypatch.setenv('NOMINATIM_LOG_FILE', 'access.log') + + expected_file = str(project_env.project_dir / 'access.log') + test_script(f'exit(CONST_Log_File === "{expected_file}" ? 10 : 20);') + + assert run_website_script() == 10 +