2021-01-24 16:35:35 +03:00
|
|
|
"""
|
|
|
|
Tests for creating PL/pgSQL functions for Nominatim.
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
|
2021-03-03 19:37:22 +03:00
|
|
|
from nominatim.tools.refresh import create_functions
|
2021-01-24 16:35:35 +03:00
|
|
|
|
2021-04-19 10:38:17 +03:00
|
|
|
@pytest.fixture
|
|
|
|
def sql_tmp_path(tmp_path, def_config):
|
|
|
|
def_config.lib_dir.sql = tmp_path
|
|
|
|
return tmp_path
|
|
|
|
|
2021-01-24 16:35:35 +03:00
|
|
|
@pytest.fixture
|
2021-04-27 12:37:18 +03:00
|
|
|
def conn(sql_preprocessor, temp_db_conn):
|
2021-03-03 19:37:22 +03:00
|
|
|
return temp_db_conn
|
|
|
|
|
|
|
|
|
2021-04-19 10:38:17 +03:00
|
|
|
def test_create_functions(temp_db_cursor, conn, def_config, sql_tmp_path):
|
|
|
|
sqlfile = sql_tmp_path / 'functions.sql'
|
2021-03-03 19:37:22 +03:00
|
|
|
sqlfile.write_text("""CREATE OR REPLACE FUNCTION test() RETURNS INTEGER
|
|
|
|
AS $$
|
|
|
|
BEGIN
|
|
|
|
RETURN 43;
|
|
|
|
END;
|
|
|
|
$$ LANGUAGE plpgsql IMMUTABLE;
|
|
|
|
""")
|
|
|
|
|
2021-04-19 11:01:17 +03:00
|
|
|
create_functions(conn, def_config)
|
2021-03-03 19:37:22 +03:00
|
|
|
|
|
|
|
assert temp_db_cursor.scalar('SELECT test()') == 43
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("dbg,ret", ((True, 43), (False, 22)))
|
2021-04-19 10:38:17 +03:00
|
|
|
def test_create_functions_with_template(temp_db_cursor, conn, def_config, sql_tmp_path, dbg, ret):
|
|
|
|
sqlfile = sql_tmp_path / 'functions.sql'
|
2021-03-03 19:37:22 +03:00
|
|
|
sqlfile.write_text("""CREATE OR REPLACE FUNCTION test() RETURNS INTEGER
|
|
|
|
AS $$
|
|
|
|
BEGIN
|
|
|
|
{% if debug %}
|
|
|
|
RETURN 43;
|
|
|
|
{% else %}
|
|
|
|
RETURN 22;
|
|
|
|
{% endif %}
|
|
|
|
END;
|
|
|
|
$$ LANGUAGE plpgsql IMMUTABLE;
|
|
|
|
""")
|
|
|
|
|
2021-04-19 11:01:17 +03:00
|
|
|
create_functions(conn, def_config, enable_debug=dbg)
|
2021-03-03 19:37:22 +03:00
|
|
|
|
|
|
|
assert temp_db_cursor.scalar('SELECT test()') == ret
|