import logging
from nominatim.tools.exec_utils import run_api_script
+from nominatim.errors import UsageError
# Do not repeat documentation of subcommand classes.
# pylint: disable=C0111
"Parameter is difference tolerance in degrees."))
+def _run_api(endpoint, args, params):
+ script_file = args.project_dir / 'website' / (endpoint + '.php')
+
+ if not script_file.exists():
+ LOG.error("Cannot find API script file.\n\n"
+ "Make sure to run 'nominatim' from the project directory \n"
+ "or use the option --project-dir.")
+ raise UsageError("API script not found.")
+
+ return run_api_script(endpoint, args.project_dir,
+ phpcgi_bin=args.phpcgi_path, params=params)
+
class APISearch:
"""\
Execute a search query.
if not args.dedupe:
params['dedupe'] = '0'
- return run_api_script('search', args.project_dir,
- phpcgi_bin=args.phpcgi_path, params=params)
+ return _run_api('search', args, params)
class APIReverse:
"""\
if args.polygon_threshold:
params['polygon_threshold'] = args.polygon_threshold
- return run_api_script('reverse', args.project_dir,
- phpcgi_bin=args.phpcgi_path, params=params)
+ return _run_api('reverse', args, params)
class APILookup:
if args.polygon_threshold:
params['polygon_threshold'] = args.polygon_threshold
- return run_api_script('lookup', args.project_dir,
- phpcgi_bin=args.phpcgi_path, params=params)
+ return _run_api('lookup', args, params)
class APIDetails:
for name, _ in DETAILS_SWITCHES:
params[name] = '1' if getattr(args, name) else '0'
- return run_api_script('details', args.project_dir,
- phpcgi_bin=args.phpcgi_path, params=params)
+ return _run_api('details', args, params)
class APIStatus:
@staticmethod
def run(args):
- return run_api_script('status', args.project_dir,
- phpcgi_bin=args.phpcgi_path,
- params=dict(format=args.format))
+ return _run_api('status', args, dict(format=args.format))
assert func.called == 1
- @pytest.mark.parametrize("params", [('search', '--query', 'new'),
- ('reverse', '--lat', '0', '--lon', '0'),
- ('lookup', '--id', 'N1'),
- ('details', '--node', '1'),
- ('details', '--way', '1'),
- ('details', '--relation', '1'),
- ('details', '--place_id', '10001'),
- ('status',)])
- def test_api_commands_simple(self, mock_func_factory, params):
+@pytest.mark.parametrize("params", [('search', '--query', 'new'),
+ ('reverse', '--lat', '0', '--lon', '0'),
+ ('lookup', '--id', 'N1'),
+ ('details', '--node', '1'),
+ ('details', '--way', '1'),
+ ('details', '--relation', '1'),
+ ('details', '--place_id', '10001'),
+ ('status',)])
+class TestCliApiCall:
+
+ @pytest.fixture(autouse=True)
+ def setup_cli_call(self, cli_call):
+ self.call_nominatim = cli_call
+
+ def test_api_commands_simple(self, mock_func_factory, params, tmp_path):
+ (tmp_path / 'website').mkdir()
+ (tmp_path / 'website' / (params[0] + '.php')).write_text('')
mock_run_api = mock_func_factory(nominatim.clicmd.api, 'run_api_script')
- assert self.call_nominatim(*params) == 0
+ assert self.call_nominatim(*params, '--project-dir', str(tmp_path)) == 0
assert mock_run_api.called == 1
assert mock_run_api.last_args[0] == params[0]
+ def test_bad_project_idr(self, mock_func_factory, params):
+ mock_run_api = mock_func_factory(nominatim.clicmd.api, 'run_api_script')
+
+ assert self.call_nominatim(*params) == 1
+
class TestCliWithDb: