X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/e14e7c6235a40dbec451146bcb3aaec013d659c9..b9b6b075cc3cc12daa5ba48742e010b3e5e9550e:/test/python/test_tools_refresh.py diff --git a/test/python/test_tools_refresh.py b/test/python/test_tools_refresh.py index d6c46ad7..ac79a48f 100644 --- a/test/python/test_tools_refresh.py +++ b/test/python/test_tools_refresh.py @@ -7,20 +7,18 @@ import pytest from nominatim.tools import refresh -TEST_DIR = (Path(__file__) / '..' / '..').resolve() - def test_refresh_import_wikipedia_not_existing(dsn): - assert 1 == refresh.import_wikipedia_articles(dsn, Path('.')) + assert refresh.import_wikipedia_articles(dsn, Path('.')) == 1 @pytest.mark.parametrize("replace", (True, False)) -def test_refresh_import_wikipedia(dsn, table_factory, temp_db_cursor, replace): +def test_refresh_import_wikipedia(dsn, src_dir, table_factory, temp_db_cursor, replace): if replace: table_factory('wikipedia_article') table_factory('wikipedia_redirect') # use the small wikipedia file for the API testdb - assert 0 == refresh.import_wikipedia_articles(dsn, TEST_DIR / 'testdb') + assert refresh.import_wikipedia_articles(dsn, src_dir / 'test' / 'testdb') == 0 - assert temp_db_cursor.scalar('SELECT count(*) FROM wikipedia_article') > 0 - assert temp_db_cursor.scalar('SELECT count(*) FROM wikipedia_redirect') > 0 + assert temp_db_cursor.table_rows('wikipedia_article') > 0 + assert temp_db_cursor.table_rows('wikipedia_redirect') > 0