59 lines
2.3 KiB
Python
59 lines
2.3 KiB
Python
"""
|
|
Building test
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2022 Concordia CERC group
|
|
Project Coder Guille Gutierrez Morote Guillermo.GutierrezMorote@concordia.ca
|
|
"""
|
|
from pathlib import Path
|
|
from unittest import TestCase
|
|
from imports.geometry_factory import GeometryFactory
|
|
from imports.usage_factory import UsageFactory
|
|
from imports.schedules_factory import SchedulesFactory
|
|
from imports.construction_factory import ConstructionFactory
|
|
from exports.exports_factory import ExportsFactory
|
|
|
|
|
|
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 test_doe_idf(self):
|
|
city_file = "../unittests/tests_data/C40_Final.gml"
|
|
output_path = Path('../unittests/tests_outputs/').resolve()
|
|
city = GeometryFactory('citygml', city_file).city
|
|
ConstructionFactory('nrel', city).enrich()
|
|
UsageFactory('comnet', city).enrich()
|
|
# UsageFactory('ca', city).enrich()
|
|
# SchedulesFactory('doe_idf', city).enrich()
|
|
ExportsFactory('idf', city, output_path).export()
|
|
|
|
self.assertEqual(10, len(city.buildings))
|
|
for building in city.buildings:
|
|
for internal_zone in building.internal_zones:
|
|
self.assertTrue(len(internal_zone.usage_zones) > 0)
|
|
for usage_zone in internal_zone.usage_zones:
|
|
self.assertIsNot(len(usage_zone.occupancy.occupancy_schedules), 0, 'no occupancy schedules defined')
|
|
for schedule in usage_zone.occupancy.occupancy_schedules:
|
|
self.assertIsNotNone(schedule.type)
|
|
self.assertIsNotNone(schedule.values)
|
|
self.assertIsNotNone(schedule.data_type)
|
|
self.assertIsNotNone(schedule.time_step)
|
|
self.assertIsNotNone(schedule.time_range)
|
|
self.assertIsNotNone(schedule.day_types)
|
|
self.assertIsNot(len(usage_zone.lighting.schedules), 0, 'no lighting schedules defined')
|
|
for schedule in usage_zone.lighting.schedules:
|
|
self.assertIsNotNone(schedule.type)
|
|
self.assertIsNotNone(schedule.values)
|
|
self.assertIsNotNone(schedule.data_type)
|
|
self.assertIsNotNone(schedule.time_step)
|
|
self.assertIsNotNone(schedule.time_range)
|
|
self.assertIsNotNone(schedule.day_types)
|