1 # SPDX-License-Identifier: GPL-2.0-only
 
   3 # This file is part of Nominatim. (https://nominatim.org)
 
   5 # Copyright (C) 2022 by the Nominatim developer community.
 
   6 # For a full list of authors see the git log.
 
   8 Tests for API access commands of command-line interface wrapper.
 
  12 import nominatim.clicmd.api
 
  15 @pytest.mark.parametrize("endpoint", (('search', 'reverse', 'lookup', 'details', 'status')))
 
  16 def test_no_api_without_phpcgi(src_dir, endpoint):
 
  17     assert nominatim.cli.nominatim(module_dir='MODULE NOT AVAILABLE',
 
  18                                    osm2pgsql_path='OSM2PGSQL NOT AVAILABLE',
 
  19                                    phplib_dir=str(src_dir / 'lib-php'),
 
  20                                    data_dir=str(src_dir / 'data'),
 
  22                                    sqllib_dir=str(src_dir / 'lib-sql'),
 
  23                                    config_dir=str(src_dir / 'settings'),
 
  24                                    cli_args=[endpoint]) == 1
 
  27 @pytest.mark.parametrize("params", [('search', '--query', 'new'),
 
  28                                     ('search', '--city', 'Berlin'),
 
  29                                     ('reverse', '--lat', '0', '--lon', '0', '--zoom', '13'),
 
  30                                     ('lookup', '--id', 'N1'),
 
  31                                     ('details', '--node', '1'),
 
  32                                     ('details', '--way', '1'),
 
  33                                     ('details', '--relation', '1'),
 
  34                                     ('details', '--place_id', '10001'),
 
  38     @pytest.fixture(autouse=True)
 
  39     def setup_cli_call(self, cli_call):
 
  40         self.call_nominatim = cli_call
 
  42     def test_api_commands_simple(self, mock_func_factory, params, tmp_path):
 
  43         (tmp_path / 'website').mkdir()
 
  44         (tmp_path / 'website' / (params[0] + '.php')).write_text('')
 
  45         mock_run_api = mock_func_factory(nominatim.clicmd.api, 'run_api_script')
 
  47         assert self.call_nominatim(*params, '--project-dir', str(tmp_path)) == 0
 
  49         assert mock_run_api.called == 1
 
  50         assert mock_run_api.last_args[0] == params[0]
 
  53     def test_bad_project_idr(self, mock_func_factory, params):
 
  54         mock_run_api = mock_func_factory(nominatim.clicmd.api, 'run_api_script')
 
  56         assert self.call_nominatim(*params) == 1
 
  59  'search': ('--query', 'somewhere'),
 
  60  'reverse': ('--lat', '20', '--lon', '30'),
 
  61  'lookup': ('--id', 'R345345'),
 
  62  'details': ('--node', '324')
 
  65 @pytest.mark.parametrize("endpoint", (('search', 'reverse', 'lookup')))
 
  66 class TestCliApiCommonParameters:
 
  68     @pytest.fixture(autouse=True)
 
  69     def setup_website_dir(self, cli_call, project_env, endpoint):
 
  70         self.endpoint = endpoint
 
  71         self.cli_call = cli_call
 
  72         self.project_dir = project_env.project_dir
 
  73         (self.project_dir / 'website').mkdir()
 
  76     def expect_param(self, param, expected):
 
  77         (self.project_dir / 'website' / (self.endpoint + '.php')).write_text(f"""<?php
 
  78         exit($_GET['{param}']  == '{expected}' ? 0 : 10);
 
  82     def call_nominatim(self, *params):
 
  83         return self.cli_call(self.endpoint, *QUERY_PARAMS[self.endpoint],
 
  84                              '--project-dir', str(self.project_dir), *params)
 
  87     def test_param_output(self):
 
  88         self.expect_param('format', 'xml')
 
  89         assert self.call_nominatim('--format', 'xml') == 0
 
  92     def test_param_lang(self):
 
  93         self.expect_param('accept-language', 'de')
 
  94         assert self.call_nominatim('--lang', 'de') == 0
 
  95         assert self.call_nominatim('--accept-language', 'de') == 0
 
  98     @pytest.mark.parametrize("param", ('addressdetails', 'extratags', 'namedetails'))
 
  99     def test_param_extradata(self, param):
 
 100         self.expect_param(param, '1')
 
 102         assert self.call_nominatim('--' + param) == 0
 
 104     def test_param_polygon_output(self):
 
 105         self.expect_param('polygon_geojson', '1')
 
 107         assert self.call_nominatim('--polygon-output', 'geojson') == 0
 
 110     def test_param_polygon_threshold(self):
 
 111         self.expect_param('polygon_threshold', '0.3452')
 
 113         assert self.call_nominatim('--polygon-threshold', '0.3452') == 0
 
 116 def test_cli_search_param_bounded(cli_call, project_env):
 
 117     webdir = project_env.project_dir / 'website'
 
 119     (webdir / 'search.php').write_text(f"""<?php
 
 120         exit($_GET['bounded']  == '1' ? 0 : 10);
 
 123     assert cli_call('search', *QUERY_PARAMS['search'], '--project-dir', str(project_env.project_dir),
 
 127 def test_cli_search_param_dedupe(cli_call, project_env):
 
 128     webdir = project_env.project_dir / 'website'
 
 130     (webdir / 'search.php').write_text(f"""<?php
 
 131         exit($_GET['dedupe']  == '0' ? 0 : 10);
 
 134     assert cli_call('search', *QUERY_PARAMS['search'], '--project-dir', str(project_env.project_dir),
 
 138 def test_cli_details_param_class(cli_call, project_env):
 
 139     webdir = project_env.project_dir / 'website'
 
 141     (webdir / 'details.php').write_text(f"""<?php
 
 142         exit($_GET['class']  == 'highway' ? 0 : 10);
 
 145     assert cli_call('details', *QUERY_PARAMS['details'], '--project-dir', str(project_env.project_dir),
 
 146                     '--class', 'highway') == 0
 
 149 @pytest.mark.parametrize('param', ('lang', 'accept-language'))
 
 150 def test_cli_details_param_lang(cli_call, project_env, param):
 
 151     webdir = project_env.project_dir / 'website'
 
 153     (webdir / 'details.php').write_text(f"""<?php
 
 154         exit($_GET['accept-language']  == 'es' ? 0 : 10);
 
 157     assert cli_call('details', *QUERY_PARAMS['details'], '--project-dir', str(project_env.project_dir),
 
 158                     '--' + param, 'es') == 0