From 032bc905f2e959902a33ae3f25d1784e42c3ec08 Mon Sep 17 00:00:00 2001 From: voisardf Date: Mon, 27 Nov 2023 12:17:03 +0100 Subject: [PATCH] initial file as copy of standard test file --- .../sources/test_hook_methods.py | 234 ++++++++++++++++++ 1 file changed, 234 insertions(+) create mode 100644 tests/contrib.data_sources.interlis_2_3/sources/test_hook_methods.py diff --git a/tests/contrib.data_sources.interlis_2_3/sources/test_hook_methods.py b/tests/contrib.data_sources.interlis_2_3/sources/test_hook_methods.py new file mode 100644 index 0000000000..063457c8a8 --- /dev/null +++ b/tests/contrib.data_sources.interlis_2_3/sources/test_hook_methods.py @@ -0,0 +1,234 @@ +import binascii + +import pytest +from unittest.mock import patch +from sqlalchemy import Integer +from sqlalchemy.orm import declarative_base +from pyramid.httpexceptions import HTTPNotFound, HTTPServerError +from pyramid_oereb.contrib.data_sources.interlis_2_3.sources.hook_methods import get_symbol +from pyramid_oereb.contrib.data_sources.interlis_2_3.sources.models import get_view_service, get_legend_entry +from pyramid_oereb.core import b64 + + +@pytest.fixture +def theme_config(): + yield { + "srid": 2056, + "code": "ch.BaulinienNationalstrassen", + "geometry_type": "LINESTRING", + "view_service": { + "layer_index": 1, + "layer_opacity": 0.25, + }, + "law_status_lookup": [{ + "data_code": "inKraft", + "transfer_code": "inKraft", + "extract_code": "inForce" + }], + "standard": True, + "federal": True, + "source": { + "class": "pyramid_oereb.contrib.data_sources.interlis_2_3.sources.plr.DatabaseSource", + "params": { + "db_connection": "postgresql://postgres:postgres@123.123.123.123:5432/oereb_test_db", + "model_factory": "pyramid_oereb.contrib.data_sources.interlis_2_3.models.theme.model_factory_string_pk", # noqa: E501 + "schema_name": "land_use_plans" + } + }, + "hooks": { + "get_symbol": "pyramid_oereb.contrib.data_sources.interlis_2_3.hook_methods.get_symbol", + "get_symbol_ref": "pyramid_oereb.contrib.data_sources.interlis_2_3.hook_methods.get_symbol_ref" + }, + "thresholds": { + "length": { + "limit": 1.0, + "unit": 'm', + "precision": 2 + }, + "area": { + "limit": 1.0, + "unit": 'm²', + "precision": 2 + }, + "percentage": { + "precision": 1 + } + }, + "document_types_lookup": [{ + "data_code": "Rechtsvorschrift", + "transfer_code": "Rechtsvorschrift", + "extract_code": "LegalProvision" + }, { + "data_code": "GesetzlicheGrundlage", + "transfer_code": "GesetzlicheGrundlage", + "extract_code": "Law" + }, { + "data_code": "Hinweis", + "transfer_code": "Hinweis", + "extract_code": "Hint" + }] + } + + +@pytest.fixture +def legend_entry(): + Base = declarative_base() + ViewService = get_view_service(Base, 'test', Integer) + LegendEntry = get_legend_entry(Base, 'test', Integer, ViewService) + yield LegendEntry + + +@pytest.fixture +def one_result_binary_session(legend_entry, png_binary, session, query): + + class Query(query): + + def one(self): + return legend_entry(**{ + 'id': 1, + 'symbol': png_binary, + 'legend_text': {'de': 'testlegende'}, + 'type_code': 'testCode', + 'type_code_list': 'testCode,testCode2,testCode3', + 'theme': 'ch.TestThema', + 'sub_theme': 'ch.SubTestThema', + 'view_service_id': 1 + }) + + class Session(session): + + def query(self, term): + return Query() + + yield Session + + +@pytest.fixture +def no_result_session(legend_entry, png_binary, session, query): + + class Session(session): + + def query(self, term): + return query() + + yield Session + + +@pytest.fixture +def one_result_no_symbol_session(legend_entry, session, query): + + class Query(query): + + def one(self): + return legend_entry(**{ + 'id': 1, + 'legend_text': {'de': 'testlegende'}, + 'type_code': 'testCode', + 'type_code_list': 'testCode,testCode2,testCode3', + 'theme': 'ch.TestThema', + 'sub_theme': 'ch.SubTestThema', + 'view_service_id': 1 + }) + + class Session(session): + + def query(self, term): + return Query() + + yield Session + + +@pytest.fixture +def one_result_wrong_content_session(legend_entry, session, query): + + class Query(query): + + def one(self): + return legend_entry(**{ + 'id': 1, + 'symbol': 1, + 'legend_text': {'de': 'testlegende'}, + 'type_code': 'testCode', + 'type_code_list': 'testCode,testCode2,testCode3', + 'theme': 'ch.TestThema', + 'sub_theme': 'ch.SubTestThema', + 'view_service_id': 1 + }) + + class Session(session): + + def query(self, term): + return Query() + + yield Session + + +@pytest.fixture +def one_result_b64_session(legend_entry, png_binary, session, query): + + class Query(query): + def one(self): + return legend_entry(**{ + 'id': 1, + 'symbol': b64.encode(png_binary), + 'legend_text': {'de': 'testlegende'}, + 'type_code': 'testCode', + 'type_code_list': 'testCode,testCode2,testCode3', + 'theme': 'ch.TestThema', + 'sub_theme': 'ch.SubTestThema', + 'view_service_id': 1 + }) + + class Session(session): + def query(self, term): + return Query() + + yield Session + + +def test_get_symbol_binary_content(theme_config, one_result_binary_session, png_binary): + with patch( + 'pyramid_oereb.core.adapter.DatabaseAdapter.get_session', + return_value=one_result_binary_session()): + body, content_type = get_symbol({'identifier': "1"}, theme_config) + assert content_type == 'image/png' + assert body == b64.decode(binascii.b2a_base64(png_binary).decode('ascii')) + + +def test_get_symbol_no_symbol_content(theme_config, one_result_no_symbol_session): + with patch( + 'pyramid_oereb.core.adapter.DatabaseAdapter.get_session', + return_value=one_result_no_symbol_session()): + with pytest.raises(HTTPServerError): + get_symbol({'identifier': "1"}, theme_config) + + +def test_get_symbol_wrong_param(theme_config, one_result_no_symbol_session): + with patch( + 'pyramid_oereb.core.adapter.DatabaseAdapter.get_session', + return_value=one_result_no_symbol_session()): + with pytest.raises(HTTPServerError): + get_symbol({'identif': "1"}, theme_config) + + +def test_get_symbol_no_legend_entry(theme_config, no_result_session): + with patch( + 'pyramid_oereb.core.adapter.DatabaseAdapter.get_session', + return_value=no_result_session()): + with pytest.raises(HTTPNotFound): + get_symbol({'identifier': "2"}, theme_config) + + +def test_get_symbol_wrong_content(theme_config, one_result_wrong_content_session): + with patch('pyramid_oereb.core.adapter.DatabaseAdapter.get_session', + return_value=one_result_wrong_content_session()): + with pytest.raises(HTTPServerError): + get_symbol({'identifier': "1"}, theme_config) + + +def test_get_symbol_b64_content(theme_config, one_result_b64_session, png_binary): + with patch('pyramid_oereb.core.adapter.DatabaseAdapter.get_session', + return_value=one_result_b64_session()): + body, content_type = get_symbol({'identifier': "1"}, theme_config) + assert content_type == 'image/png' + assert body == b64.decode(binascii.b2a_base64(png_binary).decode('ascii'))