2022-10-20 11:34:22 -04:00
|
|
|
"""
|
|
|
|
TestCityMerge test and validate the merge of several cities into one
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2022 Concordia CERC group
|
|
|
|
Project Coder Guille Gutierrez Guillermo.GutierrezMorote@concordia.ca
|
|
|
|
"""
|
2023-05-29 12:49:27 -04:00
|
|
|
|
2022-10-20 11:34:22 -04:00
|
|
|
from pathlib import Path
|
|
|
|
from unittest import TestCase
|
2023-05-18 10:35:05 -04:00
|
|
|
|
|
|
|
from hub.imports.geometry_factory import GeometryFactory
|
2022-10-20 11:34:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
class TestCityMerge(TestCase):
|
|
|
|
"""
|
|
|
|
Functional TestCityMerge
|
|
|
|
"""
|
|
|
|
def setUp(self) -> None:
|
|
|
|
"""
|
|
|
|
Test setup
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
self._example_path = (Path(__file__).parent / 'tests_data').resolve()
|
2023-03-01 20:36:01 -05:00
|
|
|
self._output_path = (Path(__file__).parent / 'tests_outputs').resolve()
|
|
|
|
self._weather_file = (self._example_path / 'CAN_PQ_Montreal.Intl.AP.716270_CWEC.epw').resolve()
|
2023-05-04 13:45:34 -04:00
|
|
|
self._executable = 'sra'
|
2022-10-20 11:34:22 -04:00
|
|
|
|
|
|
|
def _get_citygml(self, file):
|
|
|
|
file_path = (self._example_path / file).resolve()
|
2022-11-21 13:53:58 -05:00
|
|
|
city = GeometryFactory('citygml', path=file_path).city
|
2022-10-20 11:34:22 -04:00
|
|
|
self.assertIsNotNone(city, 'city is none')
|
|
|
|
return city
|
|
|
|
|
|
|
|
def test_merge(self):
|
2023-05-29 12:49:27 -04:00
|
|
|
self.assertTrue(False, 'This test needs to be reimplemented')
|
2023-03-01 20:36:01 -05:00
|
|
|
|
|
|
|
def test_merge_with_radiation(self):
|
2023-05-29 12:49:27 -04:00
|
|
|
self.assertTrue(False, 'This test needs to be reimplemented')
|