2 Tests for setting up the website scripts.
8 from nominatim.tools import refresh
11 def test_script(tmp_path):
12 (tmp_path / 'php').mkdir()
14 website_dir = (tmp_path / 'php' / 'website')
17 def _create_file(code):
18 outfile = website_dir / 'reverse-only-search.php'
19 outfile.write_text('<?php\n{}\n'.format(code), 'utf-8')
25 def run_website_script(tmp_path, project_env, temp_db_conn):
26 project_env.lib_dir.php = tmp_path / 'php'
29 refresh.setup_website(tmp_path, project_env, temp_db_conn)
31 proc = subprocess.run(['/usr/bin/env', 'php', '-Cq',
32 tmp_path / 'search.php'], check=False)
34 return proc.returncode
39 def test_basedir_created(tmp_path, project_env, temp_db_conn):
40 webdir = tmp_path / 'website'
42 assert not webdir.exists()
44 refresh.setup_website(webdir, project_env, temp_db_conn)
46 assert webdir.exists()
49 @pytest.mark.parametrize("setting,retval", (('yes', 10), ('no', 20)))
50 def test_setup_website_check_bool(monkeypatch, test_script, run_website_script,
52 monkeypatch.setenv('NOMINATIM_CORS_NOACCESSCONTROL', setting)
54 test_script('exit(CONST_NoAccessControl ? 10 : 20);')
56 assert run_website_script() == retval
59 @pytest.mark.parametrize("setting", (0, 10, 99067))
60 def test_setup_website_check_int(monkeypatch, test_script, run_website_script, setting):
61 monkeypatch.setenv('NOMINATIM_LOOKUP_MAX_COUNT', str(setting))
63 test_script('exit(CONST_Places_Max_ID_count == {} ? 10 : 20);'.format(setting))
65 assert run_website_script() == 10
68 def test_setup_website_check_empty_str(monkeypatch, test_script, run_website_script):
69 monkeypatch.setenv('NOMINATIM_DEFAULT_LANGUAGE', '')
71 test_script('exit(CONST_Default_Language === false ? 10 : 20);')
73 assert run_website_script() == 10
76 def test_setup_website_check_str(monkeypatch, test_script, run_website_script):
77 monkeypatch.setenv('NOMINATIM_DEFAULT_LANGUAGE', 'ffde 2')
79 test_script('exit(CONST_Default_Language === "ffde 2" ? 10 : 20);')
81 assert run_website_script() == 10
84 def test_relative_log_file(project_env, monkeypatch, test_script, run_website_script):
85 monkeypatch.setenv('NOMINATIM_LOG_FILE', 'access.log')
87 expected_file = str(project_env.project_dir / 'access.log')
88 test_script(f'exit(CONST_Log_File === "{expected_file}" ? 10 : 20);')
90 assert run_website_script() == 10