hub/tests/test_weather_factory.py

55 lines
2.2 KiB
Python
Raw Normal View History

2020-10-30 06:23:29 -04:00
"""
TestWeatherFactory test and validate the city model structure weather parameters
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Pilar Monsalvete pilar_monsalvete@yahoo.es
"""
from pathlib import Path
from unittest import TestCase
from imports.geometry_factory import GeometryFactory
from imports.weather_factory import WeatherFactory
import helpers.constants as cte
2020-10-30 06:23:29 -04:00
class TestWeatherFactory(TestCase):
"""
TestWeatherFactory TestCase
"""
def setUp(self) -> None:
"""
Configure test environment
:return:
"""
self._city_gml = None
self._city_with_weather = None
self._city_name = 'new_york_city'
2021-04-13 15:09:13 -04:00
self._example_path = (Path(__file__).parent.parent / 'data' / 'weather').resolve()
2020-10-30 06:23:29 -04:00
def _get_citygml(self, file_path):
self._city_gml = GeometryFactory('citygml', file_path).city
self.assertIsNotNone(self._city_gml, 'city is none')
2020-10-30 06:23:29 -04:00
return self._city_gml
def test_weather_xls(self):
file_path = (Path(__file__).parent / 'tests_data' / 'iso_52016_1_2017_lod2.gml').resolve()
city_with_weather = self._get_citygml(file_path)
2021-04-13 15:09:13 -04:00
WeatherFactory('xls', city_with_weather, base_path=self._example_path).enrich()
for building in city_with_weather.buildings:
values = building.external_temperature[cte.HOUR][['iso52016']]
self.assertFalse(values.empty, 'wrong value external_temperature')
values = building.global_horizontal[cte.HOUR][['iso52016']]
self.assertFalse(values.empty, 'wrong value global horizontal')
2021-04-13 15:09:13 -04:00
def test_weather_epw(self):
file_path = (Path(__file__).parent / 'tests_data' / 'one_building_in_kelowna.gml').resolve()
city_with_weather = self._get_citygml(file_path)
_file_name = 'CAN_BC_Summerland.717680_CWEC.epw'
print(len(city_with_weather.buildings))
2021-04-13 15:09:13 -04:00
WeatherFactory('epw', city_with_weather, base_path=self._example_path, file_name=_file_name).enrich()
print(len(city_with_weather.buildings))
2021-04-13 15:09:13 -04:00
for building in city_with_weather.buildings:
values = building.external_temperature[cte.HOUR][['epw']]
2021-04-13 15:09:13 -04:00
self.assertFalse(values.empty, 'wrong value external_temperature')
values = building.global_horizontal[cte.HOUR][['epw']]
2021-04-13 15:09:13 -04:00
self.assertFalse(values.empty, 'wrong value global horizontal')