59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
|
"""
|
||
|
TestSystemsFactory
|
||
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
||
|
Copyright © 2023 Concordia CERC group
|
||
|
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
||
|
"""
|
||
|
|
||
|
from pathlib import Path
|
||
|
from unittest import TestCase
|
||
|
|
||
|
from hub.imports.geometry_factory import GeometryFactory
|
||
|
from hub.imports.construction_factory import ConstructionFactory
|
||
|
from hub.imports.usage_factory import UsageFactory
|
||
|
from hub.imports.energy_systems_factory import EnergySystemsFactory
|
||
|
|
||
|
|
||
|
class TestSystemsFactory(TestCase):
|
||
|
"""
|
||
|
TestSystemsFactory TestCase
|
||
|
"""
|
||
|
def setUp(self) -> None:
|
||
|
"""
|
||
|
Configure test environment
|
||
|
:return:
|
||
|
"""
|
||
|
self._city = None
|
||
|
self._example_path = (Path(__file__).parent / 'tests_data').resolve()
|
||
|
|
||
|
def _get_citygml(self, file):
|
||
|
file_path = (self._example_path / file).resolve()
|
||
|
self._city = GeometryFactory('citygml', path=file_path).city
|
||
|
self.assertIsNotNone(self._city, 'city is none')
|
||
|
self.assertIsNotNone(self._city.level_of_detail.geometry, 'wrong construction level of detail')
|
||
|
return self._city
|
||
|
|
||
|
def test_montreal_custom_system_factory(self):
|
||
|
"""
|
||
|
Enrich the city with the construction information and verify it
|
||
|
"""
|
||
|
file = 'one_building_in_kelowna.gml'
|
||
|
city = self._get_citygml(file)
|
||
|
for building in city.buildings:
|
||
|
building.energy_systems_archetype_name = 'system 1 gas'
|
||
|
|
||
|
EnergySystemsFactory('montreal_custom', city).enrich()
|
||
|
for building in city.buildings:
|
||
|
print(building.energy_systems)
|
||
|
|
||
|
def test_montreal_custom_system_results(self):
|
||
|
"""
|
||
|
Enrich the city with the construction information and verify it
|
||
|
"""
|
||
|
file = 'one_building_in_kelowna.gml'
|
||
|
city = self._get_citygml(file)
|
||
|
for building in city.buildings:
|
||
|
building.year_of_construction = 1980
|
||
|
ConstructionFactory('nrcan', city).enrich()
|
||
|
UsageFactory('nrcan', city).enrich()
|