]> git.openstreetmap.org Git - nominatim.git/blob - test/python/test_tools_refresh_setup_website.py
introduce external processing in indexer
[nominatim.git] / test / python / test_tools_refresh_setup_website.py
1 """
2 Tests for setting up the website scripts.
3 """
4 from pathlib import Path
5 import subprocess
6
7 import pytest
8
9 from nominatim.tools import refresh
10
11 @pytest.fixture
12 def envdir(tmpdir):
13     (tmpdir / 'php').mkdir()
14     (tmpdir / 'php' / 'website').mkdir()
15     return tmpdir
16
17
18 @pytest.fixture
19 def test_script(envdir):
20     def _create_file(code):
21         outfile = envdir / 'php' / 'website' / 'search.php'
22         outfile.write_text('<?php\n{}\n'.format(code), 'utf-8')
23
24     return _create_file
25
26
27 def run_website_script(envdir, config):
28     config.lib_dir.php = envdir / 'php'
29     refresh.setup_website(envdir, config)
30
31     proc = subprocess.run(['/usr/bin/env', 'php', '-Cq',
32                            envdir / 'search.php'], check=False)
33
34     return proc.returncode
35
36
37 @pytest.mark.parametrize("setting,retval", (('yes', 10), ('no', 20)))
38 def test_setup_website_check_bool(def_config, monkeypatch, envdir, test_script,
39                                   setting, retval):
40     monkeypatch.setenv('NOMINATIM_CORS_NOACCESSCONTROL', setting)
41
42     test_script('exit(CONST_NoAccessControl ? 10 : 20);')
43
44     assert run_website_script(envdir, def_config) == retval
45
46
47 @pytest.mark.parametrize("setting", (0, 10, 99067))
48 def test_setup_website_check_int(def_config, monkeypatch, envdir, test_script, setting):
49     monkeypatch.setenv('NOMINATIM_LOOKUP_MAX_COUNT', str(setting))
50
51     test_script('exit(CONST_Places_Max_ID_count == {} ? 10 : 20);'.format(setting))
52
53     assert run_website_script(envdir, def_config) == 10
54
55
56 def test_setup_website_check_empty_str(def_config, monkeypatch, envdir, test_script):
57     monkeypatch.setenv('NOMINATIM_DEFAULT_LANGUAGE', '')
58
59     test_script('exit(CONST_Default_Language === false ? 10 : 20);')
60
61     assert run_website_script(envdir, def_config) == 10
62
63
64 def test_setup_website_check_str(def_config, monkeypatch, envdir, test_script):
65     monkeypatch.setenv('NOMINATIM_DEFAULT_LANGUAGE', 'ffde 2')
66
67     test_script('exit(CONST_Default_Language === "ffde 2" ? 10 : 20);')
68
69     assert run_website_script(envdir, def_config) == 10
70
71