summer_course_2024/tests/test_db_factory.py

299 lines
13 KiB
Python
Raw Normal View History

"""
2023-05-10 17:06:51 -04:00
Test db factory
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Peter Yefi peteryefi@gmail.com
"""
import distutils.spawn
import glob
import json
import logging
2023-05-10 17:06:51 -04:00
import os
import subprocess
2023-03-27 13:55:32 -04:00
import unittest
2023-05-10 17:06:51 -04:00
from pathlib import Path
from unittest import TestCase
2023-03-27 13:55:32 -04:00
import sqlalchemy.exc
from sqlalchemy import create_engine
from sqlalchemy.exc import ProgrammingError
2023-03-27 13:55:32 -04:00
import hub.helpers.constants as cte
from hub.exports.energy_building_exports_factory import EnergyBuildingsExportsFactory
from hub.exports.exports_factory import ExportsFactory
2023-07-26 15:03:31 -04:00
from hub.helpers.data.montreal_function_to_hub_function import MontrealFunctionToHubFunction
from hub.imports.construction_factory import ConstructionFactory
from hub.imports.energy_systems_factory import EnergySystemsFactory
from hub.imports.geometry_factory import GeometryFactory
from hub.imports.results_factory import ResultFactory
from hub.imports.usage_factory import UsageFactory
from hub.imports.weather_factory import WeatherFactory
2023-05-17 12:30:11 -04:00
from hub.persistence.db_control import DBControl
from hub.persistence.models import City, Application, CityObject, SimulationResults
2023-01-24 10:51:50 -05:00
from hub.persistence.models import User, UserRoles
from hub.persistence.repository import Repository
2023-03-27 13:55:32 -04:00
2023-05-17 12:30:11 -04:00
class Control:
2023-05-10 17:06:51 -04:00
_skip_test = False
_skip_reason = 'PostgreSQL not properly installed in host machine'
2023-03-27 13:55:32 -04:00
def __init__(self):
2023-05-10 17:06:51 -04:00
"""
2023-05-18 12:29:28 -04:00
Test
setup
:return: None
"""
2023-05-10 17:06:51 -04:00
self._skip_test = False
2023-03-27 13:55:32 -04:00
# Create test database
dotenv_path = Path("{}/.local/etc/hub/.env".format(os.path.expanduser('~'))).resolve()
if not dotenv_path.exists():
self._skip_test = True
self._skip_reason = f'.env file missing at {dotenv_path}'
return
dotenv_path = str(dotenv_path)
2023-07-26 15:03:31 -04:00
repository = Repository(db_name='montreal_retrofit_test', app_env='TEST', dotenv_path=dotenv_path)
2023-05-10 17:06:51 -04:00
engine = create_engine(repository.configuration.connection_string)
2023-03-27 13:55:32 -04:00
try:
# delete test database if it exists
2023-05-10 17:06:51 -04:00
connection = engine.connect()
connection.close()
except ProgrammingError:
logging.info('Database does not exist. Nothing to delete')
2023-05-10 17:06:51 -04:00
except sqlalchemy.exc.OperationalError as operational_error:
self._skip_test = True
self._skip_reason = f'{operational_error}'
return
2023-05-10 17:06:51 -04:00
Application.__table__.create(bind=repository.engine, checkfirst=True)
User.__table__.create(bind=repository.engine, checkfirst=True)
City.__table__.create(bind=repository.engine, checkfirst=True)
CityObject.__table__.create(bind=repository.engine, checkfirst=True)
SimulationResults.__table__.create(bind=repository.engine, checkfirst=True)
2023-07-26 15:03:31 -04:00
city_file = Path('tests_data/test.geojson').resolve()
2023-05-30 17:13:49 -04:00
output_path = Path('tests_outputs/').resolve()
2023-07-26 15:03:31 -04:00
self._city = GeometryFactory('geojson',
city_file,
2023-07-26 15:03:31 -04:00
height_field='citygml_me',
year_of_construction_field='ANNEE_CONS',
aliases_field=['ID_UEV', 'CIVIQUE_DE', 'NOM_RUE'],
function_field='CODE_UTILI',
function_to_hub=MontrealFunctionToHubFunction().dictionary).city
ConstructionFactory('nrcan', self._city).enrich()
UsageFactory('nrcan', self._city).enrich()
WeatherFactory('epw', self._city).enrich()
2023-06-07 12:55:03 -04:00
ExportsFactory('sra', self._city, output_path).export()
sra_file = str((output_path / f'{self._city.name}_sra.xml').resolve())
subprocess.run([self.sra, sra_file], stdout=subprocess.DEVNULL)
ResultFactory('sra', self._city, output_path).enrich()
2023-06-08 11:16:04 -04:00
2023-06-02 15:05:29 -04:00
for building in self._city.buildings:
building.energy_systems_archetype_name = 'system 1 gas pv'
EnergySystemsFactory('montreal_custom', self._city).enrich()
EnergyBuildingsExportsFactory('insel_monthly_energy_balance', self._city, output_path).export()
_insel_files = glob.glob(f'{output_path}/*.insel')
for insel_file in _insel_files:
subprocess.run([self.insel, str(insel_file)], stdout=subprocess.DEVNULL)
ResultFactory('insel_monthly_energy_balance', self._city, output_path).enrich()
2023-05-17 12:30:11 -04:00
self._database = DBControl(
2023-05-10 17:06:51 -04:00
db_name=repository.configuration.db_name,
app_env='TEST',
dotenv_path=dotenv_path)
2023-05-17 12:30:11 -04:00
2023-07-28 08:25:47 -04:00
self._application_uuid = '60b7fc1b-f389-4254-9ffd-22a4cf32c7a3'
self._application_id = 1
self._user_id = 1
self._application_id = self._database.persist_application(
'City_layers',
'City layers test user',
self.application_uuid
)
self._user_id = self._database.create_user('city_layers', self._application_id, 'city_layers', UserRoles.Admin)
2023-05-10 17:06:51 -04:00
self._pickle_path = 'tests_data/pickle_path.bz2'
@property
2023-05-17 12:30:11 -04:00
def database(self):
return self._database
2023-05-10 17:06:51 -04:00
@property
def application_uuid(self):
return self._application_uuid
2023-05-10 17:06:51 -04:00
@property
2023-05-19 13:15:40 -04:00
def application_id(self):
return self._application_id
2023-05-10 17:06:51 -04:00
@property
2023-05-19 13:15:40 -04:00
def user_id(self):
return self._user_id
2023-05-10 17:06:51 -04:00
@property
def skip_test(self):
return self._skip_test
2023-03-27 13:55:32 -04:00
@property
def insel(self):
2023-06-02 10:25:34 -04:00
return distutils.spawn.find_executable('insel')
@property
def sra(self):
2023-06-02 10:25:34 -04:00
return distutils.spawn.find_executable('sra')
@property
def skip_insel_test(self):
return self.insel is None
2023-03-27 13:55:32 -04:00
@property
2023-05-10 17:06:51 -04:00
def skip_reason(self):
return self._skip_reason
2023-03-27 13:55:32 -04:00
@property
def message(self):
return self._skip_reason
2023-05-10 17:06:51 -04:00
@property
def city(self):
return self._city
2023-03-27 13:55:32 -04:00
2023-05-10 17:06:51 -04:00
@property
def pickle_path(self):
return self._pickle_path
2023-03-27 13:55:32 -04:00
2023-05-17 12:30:11 -04:00
control = Control()
class TestDBFactory(TestCase):
"""
TestDBFactory
"""
2023-05-17 12:30:11 -04:00
@unittest.skipIf(control.skip_test, control.skip_reason)
def test_save_city(self):
2023-05-17 12:30:11 -04:00
control.city.name = "Montreal"
2023-05-19 13:15:40 -04:00
city_id = control.database.persist_city(
2023-05-17 12:30:11 -04:00
control.city,
control.pickle_path,
2023-07-26 15:03:31 -04:00
control.city.name,
2023-05-19 13:15:40 -04:00
control.application_id,
control.user_id)
control.database.delete_city(city_id)
2023-05-17 17:10:30 -04:00
os.unlink(control.pickle_path)
2023-05-17 12:30:11 -04:00
@unittest.skipIf(control.skip_test, control.skip_reason)
def test_get_update_city(self):
2023-05-19 13:15:40 -04:00
city_id = control.database.persist_city(control.city,
control.pickle_path,
2023-07-28 08:25:47 -04:00
control.city.name,
control.application_id,
control.user_id)
2023-05-19 13:15:40 -04:00
control.city.name = "Ottawa"
control.database.update_city(city_id, control.city)
2023-05-17 12:30:11 -04:00
cities = control.database.cities_by_user_and_application(
2023-05-19 13:15:40 -04:00
control.user_id,
control.application_id)
for updated_city in cities:
2023-05-19 13:15:40 -04:00
if updated_city.id == city_id:
self.assertEqual(updated_city.name, control.city.name)
break
2023-05-19 13:15:40 -04:00
control.database.delete_city(city_id)
@unittest.skipIf(control.skip_test, control.skip_reason)
@unittest.skipIf(control.skip_insel_test, 'insel is not installed')
def test_save_results(self):
city_id = control.database.persist_city(control.city,
control.pickle_path,
2023-07-28 08:25:47 -04:00
'current status',
control.application_id,
control.user_id)
city_objects_id = []
for building in control.city.buildings:
_building = control.database.building_info(building.name, city_id)
if cte.MONTH not in building.cooling_demand:
print(f'building {building.name} not calculated')
continue
2023-06-02 15:05:29 -04:00
monthly_cooling_peak_load = building.cooling_peak_load[cte.MONTH]
yearly_cooling_peak_load = building.cooling_peak_load[cte.YEAR]
monthly_heating_peak_load = building.heating_peak_load[cte.MONTH]
yearly_heating_peak_load = building.heating_peak_load[cte.YEAR]
2023-08-01 16:41:37 -04:00
monthly_lighting_peak_load = building.lighting_peak_load[cte.MONTH]
yearly_lighting_peak_load = building.lighting_peak_load[cte.YEAR]
monthly_appliances_peak_load = building.appliances_peak_load[cte.MONTH]
yearly_appliances_peak_load = building.appliances_peak_load[cte.YEAR]
monthly_cooling_demand = building.cooling_demand[cte.MONTH][cte.INSEL_MEB]
yearly_cooling_demand = building.cooling_demand[cte.YEAR][cte.INSEL_MEB]
monthly_heating_demand = building.heating_demand[cte.MONTH][cte.INSEL_MEB]
yearly_heating_demand = building.heating_demand[cte.YEAR][cte.INSEL_MEB]
monthly_lighting_electrical_demand = building.lighting_electrical_demand[cte.MONTH][cte.INSEL_MEB]
yearly_lighting_electrical_demand = building.lighting_electrical_demand[cte.YEAR][cte.INSEL_MEB]
monthly_appliances_electrical_demand = building.appliances_electrical_demand[cte.MONTH][cte.INSEL_MEB]
yearly_appliances_electrical_demand = building.appliances_electrical_demand[cte.YEAR][cte.INSEL_MEB]
monthly_domestic_hot_water_heat_demand = building.domestic_hot_water_heat_demand[cte.MONTH][cte.INSEL_MEB]
yearly_domestic_hot_water_heat_demand = building.domestic_hot_water_heat_demand[cte.YEAR][cte.INSEL_MEB]
2023-06-02 15:05:29 -04:00
monthly_heating_consumption = building.heating_consumption[cte.MONTH]
yearly_heating_consumption = building.heating_consumption[cte.YEAR]
monthly_cooling_consumption = building.cooling_consumption[cte.MONTH]
yearly_cooling_consumption = building.cooling_consumption[cte.YEAR]
monthly_domestic_hot_water_consumption = building.domestic_hot_water_consumption[cte.MONTH]
yearly_domestic_hot_water_consumption = building._domestic_hot_water_consumption[cte.YEAR]
2023-07-26 15:03:31 -04:00
monthly_distribution_systems_electrical_consumption = building.distribution_systems_electrical_consumption[
cte.MONTH]
yearly_distribution_systems_electrical_consumption = building.distribution_systems_electrical_consumption[
cte.YEAR]
2023-06-02 15:05:29 -04:00
monthly_on_site_electrical_production = building.onsite_electrical_production[cte.MONTH]
yearly_on_site_electrical_production = building.onsite_electrical_production[cte.YEAR]
results = json.dumps({cte.INSEL_MEB: [
2023-07-26 15:03:31 -04:00
{'monthly_cooling_peak_load': monthly_cooling_peak_load},
{'yearly_cooling_peak_load': yearly_cooling_peak_load},
{'monthly_heating_peak_load': monthly_heating_peak_load},
{'yearly_heating_peak_load': yearly_heating_peak_load},
2023-08-01 16:41:37 -04:00
{'monthly_lighting_peak_load': monthly_lighting_peak_load},
{'yearly_lighting_peak_load': yearly_lighting_peak_load},
{'monthly_appliances_peak_load': monthly_appliances_peak_load},
{'yearly_appliances_peak_load': yearly_appliances_peak_load},
2023-07-26 15:03:31 -04:00
{'monthly_cooling_demand': monthly_cooling_demand.tolist()},
{'yearly_cooling_demand': yearly_cooling_demand.tolist()},
{'monthly_heating_demand': monthly_heating_demand.tolist()},
{'yearly_heating_demand': yearly_heating_demand.tolist()},
{'monthly_lighting_electrical_demand': monthly_lighting_electrical_demand.tolist()},
{'yearly_lighting_electrical_demand': yearly_lighting_electrical_demand.tolist()},
{'monthly_appliances_electrical_demand': monthly_appliances_electrical_demand.tolist()},
{'yearly_appliances_electrical_demand': yearly_appliances_electrical_demand.tolist()},
{'monthly_domestic_hot_water_heat_demand': monthly_domestic_hot_water_heat_demand.tolist()},
{'yearly_domestic_hot_water_heat_demand': yearly_domestic_hot_water_heat_demand.tolist()},
{'monthly_heating_consumption': monthly_heating_consumption},
{'yearly_heating_consumption': yearly_heating_consumption},
{'monthly_cooling_consumption': monthly_cooling_consumption},
{'yearly_cooling_consumption': yearly_cooling_consumption},
{'monthly_domestic_hot_water_consumption': monthly_domestic_hot_water_consumption},
{'yearly_domestic_hot_water_consumption': yearly_domestic_hot_water_consumption},
{'monthly_distribution_systems_electrical_consumption': monthly_distribution_systems_electrical_consumption},
{'yearly_distribution_systems_electrical_consumption': yearly_distribution_systems_electrical_consumption},
{'monthly_on_site_electrical_production': monthly_on_site_electrical_production},
{'yearly_on_site_electrical_production': yearly_on_site_electrical_production}
]})
2023-06-02 10:25:34 -04:00
db_building_id = _building.id
city_objects_id.append(db_building_id)
control.database.add_simulation_results(
cte.INSEL_MEB,
2023-06-02 15:05:29 -04:00
results, city_object_id=db_building_id)
self.assertEqual(1, len(city_objects_id), 'wrong number of results')
self.assertIsNotNone(city_objects_id[0], 'city_object_id is None')
2023-07-26 15:03:31 -04:00
"""
for _id in city_objects_id:
control.database.delete_results_by_name('insel meb', city_object_id=_id)
control.database.delete_city(city_id)
2023-07-26 15:03:31 -04:00
@classmethod
@unittest.skipIf(control.skip_test, control.skip_reason)
def tearDownClass(cls):
control.database.delete_application(control.application_uuid)
control.database.delete_user(control.user_id)
2023-07-28 08:25:47 -04:00
"""