X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c8958a22d297afc2501619fe8d393cc186e1a79a..b0067a0345c2ab7793614925d6150141ef5f18f0:/test/python/tokenizer/test_factory.py?ds=sidebyside diff --git a/test/python/tokenizer/test_factory.py b/test/python/tokenizer/test_factory.py index 87d9b583..166e6ba6 100644 --- a/test/python/tokenizer/test_factory.py +++ b/test/python/tokenizer/test_factory.py @@ -1,3 +1,9 @@ +# SPDX-License-Identifier: GPL-2.0-only +# +# This file is part of Nominatim. (https://nominatim.org) +# +# Copyright (C) 2022 by the Nominatim developer community. +# For a full list of authors see the git log. """ Tests for creating new tokenizers. """ @@ -57,13 +63,13 @@ class TestFactory: assert tokenizer.init_state == "loaded" - def test_load_no_tokenizer_dir(self): + def test_load_repopulate_tokenizer_dir(self): factory.create_tokenizer(self.config) - self.config.project_dir = self.config.project_dir / 'foo' + self.config.project_dir = self.config.project_dir - with pytest.raises(UsageError): - factory.get_tokenizer_for_db(self.config) + factory.get_tokenizer_for_db(self.config) + assert (self.config.project_dir / 'tokenizer').exists() def test_load_missing_property(self, temp_db_cursor):