X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2bab0ca060ff224091b20a0ac808a3febaba04b1..2c61fe08a031bd4ccbe47c62c021321e2dff7510:/test/python/tools/test_refresh.py diff --git a/test/python/tools/test_refresh.py b/test/python/tools/test_refresh.py index 50ff6398..95feef0d 100644 --- a/test/python/tools/test_refresh.py +++ b/test/python/tools/test_refresh.py @@ -2,7 +2,7 @@ # # This file is part of Nominatim. (https://nominatim.org) # -# Copyright (C) 2024 by the Nominatim developer community. +# Copyright (C) 2025 by the Nominatim developer community. # For a full list of authors see the git log. """ Test for various refresh functions. @@ -13,6 +13,7 @@ import pytest from nominatim_db.tools import refresh + def test_refresh_import_wikipedia_not_existing(dsn): assert refresh.import_wikipedia_articles(dsn, Path('.')) == 1 @@ -20,16 +21,13 @@ def test_refresh_import_wikipedia_not_existing(dsn): def test_refresh_import_secondary_importance_non_existing(dsn): assert refresh.import_secondary_importance(dsn, Path('.')) == 1 + def test_refresh_import_secondary_importance_testdb(dsn, src_dir, temp_db_conn, temp_db_cursor): temp_db_cursor.execute('CREATE EXTENSION postgis') + temp_db_cursor.execute('CREATE EXTENSION postgis_raster') + assert refresh.import_secondary_importance(dsn, src_dir / 'test' / 'testdb') == 0 - if temp_db_conn.postgis_version_tuple()[0] < 3: - assert refresh.import_secondary_importance(dsn, src_dir / 'test' / 'testdb') > 0 - else: - temp_db_cursor.execute('CREATE EXTENSION postgis_raster') - assert refresh.import_secondary_importance(dsn, src_dir / 'test' / 'testdb') == 0 - - assert temp_db_conn.table_exists('secondary_importance') + assert temp_db_cursor.table_exists('secondary_importance') @pytest.mark.parametrize("replace", (True, False)) @@ -40,8 +38,7 @@ def test_refresh_import_wikipedia(dsn, src_dir, table_factory, temp_db_cursor, r # use the small wikipedia file for the API testdb assert refresh.import_wikipedia_articles(dsn, src_dir / 'test' / 'testdb') == 0 - assert temp_db_cursor.table_rows('wikipedia_article') > 0 - assert temp_db_cursor.table_rows('wikipedia_redirect') > 0 + assert temp_db_cursor.table_rows('wikimedia_importance') > 0 def test_recompute_importance(placex_table, table_factory, temp_db_conn, temp_db_cursor):