appropriate subcommand.
"""
args = NominatimArgs()
- self.parser.parse_args(args=kwargs.get('cli_args'), namespace=args)
+ try:
+ self.parser.parse_args(args=kwargs.get('cli_args'), namespace=args)
+ except SystemExit:
+ return 1
if args.subcommand is None:
self.parser.print_help()
"""
Implementation of 'refresh' subcommand.
"""
+from argparse import ArgumentTypeError
import logging
from pathlib import Path
Raises an ArgumentError if the format is not recognized.
"""
if len(obj) < 2 or obj[0].lower() not in 'nrw' or not obj[1:].isdigit():
- raise ArgumentError("Expect OSM object id of form [N|W|R]<id>.")
+ raise ArgumentTypeError("Cannot parse OSM ID. Expect format: [N|W|R]<id>.")
return (obj[0].upper(), int(obj[1:]))
help='Enable debug warning statements in functions')
- def run(self, args):
+ def run(self, args): #pylint: disable=too-many-branches
from ..tools import refresh, postcodes
from ..indexer.indexer import Indexer
@pytest.mark.parametrize("endpoint", (('search', 'reverse', 'lookup', 'details', 'status')))
def test_no_api_without_phpcgi(src_dir, endpoint):
- with pytest.raises(SystemExit):
- nominatim.cli.nominatim(module_dir='MODULE NOT AVAILABLE',
- osm2pgsql_path='OSM2PGSQL NOT AVAILABLE',
- phplib_dir=str(src_dir / 'lib-php'),
- data_dir=str(src_dir / 'data'),
- phpcgi_path=None,
- sqllib_dir=str(src_dir / 'lib-sql'),
- config_dir=str(src_dir / 'settings'),
- cli_args=[endpoint])
+ assert nominatim.cli.nominatim(module_dir='MODULE NOT AVAILABLE',
+ osm2pgsql_path='OSM2PGSQL NOT AVAILABLE',
+ phplib_dir=str(src_dir / 'lib-php'),
+ data_dir=str(src_dir / 'data'),
+ phpcgi_path=None,
+ sqllib_dir=str(src_dir / 'lib-sql'),
+ config_dir=str(src_dir / 'settings'),
+ cli_args=[endpoint]) == 1
@pytest.mark.parametrize("params", [('search', '--query', 'new'),
assert self.call_nominatim('refresh', '--importance', '--wiki-data') == 0
assert calls == ['import', 'update']
+
+ @pytest.mark.parametrize('params', [('--data-object', 'w234'),
+ ('--data-object', 'N23', '--data-object', 'N24'),
+ ('--data-area', 'R7723'),
+ ('--data-area', 'r7723', '--data-area', 'r2'),
+ ('--data-area', 'R9284425', '--data-object', 'n1234567894567')])
+ def test_refresh_objects(self, params, mock_func_factory):
+ func_mock = mock_func_factory(nominatim.tools.refresh, 'invalidate_osm_object')
+
+ assert self.call_nominatim('refresh', *params) == 0
+
+ assert func_mock.called == len(params)/2
+
+
+ @pytest.mark.parametrize('func', ('--data-object', '--data-area'))
+ @pytest.mark.parametrize('param', ('234', 'a55', 'R 453', 'Rel'))
+ def test_refresh_objects_bad_param(self, func, param, mock_func_factory):
+ func_mock = mock_func_factory(nominatim.tools.refresh, 'invalidate_osm_object')
+
+ self.call_nominatim('refresh', func, param) == 1
+ assert func_mock.called == 0
AS $$ SELECT 0.1::float, 'foo'::text $$ LANGUAGE SQL""")
refresh.recompute_importance(temp_db_conn)
+
+
+@pytest.mark.parametrize('osm_type', ('N', 'W', 'R'))
+def test_invalidate_osm_object_simple(placex_table, osm_type, temp_db_conn, temp_db_cursor):
+ placex_table.add(osm_type=osm_type, osm_id=57283)
+
+ refresh.invalidate_osm_object(osm_type, 57283, temp_db_conn, recursive=False)
+ temp_db_conn.commit()
+
+ assert 2 == temp_db_cursor.scalar("""SELECT indexed_status FROM placex
+ WHERE osm_type = %s and osm_id = %s""",
+ (osm_type, 57283))
+
+
+def test_invalidate_osm_object_nonexisting_simple(placex_table, temp_db_conn, temp_db_cursor):
+ placex_table.add(osm_type='W', osm_id=57283)
+
+ refresh.invalidate_osm_object('N', 57283, temp_db_conn, recursive=False)
+ temp_db_conn.commit()
+
+ assert 0 == temp_db_cursor.scalar("""SELECT count(*) FROM placex
+ WHERE indexed_status > 0""")
+
+
+@pytest.mark.parametrize('osm_type', ('N', 'W', 'R'))
+def test_invalidate_osm_object_recursive(placex_table, osm_type, temp_db_conn, temp_db_cursor):
+ placex_table.add(osm_type=osm_type, osm_id=57283)
+
+ temp_db_cursor.execute("""CREATE OR REPLACE FUNCTION place_force_update(placeid BIGINT)
+ RETURNS BOOLEAN AS $$
+ BEGIN
+ UPDATE placex SET indexed_status = 522
+ WHERE place_id = placeid;
+ RETURN TRUE;
+ END;
+ $$
+ LANGUAGE plpgsql;""")
+
+ refresh.invalidate_osm_object(osm_type, 57283, temp_db_conn)
+ temp_db_conn.commit()
+
+ assert 522 == temp_db_cursor.scalar("""SELECT indexed_status FROM placex
+ WHERE osm_type = %s and osm_id = %s""",
+ (osm_type, 57283))