""" 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 from geometry.geometry_factory import GeometryFactory from helpers.idf_helper import IdfHelper class TestIdf(TestCase): """ Test IDF Class """ def setUp(self) -> None: """ Test setup :return: None """ self._city_gml = None self._example_path = (Path(__file__).parent.parent / 'tests_data').resolve() def _get_citygml(self): if self._city_gml is None: file_path = (self._example_path / 'buildings.gml').resolve() self._city_gml = GeometryFactory('citygml', file_path).city self.assertIsNotNone(self._city_gml, 'city is none') return self._city_gml def test_idf_run(self): idd_file_path = (self._example_path / 'energy+.idd').resolve() idf_file_path = (self._example_path / 'minimal.idf').resolve() epw_file_path = (self._example_path / 'montreal.epw').resolve() _idf = IdfHelper(idf_file_path, idd_file_path, epw_file_path, self._example_path) city = self._get_citygml() for building in city.buildings: _idf.add_zone(building.name) for surface in building.surfaces: _idf.add_surface(surface, building.name) _idf.run()