hub/tests/test_occupancy_factory.py

49 lines
1.7 KiB
Python
Raw Normal View History

2020-10-22 11:02:41 -04:00
"""
TestOccupancyFactory test and validate the city model structure occupancy parameters
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
from pathlib import Path
from unittest import TestCase
2020-10-29 08:16:48 -04:00
from factories.geometry_factory import GeometryFactory
from factories.usage_factory import UsageFactory
from factories.occupancy_factory import OccupancyFactory
2020-10-22 11:02:41 -04:00
class TestOccupancyFactory(TestCase):
"""
TestOccupancyFactory TestCase
"""
def setUp(self) -> None:
"""
Test setup
:return: None
"""
2020-10-27 12:53:29 -04:00
self._city_gml_with_usage = None
2020-10-22 11:02:41 -04:00
self._example_path = (Path(__file__).parent.parent / 'tests_data').resolve()
2020-10-27 12:53:29 -04:00
@property
def _handler(self):
if self._city_gml_with_usage.name == 'New York':
handler = '{0}_{1}'
return handler.format(self._city_gml_with_usage.country_code, self._city_gml_with_usage.name.lower().replace(' ', '_'))
return self._city_gml_with_usage.country_code
def _get_citygml_with_usage(self):
if self._city_gml_with_usage is None:
file_path = (self._example_path / 'buildings.gml').resolve()
2020-10-27 12:53:29 -04:00
self._city_gml_with_usage = GeometryFactory('citygml', file_path).city
self.assertIsNotNone(self._city_gml_with_usage, 'city is none')
UsageFactory(self._handler, self._city_gml_with_usage)
self.assertIsNotNone(self._city_gml_with_usage, 'city with usage is none')
return self._city_gml_with_usage
2020-10-22 11:02:41 -04:00
def test_demo(self):
2020-10-27 12:53:29 -04:00
city = self._get_citygml_with_usage()
2020-10-22 11:02:41 -04:00
OccupancyFactory('demo', city)
for building in city.buildings:
2020-10-27 13:19:50 -04:00
for usage_zone in building.usage_zones:
self.assertTrue(usage_zone.schedules)