]> git.openstreetmap.org Git - nominatim.git/blob - test/python/db/test_properties.py
cdd1b7af97244c453538b6cb8e17dcca469d5099
[nominatim.git] / test / python / db / test_properties.py
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2022 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 Tests for property table manpulation.
9 """
10 import pytest
11
12 from nominatim.db import properties
13
14 @pytest.fixture
15 def property_factory(property_table, temp_db_cursor):
16     """ A function fixture that adds a property into the property table.
17     """
18     def _add_property(name, value):
19         temp_db_cursor.execute("INSERT INTO nominatim_properties VALUES(%s, %s)",
20                                (name, value))
21
22     return _add_property
23
24
25 def test_get_property_existing(property_factory, temp_db_conn):
26     property_factory('foo', 'bar')
27
28     assert properties.get_property(temp_db_conn, 'foo') == 'bar'
29
30
31 def test_get_property_unknown(property_factory, temp_db_conn):
32     property_factory('other', 'bar')
33
34     assert properties.get_property(temp_db_conn, 'foo') is None
35
36
37 @pytest.mark.parametrize("prefill", (True, False))
38 def test_set_property_new(property_factory, temp_db_conn, temp_db_cursor, prefill):
39     if prefill:
40         property_factory('something', 'bar')
41
42     properties.set_property(temp_db_conn, 'something', 'else')
43
44     assert temp_db_cursor.scalar("""SELECT value FROM nominatim_properties
45                                     WHERE property = 'something'""") == 'else'
46
47     assert properties.get_property(temp_db_conn, 'something') == 'else'