energy_system_modelling_wor.../tests/test_building.py

47 lines
1.2 KiB
Python
Raw Normal View History

"""
Building test
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
from pathlib import Path
from unittest import TestCase
from imports.geometry_factory import GeometryFactory
2021-08-27 12:51:30 -04:00
class TestBuildings(TestCase):
"""
TestBuilding TestCase 1
"""
def setUp(self) -> None:
"""
Test setup
:return: None
"""
self._city_gml = None
self._example_path = (Path(__file__).parent / 'tests_data').resolve()
def _get_citygml(self, file):
if self._city_gml is None:
file_path = (self._example_path / file).resolve()
self._city_gml = GeometryFactory('citygml', file_path).city
self.assertIsNotNone(self._city_gml, 'city is none')
return self._city_gml
def test_storeys_division(self):
2021-08-27 12:51:30 -04:00
"""
Test storeys division
"""
file = 'kelowna.gml'
city = self._get_citygml(file)
2021-03-31 14:17:53 -04:00
i = 0
for building in city.buildings:
2021-03-31 14:17:53 -04:00
if i < 5:
building.average_storey_height = 1.5
print(building.name)
print(building.volume)
print(building.floor_area)
print(building.max_height)
print(building.centroid)
print(len(building.storeys))
2021-03-31 14:17:53 -04:00
i += 1